1
0
mirror of git://projects.qi-hardware.com/openwrt-xburst.git synced 2025-04-21 12:27:27 +03:00

Remove initrd code leftovers. Also fixes "Bad page state" on boot

(kernel tried to free initramfs twice).


git-svn-id: svn://svn.openwrt.org/openwrt/trunk@6613 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
ejka
2007-03-19 17:25:06 +00:00
parent a039e7c295
commit 83cf826ce2
2 changed files with 1 additions and 8 deletions

View File

@@ -25,7 +25,6 @@
*/
#include <linux/bootmem.h>
#include <linux/init.h>
#include <linux/initrd.h>
#include <linux/mm.h>
#include <linux/module.h>
#include <linux/pfn.h>
@@ -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);