diff options
author | Florian Fainelli <florian@openwrt.org> | 2012-11-16 16:32:33 +0000 |
---|---|---|
committer | Florian Fainelli <florian@openwrt.org> | 2012-11-16 16:32:33 +0000 |
commit | 8ad0b56ba50fa759d9c9747f9f931903da58c021 (patch) | |
tree | d87fe4a4cd2cac77e082aee3642442abe84f8b0b /target | |
parent | 19811eddb419cdb926fbd6c2987e6fb2f0333d87 (diff) | |
download | upstream-8ad0b56ba50fa759d9c9747f9f931903da58c021.tar.gz upstream-8ad0b56ba50fa759d9c9747f9f931903da58c021.tar.bz2 upstream-8ad0b56ba50fa759d9c9747f9f931903da58c021.zip |
do not build crashlog on sparc too
This is crashing the kernel in crashlog_init_fs(), until fixed, disable it
for SPARC too.
Signed-off-by: Florian Fainelli <florian@openwrt.org>
SVN-Revision: 34213
Diffstat (limited to 'target')
-rw-r--r-- | target/linux/generic/patches-3.3/930-crashlog.patch | 2 | ||||
-rw-r--r-- | target/linux/generic/patches-3.6/930-crashlog.patch | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/target/linux/generic/patches-3.3/930-crashlog.patch b/target/linux/generic/patches-3.3/930-crashlog.patch index bce0ea40cc..6c208f0bc2 100644 --- a/target/linux/generic/patches-3.3/930-crashlog.patch +++ b/target/linux/generic/patches-3.3/930-crashlog.patch @@ -26,7 +26,7 @@ +config CRASHLOG + bool "Crash logging" -+ depends on (!NO_BOOTMEM || HAVE_MEMBLOCK) && !ARM ++ depends on (!NO_BOOTMEM || HAVE_MEMBLOCK) && !(ARM || SPARC) + config BLK_DEV_INITRD bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support" diff --git a/target/linux/generic/patches-3.6/930-crashlog.patch b/target/linux/generic/patches-3.6/930-crashlog.patch index b5eaba5ed4..41afaee079 100644 --- a/target/linux/generic/patches-3.6/930-crashlog.patch +++ b/target/linux/generic/patches-3.6/930-crashlog.patch @@ -26,7 +26,7 @@ +config CRASHLOG + bool "Crash logging" -+ depends on (!NO_BOOTMEM || HAVE_MEMBLOCK) && !ARM ++ depends on (!NO_BOOTMEM || HAVE_MEMBLOCK) && !(ARM || SPARC) + config BLK_DEV_INITRD bool "Initial RAM filesystem and RAM disk (initramfs/initrd) support" |