summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2010-09-23 06:48:42 +0200
committerSascha Hauer <s.hauer@pengutronix.de>2010-09-23 09:55:50 +0200
commitaba80a2d2d0f1b25185246925577ce2108247dde (patch)
tree7f1f172bc57a84c5ef081bd7f90545045d07587f /commands
parent7bd7d59e60f3f23862ebc09c9f3527ee24b2960f (diff)
downloadbarebox-aba80a2d2d0f1b25185246925577ce2108247dde.tar.gz
barebox-aba80a2d2d0f1b25185246925577ce2108247dde.tar.xz
image: rename IH_CPU to IH_ARCH to be more concistant
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
Diffstat (limited to 'commands')
-rw-r--r--commands/bootm.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/commands/bootm.c b/commands/bootm.c
index 604f5cc977..a64f67879d 100644
--- a/commands/bootm.c
+++ b/commands/bootm.c
@@ -330,7 +330,7 @@ static int do_bootm(struct command *cmdtp, int argc, char *argv[])
os_header = &os_handle->header;
- if (os_header->ih_arch != IH_CPU) {
+ if (os_header->ih_arch != IH_ARCH) {
printf ("Unsupported Architecture 0x%x\n", os_header->ih_arch);
goto err_out;
}