summaryrefslogtreecommitdiff
path: root/test/vboot/sign-images-sha256.its
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2016-07-03 09:40:46 -0600
committerTom Rini <trini@konsulko.com>2016-07-14 18:22:40 -0400
commit8729d582595dc0a9a666310f9f6001f815684f73 (patch)
treea1733a592f196e4307e5ccd1d34f6496db3b4e2f /test/vboot/sign-images-sha256.its
parent1152a05ee6593bf3036337cd18edd355589ea3a8 (diff)
downloadu-boot-imx-8729d582595dc0a9a666310f9f6001f815684f73.zip
u-boot-imx-8729d582595dc0a9a666310f9f6001f815684f73.tar.gz
u-boot-imx-8729d582595dc0a9a666310f9f6001f815684f73.tar.bz2
test: Convert the vboot test to test/py
Now that we have a suitable test framework we should move all tests into it. The vboot test is a suitable candidate. Rewrite it in Python and move the data files into an appropriate directory. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'test/vboot/sign-images-sha256.its')
-rw-r--r--test/vboot/sign-images-sha256.its42
1 files changed, 0 insertions, 42 deletions
diff --git a/test/vboot/sign-images-sha256.its b/test/vboot/sign-images-sha256.its
deleted file mode 100644
index e6aa9fc..0000000
--- a/test/vboot/sign-images-sha256.its
+++ /dev/null
@@ -1,42 +0,0 @@
-/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>;
- signature@1 {
- algo = "sha256,rsa2048";
- key-name-hint = "dev";
- };
- };
- fdt@1 {
- description = "snow";
- data = /incbin/("sandbox-kernel.dtb");
- type = "flat_dt";
- arch = "sandbox";
- compression = "none";
- fdt-version = <1>;
- signature@1 {
- algo = "sha256,rsa2048";
- key-name-hint = "dev";
- };
- };
- };
- configurations {
- default = "conf@1";
- conf@1 {
- kernel = "kernel@1";
- fdt = "fdt@1";
- };
- };
-};