summaryrefslogtreecommitdiffstats
path: root/common
diff options
context:
space:
mode:
authorDaniel Schwierzeck <daniel.schwierzeck@gmail.com>2013-02-26 04:54:19 +0000
committerTom Rini <trini@ti.com>2013-03-04 14:19:56 -0500
commit59af76d9ccccea43b9e07d78291bdf99e759c59a (patch)
treefef0cca9bbf662849ae3a09fae9bb221c9331595 /common
parent18a3cce9fa9030e0e1fe0678ddcd0ae84d9423ca (diff)
downloadblackbird-obmc-uboot-59af76d9ccccea43b9e07d78291bdf99e759c59a.tar.gz
blackbird-obmc-uboot-59af76d9ccccea43b9e07d78291bdf99e759c59a.zip
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 <daniel.schwierzeck@gmail.com>
Diffstat (limited to 'common')
-rw-r--r--common/cmd_bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/common/cmd_bootm.c b/common/cmd_bootm.c
index b32991da0d..2e9335207c 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)
OpenPOWER on IntegriCloud