From: Eugene Konev Date: Mon, 19 Mar 2007 17:25:06 +0000 (+0000) Subject: Remove initrd code leftovers. Also fixes "Bad page state" on boot (kernel tried to... X-Git-Tag: reboot~29698 X-Git-Url: http://git.openwrt.org/?a=commitdiff_plain;ds=sidebyside;h=f04dd67969a38e54002c20828acf93090c4d10a4;hp=62c5b1c4eff59959c895bfce42974f0c09d6c4c3;p=openwrt%2Fstaging%2Fchunkeey.git Remove initrd code leftovers. Also fixes "Bad page state" on boot (kernel tried to free initramfs twice). SVN-Revision: 6613 --- diff --git a/target/linux/ar7-2.6/config/default b/target/linux/ar7-2.6/config/default index ca12194201..888a446ee0 100644 --- a/target/linux/ar7-2.6/config/default +++ b/target/linux/ar7-2.6/config/default @@ -7,6 +7,7 @@ CONFIG_AR7_WDT=y # CONFIG_ATMEL is not set CONFIG_BASE_SMALL=0 # CONFIG_BCM43XX is not set +# CONFIG_BLK_DEV_INITRD is not set CONFIG_BOOT_ELF32=y CONFIG_CMDLINE="console=ttyS0,38400n8r root=/dev/mtdblock3 init=/etc/preinit" CONFIG_CPMAC=y diff --git a/target/linux/ar7-2.6/files/arch/mips/ar7/memory.c b/target/linux/ar7-2.6/files/arch/mips/ar7/memory.c index ea5b5bee77..17cb740b3f 100644 --- a/target/linux/ar7-2.6/files/arch/mips/ar7/memory.c +++ b/target/linux/ar7-2.6/files/arch/mips/ar7/memory.c @@ -25,7 +25,6 @@ */ #include #include -#include #include #include #include @@ -68,8 +67,6 @@ static int __init memsize(void) return result; } -extern unsigned long __initramfs_start, __initramfs_end; - #ifdef CONFIG_NEED_MULTIPLE_NODES static bootmem_data_t node_bootmem_data; pg_data_t __node_data[1] = { @@ -176,11 +173,6 @@ void __init prom_meminit(void) unsigned long bootmap_size; #endif -#ifdef CONFIG_BLK_DEV_INITRD - initrd_start = (unsigned long)&__initramfs_start; - initrd_end = (unsigned long)&__initramfs_end; -#endif - pages = memsize() >> PAGE_SHIFT; add_memory_region(ARCH_PFN_OFFSET << PAGE_SHIFT, pages << PAGE_SHIFT, BOOT_MEM_RAM);