From: Daniel Schwierzeck Date: Tue, 26 Feb 2013 04:54:19 +0000 (+0000) Subject: bootm: fix conditional compilation for bootm ramdisk subcommand X-Git-Tag: v2013.04-rc1~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=59af76d9ccccea43b9e07d78291bdf99e759c59a;p=platform%2Fkernel%2Fu-boot.git bootm: fix conditional compilation for bootm ramdisk subcommand All code related to the bootm ramdisk subcommand is conditionally enabled by CONFIG_SYS_BOOT_RAMDISK_HIGH except for the help message. Replace the CONFIG_ARCH defines by CONFIG_SYS_BOOT_RAMDISK_HIGH to fix this. Signed-off-by: Daniel Schwierzeck --- diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c index b32991d..2e93352 100644 --- a/common/cmd_bootm.c +++ b/common/cmd_bootm.c @@ -1056,7 +1056,7 @@ static char bootm_help_text[] = "issued in the order below (it's ok to not issue all sub-commands):\n" "\tstart [addr [arg ...]]\n" "\tloados - load OS image\n" -#if defined(CONFIG_PPC) || defined(CONFIG_M68K) || defined(CONFIG_SPARC) +#if defined(CONFIG_SYS_BOOT_RAMDISK_HIGH) "\tramdisk - relocate initrd, set env initrd_start/initrd_end\n" #endif #if defined(CONFIG_OF_LIBFDT)