- May 10, 2015
-
-
Felix Fietkau authored
mkits.sh help currently shows dtb file as optional, but generates an invalid its file when this option is unspecified. We're fixing this problem by removing the use of the sed command and just including variables instead. Signed-off-by:
Mathieu Olivari <mathieu@qca.qualcomm.com> SVN-Revision: 45659
-
Felix Fietkau authored
This option has been added in kernel 3.17. It shows-up only when both ARCH_QCOM and CRYPTO are enabled. So we'll disable these two by default to avoid stalling the build when these conditions are met. Signed-off-by:
Mathieu Olivari <mathieu@codeaurora.org> SVN-Revision: 45658
-
Felix Fietkau authored
Most of the time, we want to make sure OpenWrt has been configured and setup before start running make. However, in case of package/symlinks, forcing prereq as a dependency creates multiple issues: *when executed on a clean workspace, it will prompt for user input and open a menuconfig window before executing the feeds command *the only way around that is to provide a .config. However, the "prereq" target would then run a "make defconfig", which will remove all the packages in the .config but from external feeds, as feeds have not been installed yet. The only way to currently work around this, is to generate a fake config by running "make defconfig", then "make package/symlinks", copy the real config (which at this point disregards the previously generated config), and run make defconfig again. Something like this: make defconfig make package/symlinks cp real.config .config make defconfig This change is removing the need for the first defconfig, making the process more logical for OpenWrt users using the package/symlinks target. Signed-off-by:
Mathieu Olivari <mathieu@qca.qualcomm.com> SVN-Revision: 45657
-
Luka Perkov authored
Signed-off-by:
Catrinel Catrinescu <cc@80211.de> SVN-Revision: 45656
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45655
-
- May 09, 2015
-
-
Felix Fietkau authored
Significantly reduces reconnect delay Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45654
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45653
-
Rafał Miłecki authored
Signed-off-by:
Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 45652
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45651
-
- May 08, 2015
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45650
-
Felix Fietkau authored
mt76: include generated mac80211 config file and add an appropriate define for mesh support (fixes #19474) Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45649
-
Luka Perkov authored
Signed-off-by:
Luka Perkov <luka@openwrt.org> SVN-Revision: 45648
-
Luka Perkov authored
Add Support for the Seagate GoflexHome <http://wiki.openwrt.org/toh/seagate/goflexhome > Signed-off-by:
L. D. Pinney <ldpinney@gmail.com> SVN-Revision: 45647
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45646
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45645
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45644
-
Felix Fietkau authored
There are 2 images missing: TLWR2543 TLWR1043V2 which have special properties. v2: set correct DEVICE_PROFILES for all images. v2: migrate TP-LINK TL-WR710N v2 which was committed after v1. v2: split very very long line `TARGET_DEVICES +=` into smaller parts Signed-off-by:
Alexander Couzens <lynxis@fe80.eu> SVN-Revision: 45643
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45642
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45641
-
Felix Fietkau authored
Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45640
-
Felix Fietkau authored
Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45639
-
Felix Fietkau authored
Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45638
-
Felix Fietkau authored
Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45637
-
Felix Fietkau authored
Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45636
-
Felix Fietkau authored
Users will now be provided with the inherent wifi toggle functionality of /etc/rc.button/rfkill Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45635
-
Felix Fietkau authored
Originally pressing a button would trigger a release state and vice-versa, as observed from hotplug.d. Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45634
-
Felix Fietkau authored
Most people report broken ethernet with upstream. Last year, user "franz.flasch" authored a working mach-file. His patch is outdated so I modernized it. Original patch and user commentary on page 1: https://forum.openwrt.org/viewtopic.php?pid=260861#p260861 I have figured out what the critical differences are between the two that caused upstream ethernet to break. 1) Both ath79_init_mac() functions calls must be invocated before any GMAC init 2) must init GMAC0 before GMAC1 That was enough to get upstream to function, but I wanted to enjoy my confidence having tested franz's patch for a week sucessfully, so I put his whole function in, which only features more differences in order of function calls. An expert should consider these changes, which could pose potential bugs/issues: 1) No longer using the flag AR934X_ETH_CFG_SW_PHY_SWAP in the ath79_setup_ar934x_eth_cfg() call. 2) Possible consequence of no longer explicitly setting ethernet duplex/speed. Review: With this patch, my ethernet and wireless works. Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45633
-
Felix Fietkau authored
Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45632
-
Felix Fietkau authored
Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45631
-
Felix Fietkau authored
It is common that the router provider be used rather than product name. One can see this in target/linux/ar71xx/base-files/etc/uci-defaults/01_leds Signed-off-by:
Michael J. Bazzinotti <mbazzinotti@gmail.com> SVN-Revision: 45630
-
Imre Kaloz authored
Signed-off-by:
Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 45629
-
Imre Kaloz authored
Signed-off-by:
Jo-Philipp Wich <jow@openwrt.org> Signed-off-by:
Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 45628
-
Luka Perkov authored
Signed-off-by:
Luka Perkov <luka@openwrt.org> SVN-Revision: 45627
-
Felix Fietkau authored
hand over parameters to user-script e.g. $1=deconfig Signed-off-by:
Leon George <leon@georgemail.de> Signed-off-by:
Christian Mehlis <christian@m3hlis.de> SVN-Revision: 45626
-
Felix Fietkau authored
fixes compile error: (observed w. target arm64, all kernel build opts enabled) error: call to '__open_missing_mode' declared with attribute error: open with O_CREAT in second argument needs 3 arguments Signed-off-by:
Dirk Neukirchen <dirkneukirchen@web.de> SVN-Revision: 45625
-
Felix Fietkau authored
It has been broken since the new ath10k firmware introduced in r44656. Signed-off-by:
Stijn Tintel <stijn@linux-ipv6.be> SVN-Revision: 45624
-
Felix Fietkau authored
ustream-ssl: correct the year in the PKG_VERSION string, as both r45157 and r45441 left the old year 2014 there. For a casual user it may seem that the current code is from April 2014, although a4ca61527236e89eb9efb782fd9bfd04796144e3 is from April 2015. http://nbd.name/gitweb.cgi?p=ustream-ssl.git;a=commit;h=a4ca61527236e89eb9efb782fd9bfd04796144e3 https://dev.openwrt.org/changeset/45441/ https://dev.openwrt.org/changeset/45157/ signed-off-by:
Hannu Nyman <hannu.nyman@iki.fi> SVN-Revision: 45623
-
- May 06, 2015
-
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45621
-
Felix Fietkau authored
Signed-off-by:
Felix Fietkau <nbd@openwrt.org> SVN-Revision: 45619
-
Rafał Miłecki authored
We were calculating wrong offset, NVRAM wasn't found and OpenWrt didn't boot. Fixes: 9019803 ("brcm47xx: backport BCM47XX arch patches (clean NVRAM code, later init)") Signed-off-by:
Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 45618
-