diff options
Diffstat (limited to 'init')
-rw-r--r-- | init/initramfs.c | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/init/initramfs.c b/init/initramfs.c index 1db02a0025db..d53fee8d8604 100644 --- a/init/initramfs.c +++ b/init/initramfs.c | |||
@@ -503,7 +503,6 @@ static int __init retain_initrd_param(char *str) | |||
503 | __setup("retain_initrd", retain_initrd_param); | 503 | __setup("retain_initrd", retain_initrd_param); |
504 | 504 | ||
505 | extern char __initramfs_start[], __initramfs_end[]; | 505 | extern char __initramfs_start[], __initramfs_end[]; |
506 | #ifdef CONFIG_BLK_DEV_INITRD | ||
507 | #include <linux/initrd.h> | 506 | #include <linux/initrd.h> |
508 | #include <linux/kexec.h> | 507 | #include <linux/kexec.h> |
509 | 508 | ||
@@ -539,15 +538,12 @@ skip: | |||
539 | initrd_end = 0; | 538 | initrd_end = 0; |
540 | } | 539 | } |
541 | 540 | ||
542 | #endif | ||
543 | |||
544 | static int __init populate_rootfs(void) | 541 | static int __init populate_rootfs(void) |
545 | { | 542 | { |
546 | char *err = unpack_to_rootfs(__initramfs_start, | 543 | char *err = unpack_to_rootfs(__initramfs_start, |
547 | __initramfs_end - __initramfs_start, 0); | 544 | __initramfs_end - __initramfs_start, 0); |
548 | if (err) | 545 | if (err) |
549 | panic(err); | 546 | panic(err); |
550 | #ifdef CONFIG_BLK_DEV_INITRD | ||
551 | if (initrd_start) { | 547 | if (initrd_start) { |
552 | #ifdef CONFIG_BLK_DEV_RAM | 548 | #ifdef CONFIG_BLK_DEV_RAM |
553 | int fd; | 549 | int fd; |
@@ -579,7 +575,6 @@ static int __init populate_rootfs(void) | |||
579 | free_initrd(); | 575 | free_initrd(); |
580 | #endif | 576 | #endif |
581 | } | 577 | } |
582 | #endif | ||
583 | return 0; | 578 | return 0; |
584 | } | 579 | } |
585 | rootfs_initcall(populate_rootfs); | 580 | rootfs_initcall(populate_rootfs); |