diff options
author | Simon Glass <sjg@chromium.org> | 2011-12-10 11:07:57 +0000 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2012-03-18 20:59:53 +0100 |
commit | 5e41088364582b6435f6d7a6e6d7a36f3fa94701 (patch) | |
tree | 336ab30de3a1a9c706d23a132c67b92eef4cec37 /include | |
parent | 5dc887164e031dbd6544031eb4dcb8e5c4ddeb13 (diff) | |
download | u-boot-imx-5e41088364582b6435f6d7a6e6d7a36f3fa94701.zip u-boot-imx-5e41088364582b6435f6d7a6e6d7a36f3fa94701.tar.gz u-boot-imx-5e41088364582b6435f6d7a6e6d7a36f3fa94701.tar.bz2 |
bootstage: Convert progress numbers 10-19 to enums
Signed-off-by: Simon Glass <sjg@chromium.org>
Acked-by: Mike Frysinger <vapier@gentoo.org>
Diffstat (limited to 'include')
-rw-r--r-- | include/bootstage.h | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/include/bootstage.h b/include/bootstage.h index 408356c..29082eb 100644 --- a/include/bootstage.h +++ b/include/bootstage.h @@ -58,6 +58,13 @@ enum bootstage_id { BOOTSTAGE_ID_BOOT_OS_RETURNED, /* Tried to boot OS, but it returned */ BOOTSTAGE_ID_CHECK_RAMDISK = 9, /* Checking ram disk */ + BOOTSTAGE_ID_RD_MAGIC, /* Checking ram disk magic */ + BOOTSTAGE_ID_RD_HDR_CHECKSUM, /* Checking ram disk heder checksum */ + BOOTSTAGE_ID_RD_CHECKSUM, /* Checking ram disk checksum */ + BOOTSTAGE_ID_COPY_RAMDISK = 12, /* Copying ram disk into place */ + BOOTSTAGE_ID_RAMDISK, /* Checking for valid ramdisk */ + BOOTSTAGE_ID_NO_RAMDISK, /* No ram disk found (not an error) */ + BOOTSTAGE_ID_RUN_OS = 15, /* Exiting U-Boot, entering OS */ }; |