aboutsummaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* build: remove duplicate variable definitionsFelix Fietkau2014-03-211-4/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39981
* build: remove check to nonexistant CONFIG_ENABLE_LOCALE variable and move ↵Felix Fietkau2014-03-214-8/+1
| | | | | | | | DISABLE_NLS to package-defaults.mk Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39980
* build: remove check for nonexistant CONFIG_TAR_VERBOSITY variable and move ↵Felix Fietkau2014-03-212-6/+2
| | | | | | | | TAR_OPTIONS to unpack.mk Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39979
* mac80211: Enable kmod-rt2800-soc package for rt288x targetFelix Fietkau2014-03-211-1/+1
| | | | | | | | | | | Trunk and the latest backport to Attitude Adjustment have the kmod-rt2800-soc package hidden for the ramips_rt288x target. This makes the dependency match the dependency given in the TITLE field. Signed-off-by: Claudio Leite <leitec@staticky.com> SVN-Revision: 39976
* libusb-compat: install libusb-config in host staging dirFlorian Fainelli2014-03-201-0/+1
| | | | | | | | | A bunch of packages such as sispctl look for libusb-config to find it, install libusb-config in staging_dir/*/host/bin which is in the TARGET_PATH. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 39975
* modules: make kmod-pcspkr depend on X86Florian Fainelli2014-03-201-1/+1
| | | | | | | | | The kernel Kconfig dependency lists X86, and we will fail building this module on other platforms such as Malta. Signed-off-by: Florian Fainelli <florian@openwrt.org> SVN-Revision: 39974
* sunxi: init eth0 as lan instead of wan, add a couple boardsZoltan Herpai2014-03-201-2/+4
| | | | | | | Signed-off-by: Alexander Couzens <lynxis@fe80.eu> Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 39973
* sunxi: enable /proc/device-tree - used for board detectionZoltan Herpai2014-03-201-0/+1
| | | | | | | Signed-off-by: Alexander Couzens <lynxis@fe80.eu> Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 39972
* sunxi: various changes - fix mmc, sata, usb (partially) on CubieTruck - fix ↵Zoltan Herpai2014-03-204-5/+64
| | | | | | | | | hstimer DT on A20 Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> Signed-off-by: Zalan Blenessy <zalan.blenessy@gmail.com> SVN-Revision: 39971
* netifd: update to the latest version, fixes ubus handling of proto data itemsFelix Fietkau2014-03-201-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39970
* toolchain: remove accidental leftover debug codeFelix Fietkau2014-03-201-1/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39969
* busybox: fix existing "export -n" in ashFelix Fietkau2014-03-201-2/+2
| | | | | | | | | | | | | | | | | | Minor fix to existing patch which did not correctly implement -n support for the export command in ash. The VEXPORT flag of a variable was set in the first call to setvareq() and then remained set in the subsequent call, because the variable already existed in the environment. Although /lib/functions.sh by default does not export variables (NO_EXPORT=1), this issue was leading to dirty environments. Without this fix: (ash) export A=1; export -n B=2; /bin/ash -c "echo \$A, \$B" 1, 2 With this fix: (ash) export A=1; export -n B=2; /bin/ash -c "echo \$A, \$B" 1, Signed-off-by: Christophe Lermytte <openwrt@lermytte.be> SVN-Revision: 39968
* netifd: update to latest version, fixes an autostart handling with link ↵Felix Fietkau2014-03-201-2/+2
| | | | | | | | detection Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39967
* toolchain: add a symlink for musl softfloat ldso to the path where our gcc ↵Felix Fietkau2014-03-201-0/+4
| | | | | | | | expects it Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39966
* firewall: update to latest version, fixes a musl build errorFelix Fietkau2014-03-201-2/+2
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39965
* iptables: fix issues with the new musl versionFelix Fietkau2014-03-203-40/+22
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39964
* pppd: fix build errors with muslFelix Fietkau2014-03-2014-26/+220
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39963
* musl: update to 1.0.0Felix Fietkau2014-03-207-30/+8
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39962
* uboot-envtools: fix build with muslFelix Fietkau2014-03-201-0/+10
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39961
* odhcpd: fix more segfaults + ubus interactionSteven Barth2014-03-201-2/+2
| | | | SVN-Revision: 39960
* libpolarssl: add missing dependency (#15321)Felix Fietkau2014-03-201-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39959
* odhcpd: fix possible segfaultsSteven Barth2014-03-201-2/+2
| | | | SVN-Revision: 39958
* ath10k: update firmware and allow choice between AP and STA firmwaresFelix Fietkau2014-03-191-1/+23
| | | | | | | | | | | This patch updates ath10k firmware to the latest version, changes the default firmware to be the one optimized for access point operation, and introduces a configuration option to choose the client-optimized firmware instead during build time. Signed-off-by: Matti Laakso <malaakso at elisanet.fi> SVN-Revision: 39957
* netifd: update to latest version, adds support for specifying a config pathFelix Fietkau2014-03-191-2/+2
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39956
* kernel/generic: fix define in 642-bridge_port_isolate.patchFelix Fietkau2014-03-193-3/+3
| | | | | | | | | | Patch 642-bridge_port_isolate.patch needs to be updated for kernels 3.12, 3.13 and 3.14 as the define for BR_ISOLATE_MODE conflicts with BR_LEARNING Signed-off-by: Jonas Eymann <j.eymann@gmx.net> SVN-Revision: 39955
* ubus: update to latest version, blocks unrelated uloop calls on synchronous ↵Felix Fietkau2014-03-191-2/+2
| | | | | | | | requests Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39954
* libubox: update to the latest version, adds some utility macrosFelix Fietkau2014-03-191-2/+2
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39953
* ubox: update to latest git headJohn Crispin2014-03-182-4/+7
| | | | | | | | logread now shows the right time. Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 39951
* ralink: add missing OF nodeJohn Crispin2014-03-187-9/+9
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 39950
* ralink: refresh patchesJohn Crispin2014-03-1879-7410/+14412
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 39949
* switch the am335x-evmsk to the new wlcore bindingsImre Kaloz2014-03-182-27/+13
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39948
* add add new firmware support and additional fixes for wl18xxImre Kaloz2014-03-1821-3/+2211
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39947
* switch to the newer DT bindings for wl1xxxImre Kaloz2014-03-1829-3115/+449
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39946
* procd: update to latest version, fixes a format string bug in processing ↵Felix Fietkau2014-03-181-2/+2
| | | | | | | | init script output (#15169) Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39945
* ltq-vdsl-mei: disable mips16 support (fixes #15284)Felix Fietkau2014-03-181-0/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39944
* sunxi: fix mmc support on sun4iZoltan Herpai2014-03-172-70/+10
| | | | | | Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu> SVN-Revision: 39943
* busybox: fix processing of multiple NTP servers in the config (#15294)Felix Fietkau2014-03-171-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39935
* use newer firmware checkoutImre Kaloz2014-03-171-4/+4
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 39933
* polarssl: update to version 1.3.4 and add openssl compat patchFelix Fietkau2014-03-145-77/+404
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39930
* ustream-ssl: add support for polarssl 1.3Felix Fietkau2014-03-141-2/+2
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39929
* scripts/metadata.pl: fix ignoring missing host dependenciesFelix Fietkau2014-03-131-1/+2
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39917
* scripts/metadata.pl: remove sdk specific config symbol overrideFelix Fietkau2014-03-131-8/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39916
* target/sdk: strip host binaries before packingFelix Fietkau2014-03-131-2/+19
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39915
* target/sdk: leave out some unnecessary directoriesFelix Fietkau2014-03-131-1/+11
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39914
* target/sdk: use .config instead of unconditionally enabling all build dirsFelix Fietkau2014-03-133-5/+22
| | | | | | | | Call make defconfig on every build to catch newly added packages Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39913
* target/sdk: fix parallel build callsFelix Fietkau2014-03-131-0/+5
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39912
* target/sdk: remove obsolete make calls for the ancient package directory formatFelix Fietkau2014-03-131-3/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 39911
* odhcp6c: pass on delegate-flag on to ds-lite interfaceSteven Barth2014-03-133-3/+6
| | | | SVN-Revision: 39910
* netifd: pass on delegate flag from dhcp to 6rdSteven Barth2014-03-133-3/+6
| | | | SVN-Revision: 39909
* 72ca3bfc401a4f1b695dcc86640dddee62716cea contained too many filesJohn Crispin2014-03-133-144/+0
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 39908