summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* gdb: update to 7.5-2012.12-1florian2013-03-221-2/+2
| | | | | | | Signed-off-by: Daniel Golle <dgolle@allnet.de> Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36108 3c298f89-4303-0410-b956-a3cf2f4a3e73
* base-files: sysupgrade fail with eglibcflorian2013-03-222-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | With eglibc, "ldd busybox" give us libcrypt.so.1 => /lib/libcrypt.so.1 (0x774be000) libm.so.6 => /lib/libm.so.6 (0x773e4000) libgcc_s.so.1 => /lib/libgcc_s.so.1 (0x773c0000) libc.so.6 => /lib/libc.so.6 (0x77276000) /lib/ld.so.1 (0x774fe000) Thus /lib/ld.so.1 is not printed by the libs fonction and isn't copied to the 'new' root before pivot root libs() { ldd $* | awk '{print $3}'; } https://dev.openwrt.org/browser/trunk/package/base-files/files/lib/upgrade/common.sh With uclibc the last line of "ldd busybox" is ld-uClibc.so.0 => /lib/ld-uClibc.so.0 (0x77ada000) Don't know for musl! This patch replace https://dev.openwrt.org/changeset/19167, as glibc is gone The other way around is to rework libs() Please apply the fix (mine or another) on trunk and AA Might fix https://dev.openwrt.org/ticket/12273 Signed-off-by: Etienne CHAMPETIER <etienne.champetier@free.fr> Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36107 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add missing CONFIG_BLK_DEV_IDE_AU1XXX config option.hauke2013-03-216-1/+5
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36102 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: REGMAP_SPI should only be selectable when SPI_MASTER is selectedhauke2013-03-214-4/+8
| | | | | | | | | | This was turned from a silent confg option without a text to a normal config option which could be selected without any other option depending on this. This could cause the situation where REGMAP_SPI was selected without SPI_MASTER being selected. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36101 3c298f89-4303-0410-b956-a3cf2f4a3e73
* firewall3: update to git headjow2013-03-211-2/+2
| | | | | | * fixes port remapping rules (#13217) git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36100 3c298f89-4303-0410-b956-a3cf2f4a3e73
* brcm47xx: generate images for some more deviceshauke2013-03-201-3/+3
| | | | | | | These devices should be supported by trunk now. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36099 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add some fixes for kernel 3.9hauke2013-03-207-6/+50
| | | | | | | This patch fixes some compile problems with kernel 3.9 and adds some missing linux 3.9 handling into kernel packages. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36098 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: add some missing config options for kernel 3.9hauke2013-03-201-0/+11
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36097 3c298f89-4303-0410-b956-a3cf2f4a3e73
* netifd: Fix adding IPv6 DNS-servers to resolv.confcyrus2013-03-201-2/+2
| | | | | | In some cases IPv6 DNS-servers were not added correctly. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36095 3c298f89-4303-0410-b956-a3cf2f4a3e73
* odhcp6c: Fix metric for on-link prefix routescyrus2013-03-201-2/+2
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36094 3c298f89-4303-0410-b956-a3cf2f4a3e73
* firewall3: update to git headjow2013-03-191-2/+2
| | | | | | * fixes reload handling of zones and ipsets that are still running but already deleted from the config git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36092 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: make SND_COMPRESS_OFFLOAD symbol visible for selection (#13193)florian2013-03-195-5/+40
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36091 3c298f89-4303-0410-b956-a3cf2f4a3e73
* firewall3: update to git headjow2013-03-191-2/+2
| | | | | | | - support network names in per-zone 'masq_src', 'masq_dest' and 'subnet' options (#13197) - do not allow src_mac option for SNAT rules git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36090 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: fix build errors on supplicant-only buildsnbd2013-03-182-4/+6
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36085 3c298f89-4303-0410-b956-a3cf2f4a3e73
* odhcp6c: fix preference handling, custom client-IDcyrus2013-03-181-2/+2
| | | | | | * thanks to mbidewell for investigating git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36083 3c298f89-4303-0410-b956-a3cf2f4a3e73
* build: make the color of the 'configuration out of sync' warning red to make ↵nbd2013-03-172-2/+9
| | | | | | it harder for users to overlook git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36082 3c298f89-4303-0410-b956-a3cf2f4a3e73
* hostapd: initial prototype of an ubus bindingnbd2013-03-175-3/+694
| | | | | | | Supports listing, removing and banning clients, and hooking into probe/assoc/auth requests via object subscribe. git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36081 3c298f89-4303-0410-b956-a3cf2f4a3e73
* uml: remove 3.6 kernel patchesflorian2013-03-171-14/+0
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36080 3c298f89-4303-0410-b956-a3cf2f4a3e73
* uml: remove 3.3. kernel patchesflorian2013-03-172-24/+0
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36079 3c298f89-4303-0410-b956-a3cf2f4a3e73
* uml: switch to 3.8 kernelflorian2013-03-171-1/+1
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36078 3c298f89-4303-0410-b956-a3cf2f4a3e73
* uml: add support for 3.8 kernelflorian2013-03-171-0/+213
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36077 3c298f89-4303-0410-b956-a3cf2f4a3e73
* uml: remove 3.2 patchesflorian2013-03-171-14/+0
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36076 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ep93xx: switch to 3.8 kernelflorian2013-03-171-1/+1
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36075 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: refresh 3.9 patchesflorian2013-03-179-77/+17
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36074 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ep93xx: add support for 3.8 kernelflorian2013-03-174-0/+1521
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36073 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: enable SND_COMPRESS_OFFLOAD for kernels >= 3.3florian2013-03-171-1/+10
| | | | | | | | Most sound SoC driver enable it and rely it on to properly work. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36072 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ep93xx: account for sound soc directory rename in 3.7florian2013-03-171-3/+8
| | | | | | | | sound/soc/ep93xx -> sound/soc/cirrus Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36071 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: set regmap-core module licenseflorian2013-03-175-0/+80
| | | | | | | | | | | | | | | | | | | | Fixes the following issues: [ 7.660000] regmap_core: module license 'unspecified' taints kernel [ 7.690000] Disabling lock debugging due to kernel [ 7.700000] regmap_core: Unknown symbol lzo1x_decompress_safe (err 0 [ 7.710000] regmap_core: Unknown symbol lzo1x_1_compress (err 0 [ 7.720000] regmap_core: Unknown symbol devres_add (err 0 [ 7.730000] regmap_core: Unknown symbol debugfs_create_bool (err 0 [ 7.750000] regmap_core: Unknown symbol devres_alloc (err 0 [ 7.760000] regmap_core: Unknown symbol debugfs_remove_recursive (err 0 [ 7.770000] regmap_core: Unknown symbol debugfs_create_file (err 0 [ 7.780000] regmap_core: Unknown symbol devres_free (err 0 [ 7.800000] regmap_core: Unknown symbol devres_find (err 0 [ 7.810000] regmap_core: Unknown symbol debugfs_create_dir (err 0) Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36070 3c298f89-4303-0410-b956-a3cf2f4a3e73
* kernel: load regmap modules after kmod-lib-lzoflorian2013-03-171-1/+1
| | | | | | | | | Otherwise regmap-core will not be able to lookup the lzo exported symbols. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36069 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ubus: update to latest version, fixes a bug in notify return code handlingnbd2013-03-171-3/+3
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36068 3c298f89-4303-0410-b956-a3cf2f4a3e73
* au1000: remove support for 3.3. kernelflorian2013-03-174-174/+0
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36067 3c298f89-4303-0410-b956-a3cf2f4a3e73
* au1000: switch to 3.6 kernelflorian2013-03-171-1/+1
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36066 3c298f89-4303-0410-b956-a3cf2f4a3e73
* au1000: keep the MTX-1 watchdog pin low during bootflorian2013-03-171-0/+12
| | | | | | | | | Do this until the watchdog driver is loaded and the user-space watchdog daemon can start pinging the watchdog. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36065 3c298f89-4303-0410-b956-a3cf2f4a3e73
* ep93xx: remove 3.3 kernel supportflorian2013-03-174-1496/+0
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36064 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: use devm_request_and_ioremap in mcs814x-rng driverflorian2013-03-171-8/+1
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36063 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: use devm_request_and_ioremap helper for nuport_mac driverflorian2013-03-171-4/+2
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36062 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: remove PCI codeflorian2013-03-176-484/+1
| | | | | | | | | None of the boards we support are using it nor have it wired out of the SoC, just remove it. Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36061 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: implement MULTI_IRQ_HANDLERflorian2013-03-164-25/+24
| | | | | | | | Allows us to get rid of the IRQ entry point assembly Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36060 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mcs814x: use the standard device tree binding to represent a PHY nodeflorian2013-03-164-3/+38
| | | | | | Signed-off-by: Florian Fainelli <florian@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36059 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: merge a few minstrel_ht performance improvementsnbd2013-03-161-10/+43
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36056 3c298f89-4303-0410-b956-a3cf2f4a3e73
* busybox: fix disabling /sbin/init and logread if procd is used as initnbd2013-03-161-2/+1
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36054 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mac80211: merge a fix for a race condition on station removalnbd2013-03-151-0/+32
| | | | git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36053 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mpc85xx: add profile and build image for the TL-WDR4900 v1 boardjuhosg2013-03-152-3/+63
| | | | | | | | | Now that the ethernet switch is working, create firmware images to make impatient users happy. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36051 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: start AR8327 switch from the probe routinejuhosg2013-03-151-1/+19
| | | | | | | | | | | | The AR8327 switch gets its configuration from platform data or from the device-tree. This allows to start it from the probe routine. Doing so makes it usable with ethernet drivers which only connects to the PHY device when the ethernet interface is opened. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36050 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: add ar8xxx_start helperjuhosg2013-03-151-11/+23
| | | | | | | | | Move switch starting code into a separate function. This makes it usable from other places. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36049 3c298f89-4303-0410-b956-a3cf2f4a3e73
* mpc85xx: add AR8327 initvals to the TL-WDR4900 devicetreejuhosg2013-03-151-2/+12
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36048 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: add OF configuration support for AR8327juhosg2013-03-151-1/+52
| | | | | | Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36047 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: separate platform_data based AR8327 codejuhosg2013-03-151-5/+16
| | | | | | | | | | Move platform_data specific configuration code into a separate routine. Do it in preparation for the upcoming OF support. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36046 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: don't use platform_data in ar8327_init_portjuhosg2013-03-151-5/+16
| | | | | | | | | Fetch the PORT_STATUS values in ar8327_hw_init and store those in a private data stucture for later use. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36045 3c298f89-4303-0410-b956-a3cf2f4a3e73
* generic: ar8216: move the ar8327_get_port_init_status functionjuhosg2013-03-151-28/+28
| | | | | | | | It will be used in ar8327_probe routine. Signed-off-by: Gabor Juhos <juhosg@openwrt.org> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@36044 3c298f89-4303-0410-b956-a3cf2f4a3e73