Gabor Juhos
a4c2853261
kernel: don't hide the 'Warning: unable to open an initial console' message
...
The 'Warning: unable to open an initial console' message
indicates an error in the rootfs. Remove the patch which
hides the warning.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 37848
2013-08-27 12:03:01 +00:00
Gabor Juhos
012f214e6f
kernel: ensure that /dev/console exists in initramfs
...
Linux expects that the /dev/console node is present
in the rootfs image. Create the node in initramfs,
in order to make std{in,out,err} usable even in early
init process.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 37846
2013-08-27 12:02:54 +00:00
Felix Fietkau
c75416292a
kernel: fixing a potential deadlock in block2mtd for kernel 3.6/3.8/3.9
...
Signed-off-by: Alexander Couzens <lynxis@fe80.eu>
SVN-Revision: 37842
2013-08-26 17:47:14 +00:00
Felix Fietkau
3848e6a246
kernel: crashlog: Avoid out-of-bounds write
...
vsnprintf returns the number of chars that would have been written, not
the actual number of chars written. This can lead to crashlog_buf->len
being too big which in turn can lead to get_maxlen() returning negative
numbers. The length argument of kmsg_dump_get_buffer will be casted to
a size_t which makes a negative input a big positive number allowing
kmsg_dump_get_buffer to write out of bounds.
Fix this by using vscnprintf which returns the actually written number
of chars.
Signed-off-by: Helmut Schaa <helmut.schaa@googlemail.com>
SVN-Revision: 37820
2013-08-21 20:59:25 +00:00
Luka Perkov
a2dccb958c
kernel: drop dead glamo code
...
The code is not used since the s3c24xx target was removed.
Signed-off-by: Luka Perkov <luka@openwrt.org>
SVN-Revision: 37809
2013-08-18 01:25:40 +00:00
Hauke Mehrtens
9d4145efe5
kernel: fix DMA error when BCM4331 is connected to BCM4706
...
The BCM4331 supports a PCIe max request size of 512 bytes and uses
that, but the PCIe controller in the BCM4706 just supports 128 Bytes
and that causes a DMA error for packages bigger than 126 bytes. This
fixes the problem by setting the BCM4331 also to 128 Bytes.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 37709
2013-08-05 16:17:05 +00:00
Felix Fietkau
73c4d73d6d
build: unify target independent optimization options
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37600
2013-07-29 09:38:29 +00:00
Felix Fietkau
cc26f768e4
kernel: stop patching -funit-at-a-time into CFLAGS, it has no effect on recent compilers
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37598
2013-07-29 09:38:21 +00:00
John Crispin
4176b6fdd3
strict_strtoul is obsolete, use kstrtoul instead
...
based on http://patchwork.openwrt.org/patch/3827/
Signed-off-by: John Crispin <blogic@openwrt.org>
SVN-Revision: 37562
2013-07-27 09:23:18 +00:00
Gabor Juhos
6a5b4ec7dc
kernel: update 3.9 to 3.9.11
...
Also refresh 3.9 patches.
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 37501
2013-07-22 15:30:56 +00:00
Felix Fietkau
a50c18c632
kernel: fix crash in act_connmark in 3.9 and 3.10 ( fixes #13916 , #13876 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37493
2013-07-21 13:53:54 +00:00
Lars-Peter Clausen
8fc44d1f5f
kernel: Remove gpio-pwm patches
...
There is no platform using the gpio-pwm driver, yet these patches break the
generic PWM framework that is in upstream. So just remove them.
Signed-off-by: Lars-Peter Clausen <lars@metafoo.de>
SVN-Revision: 37490
2013-07-21 11:43:16 +00:00
Hauke Mehrtens
c7f8cb3f4f
kernel: update bcma and ssb to version from wireless-testing/master tag master-2013-07-18
...
This should fix some build problems in b43 with kernel 3.3.
Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
SVN-Revision: 37432
2013-07-19 12:02:34 +00:00
Felix Fietkau
a6db996b13
kernel: fix another corner case in the bridge state patch ( #13874 )
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37347
2013-07-15 15:12:33 +00:00
Felix Fietkau
93cb862260
kernel: fix a bridge issue that broke WDS client handling in 3.9+
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37341
2013-07-15 12:25:58 +00:00
Hauke Mehrtens
e574f75d16
kernel: update to kernel 3.9.10 and refresh patches
...
SVN-Revision: 37274
2013-07-13 22:43:10 +00:00
Felix Fietkau
4932368398
kernel: add a patch that reduces module size by removing non-essential information (reduces default rootfs size by ~5k after lzma)
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37255
2013-07-11 20:56:27 +00:00
Felix Fietkau
4b5c5934e1
kernel: debloat the lzma compress/decompress code some more
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37211
2013-07-09 12:52:04 +00:00
Felix Fietkau
51b1e8577c
kernel: do not accept sysrq characters via serial port
...
many boards have a disconnected TTL level serial which can generate
some garbage that can lead to spurious false sysrq detects.
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37210
2013-07-09 12:52:00 +00:00
Jonas Gorski
0d9f760f27
kernel: update linux 3.9 to 3.9.8
...
Includes memory allocation fixes as well as several networking fixes.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 37103
2013-06-30 13:10:12 +00:00
Felix Fietkau
3df61e8279
kernel: fix a reference counting bug in overlayfs
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 37014
2013-06-22 14:00:12 +00:00
Steven Barth
46d199d1e8
linux: add ipv6 failed-policy routing action (by Jonas Gorski)
...
SVN-Revision: 36911
2013-06-11 09:27:53 +00:00
John Crispin
a9968d9cb8
lantiq: enable retrieving kernel args from bootloader
...
This patch is a device tree enhancement that IMHO is worthy of mainline.
It allows the bootloader's commandline to be preserved even when the
device tree specifies one.
Signed-off-by: Daniel Gimpelevich <daniel@gimpelevich.san-francisco.ca.us>
SVN-Revision: 36780
2013-05-30 16:00:42 +00:00
Jonas Gorski
a01be4a217
kernel: update 3.9 to 3.9.3
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 36676
2013-05-20 16:57:00 +00:00
Jonas Gorski
668604f91d
kernel: don't remove of_tables
...
These are needed for OF setup of clocksource, clocks and irqchips.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 36657
2013-05-19 11:27:28 +00:00
Jonas Gorski
0b03ff2028
kernel: make zlib and lzo modules selectable
...
Fixes building kmod-lib-zlib and kmod-lib-lzo if nothing depends on them.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 36592
2013-05-09 20:50:07 +00:00
Jonas Gorski
98f6dc1b43
kernel: allow building zsmalloc as a module again
...
zsmalloc was changed to a bool because of missing exports in the kernel,
but we already export the required symbol, so change it back to tristate.
Closes #13481 .
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 36587
2013-05-09 19:19:36 +00:00
Gabor Juhos
39467e78e7
kernel: update linux 3.9 to 3.9.1
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 36577
2013-05-08 08:53:55 +00:00
Felix Fietkau
30c4360345
kernel: do not strip /proc/net/ip_mr_* in the /proc debloat patch, it is used by iproute2
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36529
2013-05-02 15:59:57 +00:00
Jonas Gorski
8f15326acc
kernel: generic: don't strip /proc/irq on SMP
...
/proc/irq is needed for changing the SMP affinity of interrupts.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 36525
2013-05-02 15:28:12 +00:00
Gabor Juhos
0fa71ca3e5
linux/3.9: implement pcibios_get_phb_of_node for MIPS
...
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 36495
2013-04-30 10:44:08 +00:00
Hauke Mehrtens
e7e4afbb64
kernel: fix a memory leak in split_rootfs_data()
...
allocate_partition() copies all the content of dpart into a new struct.
SVN-Revision: 36475
2013-04-28 17:01:56 +00:00
Hauke Mehrtens
1bac172c44
kernel: update bcma and ssb for kernel 3.8+ to version from wireless-testing master-2013-04-26.
...
SVN-Revision: 36473
2013-04-28 16:52:11 +00:00
Jonas Gorski
ad1d3f00cb
kernel: update linux 3.9 patches to rc8
...
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 36469
2013-04-28 11:55:23 +00:00
Jonas Gorski
a33dd13c98
kernel: add missing bcma defines and header file for bcrmfmac
...
Fixes build failure when having kmod-mmc and brcmfmac selected.
Signed-off-by: Jonas Gorski <jogo@openwrt.org>
SVN-Revision: 36468
2013-04-28 11:10:42 +00:00
Felix Fietkau
a8a01b42ae
kernel: allow __netdev_alloc_skb_ip_align to be called with dev = NULL
...
SVN-Revision: 36378
2013-04-22 15:01:36 +00:00
Felix Fietkau
f58dcb59c6
kernel: backport SSB/BCMA changes in preparation for a compat-wireless update
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36367
2013-04-19 12:39:40 +00:00
Gabor Juhos
e07848664c
linux/3.[89]: update bridge_remove_ipv6_dependency patch
...
Fixes the following warning:
CC [M] net/ipv6/addrconf.o
net/ipv6/addrconf.c: In function 'addrconf_init':
net/ipv6/addrconf.c:4944:2: warning: assignment from incompatible pointer type [enabled by default]
Signed-off-by: Gabor Juhos <juhosg@openwrt.org>
SVN-Revision: 36364
2013-04-19 08:07:37 +00:00
Felix Fietkau
a662200205
kernel: force CONFIG_NET_SCHED=y for fq_codel ( #13360 )
...
SVN-Revision: 36342
2013-04-15 20:40:29 +00:00
Imre Kaloz
57b68daee9
refresh against -rc7
...
SVN-Revision: 36340
2013-04-15 16:10:01 +00:00
Felix Fietkau
edd8048107
kernel: calibrate the TWD timer even when booting with only one CPU, it is used for the watchdog timer base
...
Fixes booting on single-core CNS3xxx devices
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36308
2013-04-10 16:07:50 +00:00
Felix Fietkau
06733c2650
kernel: keep the igmp proc support even with PROC_STRIPPED, some tools still use it
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36307
2013-04-10 13:45:12 +00:00
Felix Fietkau
7fa2957103
kernel: switch default qdisc from pfifo_fast to fq_codel and remove pfifo_fast
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36304
2013-04-10 13:11:29 +00:00
Felix Fietkau
df3d4690bd
kernel: keep dropped stats in fq_codel
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36303
2013-04-10 13:11:25 +00:00
Felix Fietkau
ec3a8846fc
kernel: tune fq_codel defaults for common netdevice speeds
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36302
2013-04-10 13:11:21 +00:00
Felix Fietkau
307965026a
kernel: add patches by Dave Täht to reduce buffer size in longer queues to reduce memory pressure
...
Signed-off-by: Felix Fietkau <nbd@openwrt.org>
SVN-Revision: 36301
2013-04-10 13:11:16 +00:00
Florian Fainelli
915969ff2c
kernel: refresh patches against 3.9-rc6
...
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 36297
2013-04-09 16:16:20 +00:00
Florian Fainelli
c3366cd164
kernel: add support for PMC PM25LQ032 SPI Flash in m25p80.c
...
Add support for PMC PM25LQ032 (4MB) SPI Flash used in Hame MPR-A1 and clones.
Signed-off-by: Michel Stempin <michel.stempin@wanadoo.fr>
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 36296
2013-04-09 16:16:16 +00:00
John Crispin
c838ec2391
Patch for invoking (pre)init
...
http://patchwork.openwrt.org/patch/3485/
Signed-off-by: Michael Heimpold <mhei@heimpold.de>
SVN-Revision: 36183
2013-04-03 10:00:50 +00:00
Imre Kaloz
c90078ce87
refresh patches against -rc4
...
SVN-Revision: 36127
2013-03-25 13:53:48 +00:00