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 | 141f8f453dd07c381dd7b1c464a82df8caa9e4eb (patch) | |
tree | b1d7c69d5e693c5cc94cbf5b7a65d11dabb470f5 /target/linux/generic | |
parent | f41d3cd6be04d7ed69426b8988cb3a11ba6d2d4d (diff) | |
download | upstream-141f8f453dd07c381dd7b1c464a82df8caa9e4eb.tar.gz upstream-141f8f453dd07c381dd7b1c464a82df8caa9e4eb.tar.bz2 upstream-141f8f453dd07c381dd7b1c464a82df8caa9e4eb.zip |
[kernel] 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>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34213 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/generic')
-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" |