diff options
author | Simon Glass <sjg@chromium.org> | 2013-06-13 15:10:11 -0700 |
---|---|---|
committer | Tom Rini <trini@ti.com> | 2013-06-26 10:18:57 -0400 |
commit | 041bca5ba3adb48750d0a438cb3b1356a0c2e603 (patch) | |
tree | bfacb381648f7c324b6737ca4c6ab5de40f13ba3 /test/vboot/sign-configs.its | |
parent | 74378cf8e730d794832678a5d2f4d2d67da3ad47 (diff) | |
download | u-boot-imx-041bca5ba3adb48750d0a438cb3b1356a0c2e603.zip u-boot-imx-041bca5ba3adb48750d0a438cb3b1356a0c2e603.tar.gz u-boot-imx-041bca5ba3adb48750d0a438cb3b1356a0c2e603.tar.bz2 |
Add verified boot information and test
Add a description of how to implement verified boot using signed FIT images,
and a simple test which verifies operation on sandbox.
The test signs a FIT image and verifies it, then signs a FIT configuration
and verifies it. Then it corrupts the signature to check that this is
detected.
Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/vboot/sign-configs.its')
-rw-r--r-- | test/vboot/sign-configs.its | 45 |
1 files changed, 45 insertions, 0 deletions
diff --git a/test/vboot/sign-configs.its b/test/vboot/sign-configs.its new file mode 100644 index 0000000..db2ed79 --- /dev/null +++ b/test/vboot/sign-configs.its @@ -0,0 +1,45 @@ +/dts-v1/; + +/ { + description = "Chrome OS kernel image with one or more FDT blobs"; + #address-cells = <1>; + + images { + kernel@1 { + data = /incbin/("test-kernel.bin"); + type = "kernel_noload"; + arch = "sandbox"; + os = "linux"; + compression = "none"; + load = <0x4>; + entry = <0x8>; + kernel-version = <1>; + hash@1 { + algo = "sha1"; + }; + }; + fdt@1 { + description = "snow"; + data = /incbin/("sandbox-kernel.dtb"); + type = "flat_dt"; + arch = "sandbox"; + compression = "none"; + fdt-version = <1>; + hash@1 { + algo = "sha1"; + }; + }; + }; + configurations { + default = "conf@1"; + conf@1 { + kernel = "kernel@1"; + fdt = "fdt@1"; + signature@1 { + algo = "sha1,rsa2048"; + key-name-hint = "dev"; + sign-images = "fdt", "kernel"; + }; + }; + }; +}; |