summaryrefslogtreecommitdiffstats
path: root/target/linux
Commit message (Collapse)AuthorAgeFilesLines
* brcm63xx: move kernel load address to 8MiBJonas Gorski2015-03-253-1/+69
| | | | | | | | Fixes boot when uncompressed kernel is > 4 MiB (#19251). Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 44984
* brcm63xx: hcsimage: respect load addressJonas Gorski2015-03-251-1/+2
| | | | | | | | Respect the vmlinux load address when generating images. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 44983
* brcm63xx: add Livebox 1 firmware image generationJonas Gorski2015-03-252-3/+40
| | | | | | | | | | | | | | | | | | | | | | 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
* brcm63xx: add a dummy image recipe for boards missing proper imagesJonas Gorski2015-03-251-1/+6
| | | | | | Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 44981
* brcm63xx: drop non-dtb image recipeJonas Gorski2015-03-251-11/+0
| | | | | | | | All images generated contain dtbs, so it is now unused. Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 44980
* kernel: merge upstream bgmac driver improvementsFelix Fietkau2015-03-253-0/+480
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44978
* bcm53xx: enable the full-line-of-zero optimization in the cache controllerFelix Fietkau2015-03-251-2/+3
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44977
* kernel: yaffs: use new_sync_{read,write} for 3.18+Gabor Juhos2015-03-253-9/+21
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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
* kernel: backport rest of bcma patchesRafał Miłecki2015-03-243-26/+67
| | | | | | | | | | 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
* kernel: mac80211: backport bcma patch renaming IRQ control functionRafał Miłecki2015-03-242-54/+168
| | | | | | | | | 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
* mark 3.10 targets as brokenRafał Miłecki2015-03-245-4/+5
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44968
* x86: use PARTUUID instead explicitly specifying the device by defaultJo-Philipp Wich2015-03-244-40/+57
| | | | | | | | | | | | | 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
* x86_64: fix PARTUUID format with leading zerosJo-Philipp Wich2015-03-241-1/+1
| | | | | | | | | 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
* avr32: remove targetFelix Fietkau2015-03-2412-375/+0
| | | | | | | | | 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
* kernel: update bcma with most patches from wireless-drivers-nextRafał Miłecki2015-03-242-14/+510
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44955
* kernel: backport fixed_phy_register EXPORT fix from 3.19Rafał Miłecki2015-03-231-0/+30
| | | | | | | | | 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
* generic/3.18: refresh patchesImre Kaloz2015-03-235-32/+7
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 44951
* mvebu: update mamba dtsImre Kaloz2015-03-231-0/+88
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 44949
* bcm53xx: add missing cache controller errata optionsFelix Fietkau2015-03-231-4/+4
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44947
* bcm53xx: remove linux 3.14 supportFelix Fietkau2015-03-2342-9149/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44946
* ramips: make ethernet register map u16 instead of u32Felix Fietkau2015-03-224-6/+6
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44940
* bcm53xx: add SMP supportRafał Miłecki2015-03-221-0/+331
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44939
* uml: bump to 3.18Nicolas Thill2015-03-225-1/+4271
| | | | | | Signed-off-by: Nicolas Thill <nico@openwrt.org> SVN-Revision: 44937
* au1000: drop 005-fix-cpu-clk.patchJohn Crispin2015-03-221-11/+0
| | | | | | | | it has been upstreamed and treackled down with the latest 3.18 update Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 44935
* bcm53xx: add support for Asus RT-AC68URafał Miłecki2015-03-223-1/+81
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44934
* bcm53xx: fix Asus RT-AC87U magic (even if not used yet)Rafał Miłecki2015-03-221-1/+1
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44933
* bcm53xx: backport BCM5301X Netgear R6250/R8000 DT patchesRafał Miłecki2015-03-227-56/+190
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44932
* bcm53xx: refresh patchesRafał Miłecki2015-03-225-6/+6
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44931
* oxnas: remove pre kernel 3.18 support from pinctrl driverJohn Crispin2015-03-211-32/+0
| | | | | | | | just some pruning... Signed-off-by: Daniel Golle <daniel@makrotopia.org> SVN-Revision: 44923
* oxnas: add support for kernel 4.0John Crispin2015-03-2114-0/+845
| | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org> SVN-Revision: 44922
* kernel: add two more missing config symbolsJohn Crispin2015-03-211-0/+2
| | | | | | Signed-off-by: Daniel Golle <daniel@makrotopia.org> SVN-Revision: 44921
* brcm2708: remove a patch that was added in the stable update (fixes #19253)Felix Fietkau2015-03-211-24/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44920
* ramips: increase NAPI weight for mt7621 to improve routing performance a bit ↵Felix Fietkau2015-03-211-3/+3
| | | | | | | | more Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44918
* kernel: backport bgmac patchesRafał Miłecki2015-03-2117-67/+494
| | | | | | | | This allows dropping some hacky bcm53xx bgmac patch forcing link state. Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44917
* bcm53xx: enable FIXED_PHY, we will need it for bgmacRafał Miłecki2015-03-211-0/+1
| | | | | | Signed-off-by: Rafał Miłecki <zajec5@gmail.com> SVN-Revision: 44916
* kernel: fix ipsec related regression in the netfilter rtcache patchFelix Fietkau2015-03-204-4/+20
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44913
* mvebu: set default regdomainImre Kaloz2015-03-201-0/+30
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 44908
* ramips: fix LAN/WAN MAC address for WSR-600/1166Felix Fietkau2015-03-201-0/+9
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44903
* octeon: add er8 sysupgrade supportJohn Crispin2015-03-205-42/+119
| | | | | | Signed-off-by: John Crispin <blogic@openwrt.org> SVN-Revision: 44902
* octeon: Add MMC support for EdgeRouter ER8John Crispin2015-03-204-0/+1766
| | | | | | | | this is a backport of a series posted on the lmo mailing list Signed-off-by: Jonathan Thibault <jonathan@navigue.com> SVN-Revision: 44901
* ramips: fix WSR-1166 green power LEDFelix Fietkau2015-03-191-1/+1
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44898
* omap24xx: Add basic config for linux-4.0Michael Büsch2015-03-194-574/+266
| | | | | | Also remove 3.3 config. It's broken and unsupported. SVN-Revision: 44895
* ipv6: fix throw routesSteven Barth2015-03-195-0/+180
| | | | | | Signed-off-by: Steven Barth <steven@midlink.org> SVN-Revision: 44894
* kernel: remove linux 3.8 supportFelix Fietkau2015-03-19166-34669/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44890
* ep93xx: moved to targets feedFelix Fietkau2015-03-1923-6347/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44889
* mpc52xx: moved to targets feedFelix Fietkau2015-03-197-1216/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44888
* mpc83xx: moved to targets feedFelix Fietkau2015-03-1953-18251/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44887
* ar71xx: fix a double dereference in the unaligned access patchFelix Fietkau2015-03-191-5/+5
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44885
* x86_64: remove unused patchFelix Fietkau2015-03-191-23/+0
| | | | | | Signed-off-by: Felix Fietkau <nbd@openwrt.org> SVN-Revision: 44884
* mvebu: add Linux 4.0 supportImre Kaloz2015-03-1914-0/+1639
| | | | | | Signed-off-by: Imre Kaloz <kaloz@openwrt.org> SVN-Revision: 44882