Rafał Miłecki
184c0af4e2
brcm47xx: image: add helpers for defining devices
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45180
2015-03-31 11:26:45 +00:00
Jonas Gorski
a709beb4ae
brcm63xx: fix zyxel kernel name
...
Accidentally left over development artifact.
Reported-by: John Crispin <blogic@openwrt.org>
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45179
2015-03-31 09:54:15 +00:00
Rafał Miłecki
6c1852cb26
brcm47xx: image: use standard KERNEL_IMAGE to avoid warnings
...
KERNEL_IMAGE is used as target rule so reusing the same name causes:
Makefile:326: warning: overriding recipe for target `bin/brcm47xx/vmlinux.lzma'
Makefile:326: warning: ignoring old recipe for target `bin/brcm47xx/vmlinux.lzma'
Makefile:326: warning: overriding recipe for target `build_dir/target-mipsel_74kc+dsp2_uClibc-0.9.33.2/linux-brcm47xx_mips74k/vmlinux.lzma'
Makefile:326: warning: ignoring old recipe for target `build_dir/target-mipsel_74kc+dsp2_uClibc-0.9.33.2/linux-brcm47xx_mips74k/vmlinux.lzma'
Unfortunately this will cause copying vmlinux.lzma over and over like:
cp vmlinux.lzma FOO-kernel.bin
which is redundant on brcm47xx where we never modify kernel image.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45178
2015-03-31 08:56:08 +00:00
Gabor Juhos
cc9600a1eb
ar71xx/mikrotik: disable atnoher two non MikroTik boards
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 45177
2015-03-31 08:30:56 +00:00
Gabor Juhos
04ba95f6d3
ar71xx/mikrotik: disable non MikroTik boards
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 45176
2015-03-31 07:56:25 +00:00
Gabor Juhos
26800ef074
ar71xx/mikrotik: use correct symbol to disable overlayfs
...
The Kconfig symbol has been changed in 3.18.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 45175
2015-03-31 07:56:22 +00:00
Rafał Miłecki
8ec31f25e3
brcm47xx: fix checking cross-vendors firmware images
...
This change won't allow installing e.g. Netgear firmware on Linksys
device.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45174
2015-03-31 07:26:30 +00:00
Rafał Miłecki
463a449f84
brcm47xx: update Linksys firmwares (add new E2500 versions)
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45173
2015-03-31 07:26:22 +00:00
Rafał Miłecki
a445846305
brcm47xx: display all errors (not just the 1st one) when checking image
...
This way people forcing upgrade will know what may go wrong.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45172
2015-03-31 06:05:35 +00:00
Rafał Miłecki
44dfe17576
brcm47xx: recognize more device specific firmwares
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45171
2015-03-31 05:39:33 +00:00
Rafał Miłecki
b34040f990
brcm47xx: compare provided firmware magic with device magic
...
This makes sysupgrade reject firmware images for different devices.
Right now only support for 2 sample devices is implemented.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45170
2015-03-30 22:06:11 +00:00
Jonas Gorski
a54b8303d2
brcm63xx: don't build non-dtb kernels anymore
...
Now that all supported boards have an dts there is no need for a
dtb free kernel anymore.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45169
2015-03-30 20:21:24 +00:00
Jonas Gorski
0f08442ded
brcm63xx: move DSL-275XB to DT
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45168
2015-03-30 20:21:15 +00:00
Jonas Gorski
f77b446051
brcm63xx: move bcm6318 reference boards to DT
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45167
2015-03-30 20:21:07 +00:00
Jonas Gorski
f644c1581a
brcm63xx: move VG50 to DT
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45166
2015-03-30 20:21:01 +00:00
Jonas Gorski
f973580488
brcm63xx: move V2110 to DT
...
Also readd image generation which was accidentally dropped in r43364.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45165
2015-03-30 20:20:49 +00:00
Jonas Gorski
d8ba40cfcd
brcm63xx: use relocate to move the kernel back to start of ram
...
Appearently the kernel only uses kernel above it, so moving it to an
higher address causes a lot of unavailable memory (#19327 ).
Also move the on-flash kernel to 0x80a0000, as newer CFEs don't like
uncompressing there (net-booting an ELF kernel is fine, though).
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45164
2015-03-30 20:20:15 +00:00
Jonas Gorski
8353a3bd45
generic: relocate: make the cacheline size configurable
...
Different targets have different cache line sizes.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45163
2015-03-30 20:20:10 +00:00
Jonas Gorski
703c41cf01
ramips: move relocating loader to common location
...
Allow other targets to use it, too.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 45162
2015-03-30 20:20:08 +00:00
Gabor Juhos
3129f0c6f2
ar71xx/mikrotik: re-enable 4KiB flash sector erase
...
The setting has been lost during the transition to 3.18.
The CONFIG_M25PXX_PREFER_SMALL_SECTOR_ERASE option is not
available anymore, so use CONFIG_MTD_SPI_NOR_USE_4K_SECTORS
instead.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 45161
2015-03-30 19:57:52 +00:00
Gabor Juhos
62a8665fea
ar71xx: re-enable AR8216_PHY_LEDS
...
The setting has been lost during the transition to 3.18.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 45160
2015-03-30 18:12:54 +00:00
Gabor Juhos
18f6a34113
ar71xx: sync kernel config
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 45159
2015-03-30 18:12:50 +00:00
John Crispin
2b925161d8
xburst: add missing symbol
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45155
2015-03-30 12:47:51 +00:00
Steven Barth
7e7f329ccf
kernel/generic: (try) fixing MAP-E patch broken in 4.0
...
Now it at least compiles, otherwise untested.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 45145
2015-03-30 08:48:51 +00:00
Rafał Miłecki
1751676c8b
brcm47xx: convert Netgear WNDR3700 V3 to the new image building system
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45144
2015-03-29 19:53:11 +00:00
Rafał Miłecki
8e4b74b9fe
brcm47xx: convert Linksys E1200 V2 to the new image building system
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 45143
2015-03-29 18:15:38 +00:00
John Crispin
23d37c1208
ar71xx: fix model string detection on NETGEAR WNDR3700/3800/WNDRMAC
...
There were a few issues with the existing code to detect the model string:
* Always using the string starting with byte 56 would cut off the W of WNDR when
the ID starts with 29763654+16+64 instead of 29763654+16+128
* The string contained garbage after the zero byte instead of cutting it off
after the zero (which wasn't always visible using busybox tools, but could
confuse other scripts)
Tested on a WNDR3700v1 and a WNDR3700v2 using the new 29763654+16+64 ID in the
ART. Furthermore, tested against ART dumps of a WNDR3700v2 using the old
$'\xff...' value and a WNDR3800.
The [ -z "$model" ] check was dropped as there is no way to actually hit this
unless no ART partition is found at all.
The awk command was carefully crafted to work both with gawk and the (horribly
broken) busybox awk.
Fixes #18992 .
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 45140
2015-03-29 12:58:01 +00:00
Imre Kaloz
ebf1e2461a
x86_64: add description, maintainership
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 45138
2015-03-29 12:17:39 +00:00
Felix Fietkau
661f05262b
arm64: remove bogus CONFIG_WIRELESS/CONFIG_WLAN overrides
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45132
2015-03-29 07:36:17 +00:00
Luka Perkov
1e2f88b17b
imx: add initial version of 3.18 support
...
This is build tested only.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 45125
2015-03-29 05:48:56 +00:00
Luka Perkov
375337266d
kernel: add few missing symbols
...
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 45118
2015-03-29 04:50:16 +00:00
Luka Perkov
d949d88ef6
kernel: add symbol
...
Several targets are not using EMAC_ROCKCHIP so define it in generic config.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 45117
2015-03-29 04:43:59 +00:00
Felix Fietkau
e731ea23a8
x86: add myself as maintainer
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45116
2015-03-29 04:32:15 +00:00
Felix Fietkau
196fb76a4c
x86: make x86_64 a subtarget instead of a standalone target
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45115
2015-03-29 04:32:01 +00:00
Felix Fietkau
09aad60610
x86: remove bogus bzImage copy that breaks initramfs+no-initramfs builds
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45114
2015-03-29 04:31:35 +00:00
Felix Fietkau
795e7cf60d
kernel: fix linux/spi/spidev.h portability issues with musl
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45105
2015-03-29 04:28:24 +00:00
Felix Fietkau
9444bc1ee2
kernel: clean up fq_codel default patch
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45104
2015-03-29 04:28:02 +00:00
Florian Fainelli
85b0d25861
adm8668: switch to 3.18
...
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 45095
2015-03-28 18:18:50 +00:00
Florian Fainelli
f51f3ee9bc
adm8668: add 3.18 support
...
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 45094
2015-03-28 18:18:38 +00:00
Florian Fainelli
26cf81b94b
kernel: refresh 3.18 patches
...
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 45093
2015-03-28 18:17:46 +00:00
Felix Fietkau
0b13d69bba
arm64: update to linux 3.18
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45092
2015-03-28 13:38:52 +00:00
Felix Fietkau
693e5aae41
brcm63xx: remove linux 3.14 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45089
2015-03-28 13:21:09 +00:00
Felix Fietkau
130acd0f4c
mxs: remove linux 3.14 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45088
2015-03-28 13:21:04 +00:00
Felix Fietkau
b63aa281ee
rb532: remove linux 3.14 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45087
2015-03-28 13:20:58 +00:00
Felix Fietkau
56c580f5f4
uml: remove linux 3.14 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45086
2015-03-28 13:20:52 +00:00
Felix Fietkau
7427007193
x86: remove the olpc subtarget, it has been unmaintained for a long time
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45083
2015-03-28 11:37:08 +00:00
Felix Fietkau
518d2b90e6
iop32x: moved to targets feed
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45082
2015-03-28 10:44:55 +00:00
Felix Fietkau
22b38f145d
cobalt: moved to targets feed
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45081
2015-03-28 10:44:49 +00:00
Felix Fietkau
04182658ef
sibyte: moved to targets feed
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45080
2015-03-28 10:44:44 +00:00
Felix Fietkau
e38b78926a
sparc: moved to targets feed
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45079
2015-03-28 10:44:37 +00:00
Felix Fietkau
40c5bee0cd
cns21xx: moved to targets feed
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45078
2015-03-28 10:44:31 +00:00
Felix Fietkau
65c567da13
rb532: switch to 3.18
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45073
2015-03-27 21:22:22 +00:00
Felix Fietkau
2daa34da02
rb532: align partitions to 128KB
...
because block2mtd wants "erasesize must be a divisor of device size" since 3.15
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45072
2015-03-27 21:22:17 +00:00
Felix Fietkau
c2d1ad30e8
rb532: add 3.18 support
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45071
2015-03-27 21:22:10 +00:00
John Crispin
85bf288428
lantiq: remove arphaned folder
...
the new buildbot was picking this up as a valid target.
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45068
2015-03-27 19:47:22 +00:00
John Crispin
ddb5ab2acf
ralink: mt7621 add ECHI OCHI XCHI support
...
Lets hope that this time it won't break the other ralink targets.
Signed-off-by: wengbj <fl.service@t-firefly.com>
SVN-Revision: 45067
2015-03-27 19:07:29 +00:00
Felix Fietkau
c6a29d2528
gemini: fix usb driver compilation on 3.18
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45065
2015-03-27 16:03:16 +00:00
Zoltan Herpai
19db04e699
mxs: update dtb path in image Makefile
...
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 45056
2015-03-27 02:35:11 +00:00
Felix Fietkau
f76a85515a
ar71xx: add missing id for WNR2000v3 image ( fixes #18959 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45054
2015-03-27 00:35:34 +00:00
Zoltan Herpai
a077e4af96
mxs: bump to 3.18
...
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 45053
2015-03-26 23:35:50 +00:00
Zoltan Herpai
01748fbce2
mxs: add sdcard image builder
...
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 45052
2015-03-26 23:34:43 +00:00
Zoltan Herpai
39370cbe25
mxs: enable uboot-mxs-duckbill build for duckbill profile
...
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 45044
2015-03-26 23:04:27 +00:00
Luka Perkov
3012319505
generic: drop old kirkwood mach types
...
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 45043
2015-03-26 22:48:31 +00:00
Zoltan Herpai
1f26498751
mxs: add 3.18 support
...
Signed-off-by: Zoltan HERPAI <wigyori@uid0.hu>
SVN-Revision: 45041
2015-03-26 22:18:47 +00:00
Felix Fietkau
65708f749a
gemini: make dd commands more portable
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45039
2015-03-26 20:37:19 +00:00
Felix Fietkau
6cda886f60
gemini: switch mantainer to myself
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45038
2015-03-26 20:37:09 +00:00
Felix Fietkau
17532417c7
gemini: nuke 3.10 support
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45037
2015-03-26 20:36:59 +00:00
Felix Fietkau
b953a14036
gemini: remove broken flag
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45036
2015-03-26 20:36:49 +00:00
Felix Fietkau
dc622768a7
gemini: switch to 3.18
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45035
2015-03-26 20:36:40 +00:00
Felix Fietkau
44b3e3af17
gemini: don't build jffs2 image for Raidsonic board
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45034
2015-03-26 20:36:35 +00:00
Felix Fietkau
a304f3d2b6
gemini: add 3.18 support
...
Signed-off-by: Roman Yeryomin <roman@advem.lv>
SVN-Revision: 45033
2015-03-26 20:36:30 +00:00
Lars-Peter Clausen
b18f5eb44a
xburst: Update to 3.18
...
Update the xburst target to kernel version 3.18 and also remove the broken 3.10 support.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
SVN-Revision: 45031
2015-03-26 19:46:01 +00:00
Felix Fietkau
c25bf32f8d
ar71xx: fix image size checks for WNDR3700
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45030
2015-03-26 18:50:44 +00:00
John Crispin
40d25d3eb5
ralink: drop xhci patch, it break !mt7621 builds
...
will re-add it tomorrow after fixing it
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45028
2015-03-26 16:24:19 +00:00
John Crispin
2cedb63d84
ralink: the xhci patch broke ehci Signed-off-by: John Crispin <blogic@openwrt.org>
...
SVN-Revision: 45027
2015-03-26 14:49:26 +00:00
Imre Kaloz
f6eff33b8d
mvebu: fixup usb3 support on the a38x
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 45026
2015-03-26 14:32:45 +00:00
Imre Kaloz
4bac1253c1
generic/4.0: upgrade to 4.0-rc5
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 45025
2015-03-26 14:06:42 +00:00
Imre Kaloz
23b880b373
mvebu: add a coherency fix which didn't make it to -stable, yet
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 45024
2015-03-26 13:52:21 +00:00
John Crispin
21e0f98903
ralink: add default pinctrl node for mt7621 eval kit
...
fixes #19213
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45022
2015-03-26 12:23:02 +00:00
John Crispin
0a9e38bb21
ralink: mt7621 add ECHI OCHI XCHI support
...
The usb stroage not working since updated 3.18. Porting from MTK's source code.
Signed-off-by: wengbj <fl.service@t-firefly.com>
SVN-Revision: 45021
2015-03-26 10:59:51 +00:00
John Crispin
024e0c1835
ralink: add FireWRT power button
...
Signed-off-by: Jay Weng <fl.service@t-firefly.com>
SVN-Revision: 45019
2015-03-26 10:59:36 +00:00
John Crispin
10aa09b731
ralink: MT7621 add i2c controller driver
...
ralink i2c driver is not working on MT7621 platform. Porting a new drivers from MTK's source code.
Last time i got some mess . This is new version.
Signed-off-by: Jay Weng <fl.service@t-firefly.com>
SVN-Revision: 45018
2015-03-26 10:59:31 +00:00
John Crispin
ad91262a94
kernel: add missing symbol
...
Signed-off-by: John Szakmeister <john@szakmeister.net>
SVN-Revision: 45017
2015-03-26 10:59:24 +00:00
John Crispin
67c83a6595
x86: add missing symbol to xen_domu
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45016
2015-03-26 10:59:10 +00:00
John Crispin
2d994f2fdc
cobalt: enable bridge
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45014
2015-03-26 10:58:59 +00:00
John Crispin
c67144cc05
kernel: extend seccomp with a LOG action
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 45007
2015-03-26 10:58:03 +00:00
Felix Fietkau
414e8ba634
bcm53xx: use the correct kernel image
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 45003
2015-03-26 10:42:36 +00:00
Imre Kaloz
af69bf56b6
drop 3.19 support
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 45002
2015-03-26 09:42:59 +00:00
Felix Fietkau
34b51b6f6f
ar71xx/image: move wdr3500/wdr3600/wdr4300 to new building code
...
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
SVN-Revision: 45000
2015-03-25 17:58:14 +00:00
Felix Fietkau
8d2d62ca95
ar71xx/image: add tplink device template for new building code
...
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
SVN-Revision: 44999
2015-03-25 17:58:10 +00:00
Felix Fietkau
41785176ec
ar71xx/image: add Build/mktplinkfw as buildstep for new build code
...
Use `mktplinkfw sysupgrade` or `mktplinkfw factory` or
`mktplinkfw image`
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
SVN-Revision: 44998
2015-03-25 17:58:05 +00:00
Felix Fietkau
48c69e3022
bcm53xx: convert to new image building code
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44996
2015-03-25 17:57:44 +00:00
Jonas Gorski
8ffc831bef
brcm63xx: use a lookup for bcmcia's ready gpio
...
Should fix pcmcia on BCM6348 and BCM6358 after switching to DT-probed
gpio controllers.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44995
2015-03-25 15:37:38 +00:00
Jonas Gorski
1e07f8c7ff
brcm63xx: fix bcm96328avng board name
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44994
2015-03-25 15:36:26 +00:00
Jonas Gorski
4dc169f9a2
brcm63xx: fix bt v2500v dts based detection
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44993
2015-03-25 15:36:15 +00:00
Jonas Gorski
10cdfd04e6
brcm63xx: move RTA770(B)W to dts
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44992
2015-03-25 15:36:12 +00:00
Jonas Gorski
0e4c1ba284
brcm63xx: move MAGIC to dts
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44991
2015-03-25 15:36:05 +00:00
Jonas Gorski
582dfc52f5
brcm63xx: move CPVA502+ to dts
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44990
2015-03-25 15:35:57 +00:00
Jonas Gorski
46b4d4d1d5
brcm63xx: move dg834g v4 to dts
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44989
2015-03-25 15:35:43 +00:00
Jonas Gorski
30a579c674
brcm63xx: move dsl-2640u to dts
...
Also build image again(?).
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44988
2015-03-25 15:35:37 +00:00
Jonas Gorski
16ea19053a
brcm63xx: move bcm963268bu_p300 to dts
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44987
2015-03-25 15:35:24 +00:00
Jonas Gorski
ad218d3033
brcm63xx: fix compilation on 3.14
...
Fixes the following issue:
drivers/gpio/gpio-bcm63xx.c: In function 'bcm63xx_gpio_probe':
drivers/gpio/gpio-bcm63xx.c:80:4: error: implicit declaration of function 'devm_kasprintf' [-Werror=implicit-function-declaration]
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44986
2015-03-25 15:35:15 +00:00
Jonas Gorski
2d3371cd0f
brcm63xx: Add BT Home Hub 2A support.
...
Support for the BT HomeHub 2.0 Type A.
This router was manufactured by Thomson, and it's BCM6358 based.
The leds are controled by two chained HC594, all working ok. The BCM5325
switch has the RESET# pin wired to the GPIO15, but currently there is no
way to tell the b53 driver how to get this gpio number in brcm63xx,
therefore swconfig won't use it when performing a switch reset.
The patch was tested with several firmwares, and all except unsupported
stuff (i.e xDSL) works pretty well.
Tested-by: Tahir <tahir00ali@gmail.com>
Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com>
SVN-Revision: 44985
2015-03-25 15:35:12 +00:00
Jonas Gorski
065d6e9047
brcm63xx: move kernel load address to 8MiB
...
Fixes boot when uncompressed kernel is > 4 MiB (#19251 ).
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44984
2015-03-25 15:34:59 +00:00
Jonas Gorski
ee0140a678
brcm63xx: hcsimage: respect load address
...
Respect the vmlinux load address when generating images.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44983
2015-03-25 15:34:45 +00:00
Jonas Gorski
d84fafb9f3
brcm63xx: add Livebox 1 firmware image generation
...
Currently there isn't images ready for flashing liveboxes boards. This
patch adds a script and the code to call it in the bcm63xx images
builder makefile to generate the livebox 1 firmware.
I removed some lines to avoid generating unneded files in the bin/ dir
for this board. And added code to generate a squashed rootfs aligned to
64 kB since the current one in the /bin dir is 128 kB aligned and
doesn't work. Still no sysupgrade support for this board. Upgrading from
within openwrt can be done writing with mtd the kernel, and then the 64k
aligned rootfs.
Regards
Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com>
[jogo: use sed instead of a separate shell script for the boot script, make it
respect the load address]
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44982
2015-03-25 15:34:40 +00:00
Jonas Gorski
77e3d442b0
brcm63xx: add a dummy image recipe for boards missing proper images
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44981
2015-03-25 15:34:26 +00:00
Jonas Gorski
02d68c2b57
brcm63xx: drop non-dtb image recipe
...
All images generated contain dtbs, so it is now unused.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44980
2015-03-25 15:34:23 +00:00
Felix Fietkau
fafa3f57e3
kernel: merge upstream bgmac driver improvements
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44978
2015-03-25 14:30:46 +00:00
Felix Fietkau
68ca1f285c
bcm53xx: enable the full-line-of-zero optimization in the cache controller
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44977
2015-03-25 14:30:40 +00:00
Gabor Juhos
621979b49f
kernel: yaffs: use new_sync_{read,write} for 3.18+
...
Using the do_sync_{read,write} functions in conjunction
with the generic_file_{read,write}_iter causes a kernel
panic like this:
root@OpenWrt:/# mount -t yaffs /dev/mtdblock5 /mnt
[ 2884.110000] yaffs: dev is 32505861 name is "mtdblock5" rw
[ 2884.120000] yaffs: passed flags ""
root@OpenWrt:/# hexdump -vC -n 64 /mnt/kernel
[ 2902.700000] CPU 0 Unable to handle kernel paging request at virtual \
address 00000000, epc == 00000000, ra == 80129414
[ 2902.710000] Oops[#1 ]:
[ 2902.710000] CPU: 0 PID: 1030 Comm: hexdump Not tainted 3.18.9 #2
[ 2902.710000] task: 878e7a20 ti: 868c6000 task.ti: 868c6000
[ 2902.710000] $ 0 : 00000000 fffffff8 00000000 00000000
[ 2902.710000] $ 4 : 868c7e70 868c7ea8 00000001 868c7f08
[ 2902.710000] $ 8 : 00000038 80064f18 80072280 00000000
[ 2902.710000] $12 : 7fa152b8 7709e3a0 00c42008 7709e3a0
[ 2902.710000] $16 : 868c7f08 86a46000 00000010 878e7a20
[ 2902.710000] $20 : 7705c4b0 00000010 00000000 00000000
[ 2902.710000] $24 : 770960bc 7707dd78
[ 2902.710000] $28 : 868c6000 868c7e58 7f8e7030 80129414
[ 2902.710000] Hi : 00000000
[ 2902.710000] Lo : ffffffff
[ 2902.710000] epc : 00000000 (null)
[ 2902.710000] Not tainted
[ 2902.710000] ra : 80129414 do_sync_read+0x7c/0xb4
[ 2902.710000] Status: 1900dc03 KERNEL EXL IE
[ 2902.710000] Cause : 00800008
[ 2902.710000] BadVA : 00000000
[ 2902.710000] PrId : 00019750 (MIPS 74Kc)
Change the yaffs code to use the new_sync_{read,write} functions
instead.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 44974
2015-03-25 08:59:12 +00:00
Rafał Miłecki
8fdd0fb07c
kernel: backport rest of bcma patches
...
This backports
bcma: allow disabling (not building) PCI driver
Revert "bcma: Kconfig: Let it depend on PCI"
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44970
2015-03-24 10:39:10 +00:00
Rafał Miłecki
a7724918c9
kernel: mac80211: backport bcma patch renaming IRQ control function
...
This backports upstream commit 702131e2a393b45174be326f1dbe20b658b4f157
bcma: move PCI IRQ control function to host specific code
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44969
2015-03-24 10:38:59 +00:00
Rafał Miłecki
a4d7571367
mark 3.10 targets as broken
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44968
2015-03-24 10:38:50 +00:00
Jo-Philipp Wich
02e2548b84
x86: use PARTUUID instead explicitly specifying the device by default
...
This changes the x86 image generation to match x86_64, using the PARTUUID for
the rootfs instead of explicitly configuring the device.
It unbreaks KVM with VirtIO, which uses /dev/vda2 instead of /dev/sda2.
Tested in QEMU/KVM with VirtIO, VirtualBox and VMware.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 44966
2015-03-24 10:08:12 +00:00
Felix Fietkau
5d9eeab64a
build: remove obsolete references to cris and avr32
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44965
2015-03-24 10:07:40 +00:00
Jo-Philipp Wich
d830d34b00
x86_64: fix PARTUUID format with leading zeros
...
Otherwise the root device won't be found in 1/16 of the generated images
(whenever the signature starts with a zero digit).
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 44959
2015-03-24 10:06:40 +00:00
Felix Fietkau
2450985de9
avr32: remove target
...
It depends on obsolete compilers and only works on one device (an
evaluation board).
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44956
2015-03-24 10:06:14 +00:00
Rafał Miłecki
3b6c70b7fc
kernel: update bcma with most patches from wireless-drivers-next
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44955
2015-03-24 07:15:31 +00:00
Rafał Miłecki
eb90a6d7d8
kernel: backport fixed_phy_register EXPORT fix from 3.19
...
This fixes
ERROR: "fixed_phy_register" [drivers/net/ethernet/broadcom/bgmac.ko] undefined!
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44954
2015-03-23 18:39:16 +00:00
Imre Kaloz
2375f37723
generic/3.18: refresh patches
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 44951
2015-03-23 13:28:52 +00:00
Imre Kaloz
5be4f2b5b8
mvebu: update mamba dts
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 44949
2015-03-23 12:44:30 +00:00
Felix Fietkau
0a84da0841
bcm53xx: add missing cache controller errata options
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44947
2015-03-23 10:14:27 +00:00
Felix Fietkau
a6f914d573
bcm53xx: remove linux 3.14 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44946
2015-03-23 10:14:20 +00:00
Felix Fietkau
e890a3bc9a
ramips: make ethernet register map u16 instead of u32
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44940
2015-03-22 15:11:14 +00:00
Rafał Miłecki
fb6164a377
bcm53xx: add SMP support
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44939
2015-03-22 15:07:40 +00:00
Nicolas Thill
577da84c25
uml: bump to 3.18
...
Signed-off-by: Nicolas Thill <nico@openwrt.org>
SVN-Revision: 44937
2015-03-22 12:36:57 +00:00
John Crispin
3c0ea6eced
au1000: drop 005-fix-cpu-clk.patch
...
it has been upstreamed and treackled down with the latest 3.18 update
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44935
2015-03-22 07:03:02 +00:00
Rafał Miłecki
e0155ad7b0
bcm53xx: add support for Asus RT-AC68U
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44934
2015-03-22 01:57:15 +00:00
Rafał Miłecki
79c152b56b
bcm53xx: fix Asus RT-AC87U magic (even if not used yet)
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44933
2015-03-22 01:57:10 +00:00
Rafał Miłecki
d324dd4ff3
bcm53xx: backport BCM5301X Netgear R6250/R8000 DT patches
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44932
2015-03-22 01:57:06 +00:00
Rafał Miłecki
a4523c8e1d
bcm53xx: refresh patches
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44931
2015-03-22 01:56:47 +00:00
John Crispin
35c52bc261
oxnas: remove pre kernel 3.18 support from pinctrl driver
...
just some pruning...
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 44923
2015-03-21 21:47:20 +00:00
John Crispin
3256194aff
oxnas: add support for kernel 4.0
...
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 44922
2015-03-21 21:47:03 +00:00
John Crispin
908a82ab61
kernel: add two more missing config symbols
...
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 44921
2015-03-21 21:46:47 +00:00
Felix Fietkau
7d6eec16b6
brcm2708: remove a patch that was added in the stable update ( fixes #19253 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44920
2015-03-21 21:24:08 +00:00
Felix Fietkau
37912d66c2
ramips: increase NAPI weight for mt7621 to improve routing performance a bit more
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44918
2015-03-21 12:08:07 +00:00
Rafał Miłecki
ba10454b91
kernel: backport bgmac patches
...
This allows dropping some hacky bcm53xx bgmac patch forcing link state.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44917
2015-03-21 11:45:50 +00:00
Rafał Miłecki
782e432797
bcm53xx: enable FIXED_PHY, we will need it for bgmac
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44916
2015-03-21 11:45:27 +00:00
Felix Fietkau
db3b862d1c
kernel: fix ipsec related regression in the netfilter rtcache patch
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44913
2015-03-20 22:13:34 +00:00
Imre Kaloz
b95a9f01c1
mvebu: set default regdomain
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 44908
2015-03-20 12:15:40 +00:00
Felix Fietkau
975e1357e6
ramips: fix LAN/WAN MAC address for WSR-600/1166
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44903
2015-03-20 09:37:07 +00:00
John Crispin
1773aa5163
octeon: add er8 sysupgrade support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44902
2015-03-20 08:49:08 +00:00
John Crispin
e9b6602a84
octeon: Add MMC support for EdgeRouter ER8
...
this is a backport of a series posted on the lmo mailing list
Signed-off-by: Jonathan Thibault <jonathan@navigue.com>
SVN-Revision: 44901
2015-03-20 08:49:02 +00:00
Felix Fietkau
dac483acb4
ramips: fix WSR-1166 green power LED
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44898
2015-03-19 21:51:44 +00:00
Michael Büsch
bb81ff2374
omap24xx: Add basic config for linux-4.0
...
Also remove 3.3 config. It's broken and unsupported.
SVN-Revision: 44895
2015-03-19 18:45:32 +00:00
Steven Barth
9b1840b861
ipv6: fix throw routes
...
Signed-off-by: Steven Barth <steven@midlink.org>
SVN-Revision: 44894
2015-03-19 15:46:03 +00:00
Felix Fietkau
32a6800a41
kernel: remove linux 3.8 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44890
2015-03-19 11:58:59 +00:00
Felix Fietkau
3600b84cbd
ep93xx: moved to targets feed
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44889
2015-03-19 11:58:54 +00:00
Felix Fietkau
941ac35f77
mpc52xx: moved to targets feed
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44888
2015-03-19 11:58:48 +00:00
Felix Fietkau
3581298348
mpc83xx: moved to targets feed
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44887
2015-03-19 11:58:43 +00:00
Felix Fietkau
75e828c117
ar71xx: fix a double dereference in the unaligned access patch
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44885
2015-03-19 11:58:30 +00:00
Felix Fietkau
2077b18e6b
x86_64: remove unused patch
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44884
2015-03-19 11:58:22 +00:00
Imre Kaloz
e3d19988cf
mvebu: add Linux 4.0 support
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 44882
2015-03-19 10:25:44 +00:00
Imre Kaloz
05bf6e0f2e
generic/4.0: fix ubi EOF marker patch
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 44881
2015-03-19 10:13:21 +00:00
Imre Kaloz
0d8d48641d
generic/4.0: add missing symbols
...
Signed-off-by: Imre Kaloz <kaloz@openwrt.org>
SVN-Revision: 44880
2015-03-19 10:11:20 +00:00
Felix Fietkau
b011293d0b
kernel: replace GRO optimization patch with a new one that supports VLANs/bridges with different MAC addresses
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44877
2015-03-18 18:22:41 +00:00
Felix Fietkau
17afb853ee
kernel: bump to 3.14.35, 3.18.9, 3.19.1 and 4.0-rc4
...
also refresh generic patches for 3.14, 3.18, 3.19 and 4.0
targets might need a minor refresh as well, however, it looks
like everything still applies cleanly with occasional small
offsets.
Signed-off-by: Daniel Golle <daniel@makrotopia.org>
SVN-Revision: 44876
2015-03-18 18:21:08 +00:00
Jonas Gorski
87568ebeac
b53: reverse duplex bit meaning for IMP state override register
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44875
2015-03-18 10:44:15 +00:00
Felix Fietkau
f30358d41a
kernel: remove the netfilter optimization that skips the filter table, it has caused too many issues
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44873
2015-03-17 17:14:48 +00:00
John Crispin
553528371b
ralink: fix mt7621 i2c name
...
Signed-off-by: zouxf <fl.service@t-firefly.com>
SVN-Revision: 44868
2015-03-17 09:44:14 +00:00
John Crispin
29cf72ac07
lantiq/xrx200: cleanup default packages
...
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44867
2015-03-17 09:44:06 +00:00
John Crispin
55a71c1374
ar71xx: adjust OM5P profile for the OpenMesh OM5P-AN board
...
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>
SVN-Revision: 44866
2015-03-17 09:43:56 +00:00
John Crispin
10c5a44017
ar71xx: enable sysupgrade for the OpenMesh OM5P-AN
...
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>
SVN-Revision: 44863
2015-03-17 09:43:37 +00:00
John Crispin
85cceb5dd0
ar71xx: add user-space support for the OpenMesh OM5P-AN
...
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>
SVN-Revision: 44862
2015-03-17 09:43:31 +00:00
John Crispin
17a1e18ee2
ar71xx: add kernel support for the OpenMesh OM5P-AN board
...
Signed-off-by: Sven Eckelmann <sven@open-mesh.com>
SVN-Revision: 44861
2015-03-17 09:43:19 +00:00
John Crispin
2a0fcc029f
ar71xx: detect GL.iNet model
...
There are two versions of the GL.iNet, the 6408A and the 6416A. The only
difference is the flash size.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 44860
2015-03-17 09:43:13 +00:00
John Crispin
986af9e64e
lantiq: make xrx200 targets use the upstream dwc2 driver
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44857
2015-03-17 09:42:56 +00:00
Felix Fietkau
caf94290ce
kernel: add a few more missing config symbols
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44856
2015-03-17 07:24:51 +00:00
Rafał Miłecki
76811de003
brcm47xx: support SPROM/NVRAM prefixes
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44855
2015-03-17 07:07:17 +00:00
Rafał Miłecki
917fb76321
brcm47xx: rename (and refresh) MTD patch for safety "nvram" partition
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44854
2015-03-17 07:07:00 +00:00
Rafał Miłecki
8f63c1405f
brcm47xx: switch to 3.18
...
Tested on BCM5357B0, BCM47186B0 and BCM4706.
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44853
2015-03-16 23:05:43 +00:00
Rafał Miłecki
7c6f7b716b
bcm53xx: switch to 3.18
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44852
2015-03-16 22:24:56 +00:00
Felix Fietkau
768cf6821f
x86: refresh kvm_guest kernel config
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44851
2015-03-16 21:17:45 +00:00
Felix Fietkau
06cb90f8a2
kernel: add missing config symbol
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44850
2015-03-16 21:17:41 +00:00
Felix Fietkau
6c42f140a0
x86: enable rtl8139 ethernet support for geode by default
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44849
2015-03-16 21:00:14 +00:00
Florian Fainelli
1488ed7c2c
brcm63xx: switch maintainer
...
Make Jonas the maintainer of brcm63xx.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 44848
2015-03-16 19:51:17 +00:00
Felix Fietkau
2777b525c6
geode: set target to Geode GX1 to support older chips
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44847
2015-03-16 18:10:17 +00:00
Jonas Gorski
343ec8d645
brcm63xx: use consistent gpio chip labeling for OF/non-OF
...
Ensure gpio chips are always labeled the same; this allows simplifying
any arch setup gpio lookups.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44846
2015-03-16 13:37:38 +00:00
Jonas Gorski
81e51681e7
brcm63xx: switch to 3.18
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44841
2015-03-16 11:53:22 +00:00
Jonas Gorski
5d0e2d1b41
brcm63xx: call brcm63xx_detect explicitly
...
Now that we have converted all users of global variables to use
brcm63xx_board_name, we can savely convert the implicit call to detect
in brcm63xx.sh to a single, explicit call in preinit.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44840
2015-03-16 11:53:14 +00:00
Jonas Gorski
020e5733f9
brcm63xx: move preinit ifname detection to the preinit script
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44839
2015-03-16 11:53:06 +00:00
Jonas Gorski
90da308e3b
brcm63xx: remove obsolete brcm63xx_has_reset_button
...
r37000 made button kmods loaded from generic code, so we don't use
it anymore for deciding to load them.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44838
2015-03-16 11:52:57 +00:00
Jonas Gorski
f0badcb769
brcm63xx: set status leds from within diag.sh
...
Instead of setting them up on invocation of brcm63xx_detect, set them
when calling diag.sh based.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44837
2015-03-16 11:52:49 +00:00
Jonas Gorski
098377af25
brcm63xx: switch to board_name based configuration
...
Board IDs are not unique, so in preparation for depricating them, always
use board_name for any (default) configuration decisions.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44836
2015-03-16 11:52:42 +00:00
Jonas Gorski
52ffc6faa7
brcm63xx: add missing board_ids to legacy_detect
...
These boards do not have a corresponding dts file yet.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44835
2015-03-16 11:52:35 +00:00
Jonas Gorski
906c9ef952
brcm63xx: add device tree based board detection
...
Use the device tree model property for detecting the board instead
of board id from nvram if present.
Since we can now directly detect the DVA-G3810BN, we can remove the
extra check for it.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44834
2015-03-16 11:52:26 +00:00
Jonas Gorski
844e92e188
brcm63xx: populate /tmp/sysinfo
...
Take full board name from devicetree, if present. Provide a method
for retrieving the board name.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44833
2015-03-16 11:52:20 +00:00
Jonas Gorski
9c53e344c0
brcm63xx: base-files: rename board_name to board_id
...
Rename board_name to board_id to prepare for using board_name as a
proper name for the board.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44832
2015-03-16 11:52:16 +00:00
Jonas Gorski
ca7f6d28c8
brcm63xx: Add DGND3700 v1 / DGND3800B support
...
This adds support for the Netgear DGND3700 v1 and DGND3800B.
DGND3700 v1 and DGND3800B are exactly the same router, only one difference,
the factory firmware. This patch produces two factory firmwares for each router.
The router includes an onboard NAND flash for extra storage. NAND is currently
not supported in bcm63xx, so no code added for this part. The NOR flash (32MB)
is enough for storing an openwrt firmware.
Signed-off-by: Daniel Gonzalez <dgcbueu@gmail.com>
[jogo: Add back commit message from v1]
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44831
2015-03-16 11:52:10 +00:00
John Crispin
4fdb66373f
netlogic: bump to 3.18
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44829
2015-03-16 10:58:43 +00:00
Felix Fietkau
298d67ec7b
mvebu: drop linux 3.14 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44828
2015-03-16 08:29:42 +00:00
John Crispin
d6b3eba475
kernel: add missing MTD_SPLIT_FIT_FW symbol
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44827
2015-03-16 08:05:42 +00:00
John Crispin
c0a15a57bd
sunxi: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44824
2015-03-16 07:41:24 +00:00
John Crispin
eb396d6569
adm5120: drop 3.8 and 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44823
2015-03-16 07:41:19 +00:00
John Crispin
46f01fec7f
ar7: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44822
2015-03-16 07:41:10 +00:00
John Crispin
4d11bb0d23
ixp4xx: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44821
2015-03-16 07:41:05 +00:00
John Crispin
cc8b6c6d5b
octeon: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44820
2015-03-16 07:40:59 +00:00
John Crispin
a992489e4b
oxnas: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44819
2015-03-16 07:40:54 +00:00
John Crispin
fe33c185bd
mpc85xx: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44818
2015-03-16 07:40:47 +00:00
John Crispin
518d9fd2a0
cns3xxx: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44817
2015-03-16 07:40:41 +00:00
John Crispin
43c66cb434
au1000: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44816
2015-03-16 07:40:19 +00:00
John Crispin
fb78ebb813
ar71xx: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44815
2015-03-16 07:40:09 +00:00
John Crispin
de04a1d843
realview: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44814
2015-03-16 07:40:02 +00:00
John Crispin
54f1c710db
malta: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44813
2015-03-16 07:39:57 +00:00
John Crispin
257671615b
lantiq: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44812
2015-03-16 07:39:52 +00:00
John Crispin
7648d80c90
ralink: drop 3.14 support
...
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 44811
2015-03-16 07:39:46 +00:00
Felix Fietkau
f2f8f6974b
x86: refresh kernel patches
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44810
2015-03-16 07:12:31 +00:00
Felix Fietkau
9e0759ea26
x86: merge all geode based subtargets into one
...
Build all geode platform drivers into the kernel
Remove kmod-* packages for these drivers
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44809
2015-03-16 07:05:30 +00:00
Felix Fietkau
986b8baf9a
x86: remove 3.14 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44805
2015-03-16 05:57:04 +00:00
Felix Fietkau
7f7e0a21b8
kernel: remove linux 3.13 support
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44804
2015-03-16 05:52:02 +00:00
Felix Fietkau
f26bb532cf
omap: remove old kernel versions
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44803
2015-03-16 05:51:56 +00:00
Felix Fietkau
495404e9a4
omap: update to linux 3.18, it has been tested by at least one builder and 3.13 has not been built by buildbot in a long time
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44802
2015-03-16 05:51:52 +00:00
Felix Fietkau
c75c90edf6
kernel: port missing ubi EOF marker support patch to 3.19 and 4.0
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44801
2015-03-16 05:16:14 +00:00
Felix Fietkau
adb6d8f93f
kernel: fix duplicate use of patch number 490
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44800
2015-03-16 05:16:07 +00:00
Felix Fietkau
d6fbb77bc8
kernel: add a few missing config symbols for 3.18+
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44799
2015-03-16 04:47:28 +00:00
Felix Fietkau
d5b99a2d74
kernel: add missing description for GRO optimization patch
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44798
2015-03-16 04:19:09 +00:00
Felix Fietkau
270bc6427b
kernel: skip GRO for packets bridged to other hosts
...
Eliminates excessive skb copying when bridging from LAN to WLAN on
ramips.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44797
2015-03-15 20:32:09 +00:00
John Crispin
7ea781558f
ar71xx: fix TP-LINK TL-WDR3600/4300 RFKILL switch positions
...
While the switch positions aren't explicitly labeled as on and off, we've heard
complaints about them being wrong. This patch changes the handling to match the
stock firmware.
Signed-off-by: Matthias Schiffer <mschiffer@universe-factory.net>
SVN-Revision: 44795
2015-03-15 19:39:47 +00:00
John Crispin
7f3013a480
ipq806x: fix AP148 boot from NOR
...
This patch allows AP148 to boot from NOR flash.
As we're using a FIT image as kernel (which includes kernel bin + DTB)
we enable the MTD_SPLIT_FIT_FW kernel option, which will detect the FIT
image and automatically split the "firmware" partition into 2 MTD parts
(kernel + rootfs).
The rootfs will then be parsed and split between rootfs + rootfs_data,
as usual.
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
SVN-Revision: 44794
2015-03-15 19:39:41 +00:00
John Crispin
582232cd7b
ipq806x: add ap148 bootargs to DT
...
Only one bootargs is really needed: the tty port. All the other
information will use the OpenWrt mechanisms.
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
SVN-Revision: 44793
2015-03-15 19:39:33 +00:00
John Crispin
9a863f803e
kernel: mtdsplit: add support for FIT image
...
If this option is enabled, the FIT image format will be detected and
split by the mtdsplit code. Detection is based upon the FDT magic, which
will trigger the parsing and detection of the rootfs, ending-up in the
creation of the 2 new partitions.
Signed-off-by: Mathieu Olivari <mathieu@codeaurora.org>
SVN-Revision: 44792
2015-03-15 19:39:27 +00:00
John Crispin
5ca2ad1063
Fix (invert/revert) Hornet-UB WPS LED state
...
My previous patch regarding the Hornet-UB board
(commit: beed4d82d6a0154b0cd5f7b84e2180215ace6718) actually
causes the WPS led state to be inverted. Practically this meant
that value 0 in /sys/class/led/alfa:blue:wps/brightness would
turn the LED on and any positive value (1-255) would turn it off.
The above of course is confusing and hence reverting this value
back to the way it was before beed4d82d6a0154b0cd5f7b84e2180215ace6718.
Signed-off-by: Janne Cederberg <janne.cederberg@gmail.com>
SVN-Revision: 44791
2015-03-15 19:25:48 +00:00
Jonas Gorski
085b8e0014
b53: global config is part of the management page, not the control page
...
It will now actually enable the mib counters instead of enabling rx/tx for
the first switch port.
Reported-by: Daniel Gonzalez <dgcbueu@gmail.com>
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44788
2015-03-15 14:19:28 +00:00
Jonas Gorski
eed031d460
brcm63xx: brcm63xxpart: fix buffer overrun in of parser
...
We never account for the added partitions from the tag parser, so
allocated two partioness less than needed. This can cause issues when
the memory gets reused before the mtd code can actually add the
partitions.
Fixes oopses like:
[ 0.920000] mtd: device 2 (rootfs) set to be root filesystem
[ 0.924000] 1 squashfs-split partitions found on MTD device rootfs
[ 0.932000] 0x0000002e0000-0x0000003f0000 : "rootfs_data"
[ 0.940000] 0x000000010000-0x0000003f0000 : "linux"
[ 0.948000] CPU 0 Unable to handle kernel paging request at virtual address 00010203, epc == 8028ddf8, ra == 801ad5d4
[ 0.956000] Oops[#1 ]:
[ 0.956000] CPU: 0 PID: 1 Comm: swapper/0 Not tainted 3.18.8 #22
[ 0.956000] task: 8181da78 ti: 8181e000 task.ti: 8181e000
[ 0.956000] $ 0 : 00000000 10008f00 00010203 81049e40
[ 0.956000] $ 4 : 00010203 000000d0 00000000 000000fd
[ 0.956000] $ 8 : 00000000 80015490 00000000 80370000
[ 0.956000] $12 : 00000000 00000001 00000000 2f736269
[ 0.956000] $16 : 00010203 000000d0 8007bde0 81482000
[ 0.956000] $20 : 00000000 00000004 81481f80 803c4b78
[ 0.956000] $24 : 00000000 00000000
[ 0.956000] $28 : 8181e000 8181fbe8 80b20000 801ad5d4
[ 0.956000] Hi : 00000000
[ 0.956000] Lo : 00000000
[ 0.956000] epc : 8028ddf8 strlen+0x4/0x20
[ 0.956000] Not tainted
[ 0.956000] ra : 801ad5d4 kstrdup+0x30/0x84
[ 0.956000] Status: 10008f03 KERNEL EXL IE
[ 0.956000] Cause : 00800008
[ 0.956000] BadVA : 00010203
[ 0.956000] PrId : 0002a010 (Broadcom BMIPS4350)
[ 0.956000] Modules linked in:
[ 0.956000] Process swapper/0 (pid: 1, threadinfo=8181e000, task=8181da78, tls=00000000)
[ 0.956000] Stack : 8148aa00 803c4bcc 00000000 801cd9d0 00000000 8148a400 818a1400 003f0000
81482000 8007bde0 8148aa00 800ac78c 8148aa00 00000004 8037ae30 8181fc4c
8148aa00 803bc074 803c0000 80074b84 00000000 00010000 00000004 ffffffff
8037ae30 00000004 8148aa00 00000004 803c4b80 818a1400 803c0000 00000005
81481f80 80074ce0 8181fc84 00000005 81879800 8008ece4 00000000 003f0000
...
[ 0.956000] Call Trace:
[ 0.956000] [<8028ddf8>] strlen+0x4/0x20
[ 0.956000] [<801ad5d4>] kstrdup+0x30/0x84
[ 0.956000] [<8007bde0>] allocate_partition+0x58/0x93c
[ 0.956000] [<80074ce0>] add_mtd_partitions+0x90/0x144
[ 0.956000] [<801cc228>] mtd_device_parse_register+0x78/0xcc
[ 0.956000] [<801e7870>] of_flash_probe+0x658/0x728
[ 0.956000] [<80216ee0>] platform_drv_probe+0x24/0x60
[ 0.956000] [<801221f4>] driver_probe_device+0xcc/0x214
[ 0.956000] [<800466f8>] __driver_attach+0x7c/0xb4
[ 0.956000] [<800c38bc>] bus_for_each_dev+0x94/0xa4
[ 0.956000] [<800c35e4>] bus_add_driver+0x104/0x1ec
[ 0.956000] [<80122400>] driver_register+0xac/0x100
[ 0.956000] [<80113a5c>] do_one_initcall+0x148/0x204
[ 0.956000] [<803cbd1c>] kernel_init_freeable+0x168/0x220
[ 0.956000] [<800157bc>] kernel_init+0x10/0x114
[ 0.956000] [<800108a8>] ret_from_kernel_thread+0x14/0x1c
[ 0.956000]
[ 0.956000]
Code: 03e00008 27bd0028 00801021 <80430000> 10600003 00000000 080a377e 24420001 03e00008
[ 1.192000] ---[ end trace 9d89ccbcae27fe40 ]---
[ 1.200000] Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
[ 1.200000]
[ 1.200000] ---[ end Kernel panic - not syncing: Attempted to kill init! exitcode=0x0000000b
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44787
2015-03-15 14:19:22 +00:00
Jonas Gorski
9d893d39bd
brcm63xx: kmod-bcm63xx-udc: fix module path for 3.18+
...
Fix the module path for linux 3.18+.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44785
2015-03-15 14:19:10 +00:00
Jonas Gorski
12301a79b7
brcm63xx: fix 6368 cpu1 reg typo
...
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 44784
2015-03-15 14:19:07 +00:00
Felix Fietkau
d8d9282372
lantiq: add a better fix to strip FCS from ethernet packets on XRX200
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44771
2015-03-15 09:47:34 +00:00
Felix Fietkau
55cdb4dbb3
lantiq: enable atm-esi by default for xrx200
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44769
2015-03-15 07:57:51 +00:00
Felix Fietkau
17fdf5fb85
brcm2708: fix mkdosfs command line options order
...
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
SVN-Revision: 44764
2015-03-15 05:18:50 +00:00
Felix Fietkau
65a0244ff8
x86: refresh kernel config
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44759
2015-03-15 04:43:37 +00:00
Felix Fietkau
c062741575
x86: update to kernel 3.18
...
copied target/linux/x86/config-3.14 and target/linux/x86/patches-3.14 to
3.18 equivalents and then tweaked until it built.
Tested on alix2, soekris net4826 and soekris net4521.
Still having trouble with net4826 booting from Grub, alix2 and net4521
are fine.
Signed-off-by: Russell Senior <russell@personaltelco.net>
SVN-Revision: 44758
2015-03-15 04:43:30 +00:00
Felix Fietkau
50d4775df0
kernel: fix portability issues of the x86 vdso2c utility
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44757
2015-03-15 04:43:22 +00:00
Felix Fietkau
09ac7d4697
kernel: add missing config symbol for 3.18+
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44756
2015-03-15 04:40:10 +00:00
Rafał Miłecki
0a9b7ea932
bcm53xx: support NVRAM prefixes with extra / in devpath
...
Signed-off-by: Rafał Miłecki <zajec5@gmail.com>
SVN-Revision: 44755
2015-03-14 16:35:56 +00:00
Felix Fietkau
578aa97f8c
x86: disable rts/cts for serial console in grub - fixes net48xx boot issues
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44753
2015-03-14 08:38:35 +00:00
Felix Fietkau
c5aa269d57
kernel: linux 3.19 also needs the network namespace related fd export patch ( #19161 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 44751
2015-03-14 05:38:14 +00:00
John Crispin
c7229b96b7
ralink: support change tx/rx ring size
...
Signed-off-by: michael lee <igvtee@gmail.com>
SVN-Revision: 44741
2015-03-13 08:38:08 +00:00
John Crispin
2c94eef5df
ralink: use random generate mac address instead of default one.
...
Signed-off-by: michael lee <igvtee@gmail.com>
SVN-Revision: 44740
2015-03-13 08:38:01 +00:00
John Crispin
800da5a02e
ralink: add wifi 5g dts info for cy-swr1100
...
Signed-off-by: michael lee <igvtee@gmail.com>
SVN-Revision: 44739
2015-03-13 08:37:45 +00:00
Felix Fietkau
7fc700dcca
ath25: set myself as maintainer
...
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44737
2015-03-13 03:02:34 +00:00
Felix Fietkau
1850e0f0a7
Rename 'atheros' target to 'ath25'
...
Rename 'atheros' target to more precise 'ath25'.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44736
2015-03-13 03:02:28 +00:00
Felix Fietkau
558a452e1a
atheros: remove odd board check during image build
...
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44735
2015-03-13 03:02:21 +00:00
Felix Fietkau
cfbaa00914
atheros: remove linux 3.14
...
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44734
2015-03-13 03:02:17 +00:00
Felix Fietkau
99104c3179
atheros: switch to 3.18
...
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44733
2015-03-13 03:02:12 +00:00
Felix Fietkau
ed8cdc3f8d
atheros: v3.18: renumber backported patches
...
Move first 3 patches to 0xx numbers range to denote that this is
backported code and they should be removed when we update
kernel to version >= 3.19
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44732
2015-03-13 03:02:08 +00:00
Felix Fietkau
dae90fc130
atheros: v3.18: non-functional cleanup
...
To finally sync code with upsream cleanup registers headers, and update
several comments and kernel config symbols descriptions. No functional
changes.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44731
2015-03-13 03:02:00 +00:00
Felix Fietkau
7a46e008fb
atheros: v3.18: cleanup includes
...
Remove odd and add missed includes.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44730
2015-03-13 03:01:50 +00:00
Felix Fietkau
1b5b20e51e
atheros: v3.18: rearrange code between patches
...
Cleanup board patch by moving code to specific patches, and factor out
leds to separate patch. No functional changes.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44729
2015-03-13 03:01:42 +00:00
Felix Fietkau
6d29a8bc64
atheros: v3.18: move GPIO patches behind PCI
...
Move GPIO patches behind PCI patch, since they are not yet merged
upstream.
Signed-off-by: Sergey Ryazanov <ryazanov.s.a@gmail.com>
SVN-Revision: 44728
2015-03-13 03:01:37 +00:00