aboutsummaryrefslogtreecommitdiff
path: root/cmd/booti.c
diff options
context:
space:
mode:
authorEddie James <eajames@linux.ibm.com>2023-10-24 10:43:50 -0500
committerIlias Apalodimas <ilias.apalodimas@linaro.org>2023-10-27 13:15:57 +0300
commitdec166d6b2c28d971394ebe1bc0ac70b88b575c0 (patch)
treeef358001d2c0b68a23a24bb42fbf2c96b187f22c /cmd/booti.c
parent97707f12fdabf5fab5942504dab711a665854942 (diff)
bootm: Support boot measurement
Add a configuration option to measure the boot through the bootm function. Add the measurement state to the booti and bootz paths as well. Signed-off-by: Eddie James <eajames@linux.ibm.com> Reviewed-by: Simon Glass <sjg@chromium.org> Ilias: Added some info on Kconfig explaining this is when booting !EFI Signed-off-by: Ilias Apalodimas <ilias.apalodimas@linaro.org>
Diffstat (limited to 'cmd/booti.c')
-rw-r--r--cmd/booti.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/cmd/booti.c b/cmd/booti.c
index 6ac39193db..659bb10549 100644
--- a/cmd/booti.c
+++ b/cmd/booti.c
@@ -127,6 +127,7 @@ int do_booti(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[])
#ifdef CONFIG_SYS_BOOT_RAMDISK_HIGH
BOOTM_STATE_RAMDISK |
#endif
+ BOOTM_STATE_MEASURE |
BOOTM_STATE_OS_PREP | BOOTM_STATE_OS_FAKE_GO |
BOOTM_STATE_OS_GO,
&images, 1);