summaryrefslogtreecommitdiffstats
path: root/commands
diff options
context:
space:
mode:
authorJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2010-10-08 00:03:47 +0800
committerJean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>2010-10-08 00:03:56 +0800
commit2fbdb02b11ded2619a0ad023910f8160ead5c48a (patch)
tree3b7d58ff844b1ea9edbf0147035c62fe4887be5f /commands
parentad4da3a4a1c817a7ed38de25788fda11496e53a7 (diff)
downloadbarebox-2fbdb02b11ded2619a0ad023910f8160ead5c48a.tar.gz
barebox-2fbdb02b11ded2619a0ad023910f8160ead5c48a.tar.xz
image: rename IH_CPU to IH_ARCH to be more concistant
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com>
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;
}