forked from OERV-BSP/u-boot
The test can run on sandbox build and it attempts to execute a firmware update via a capsule-on-disk, using a FIT image capsule, CONFIG_EFI_CAPSULE_FIT. To run this test successfully, you need configure U-Boot specifically; See test_capsule_firmware.py for requirements, and hence it won't run on Travis CI, at least, for now. Signed-off-by: AKASHI Takahiro <takahiro.akashi@linaro.org>
37 lines
692 B
Plaintext
37 lines
692 B
Plaintext
/*
|
|
* Automatic software update for U-Boot
|
|
* Make sure the flashing addresses ('load' prop) is correct for your board!
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
description = "Automatic U-Boot environment update";
|
|
#address-cells = <2>;
|
|
|
|
images {
|
|
u-boot-bin@100000 {
|
|
description = "U-Boot binary on SPI Flash";
|
|
data = /incbin/("BINFILE1");
|
|
compression = "none";
|
|
type = "firmware";
|
|
arch = "sandbox";
|
|
load = <0>;
|
|
hash-1 {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
u-boot-env@150000 {
|
|
description = "U-Boot environment on SPI Flash";
|
|
data = /incbin/("BINFILE2");
|
|
compression = "none";
|
|
type = "firmware";
|
|
arch = "sandbox";
|
|
load = <0>;
|
|
hash-1 {
|
|
algo = "sha1";
|
|
};
|
|
};
|
|
};
|
|
};
|