aboutsummaryrefslogtreecommitdiff
path: root/doc/uImage.FIT/update_uboot.its
diff options
context:
space:
mode:
authorSimon Glass2023-06-23 13:22:04 +0100
committerHeinrich Schuchardt2023-06-23 16:28:13 +0200
commitba399ce2142ab14c772ca258fa10276095846835 (patch)
tree405c78749d48f9393231e89b5019dfb10d16f419 /doc/uImage.FIT/update_uboot.its
parent829fb8b5dc99b33156ad00d77a1385bbb3520896 (diff)
doc: Bring in the FIT examples
Convert these to rST format and add them to the index. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'doc/uImage.FIT/update_uboot.its')
-rw-r--r--doc/uImage.FIT/update_uboot.its24
1 files changed, 0 insertions, 24 deletions
diff --git a/doc/uImage.FIT/update_uboot.its b/doc/uImage.FIT/update_uboot.its
deleted file mode 100644
index aec48260081..00000000000
--- a/doc/uImage.FIT/update_uboot.its
+++ /dev/null
@@ -1,24 +0,0 @@
-/*
- * Automatic software update for U-Boot
- * Make sure the flashing addresses ('load' prop) is correct for your board!
- */
-
-/dts-v1/;
-
-/ {
- description = "Automatic U-Boot update";
- #address-cells = <1>;
-
- images {
- update-1 {
- description = "U-Boot binary";
- data = /incbin/("./u-boot.bin");
- compression = "none";
- type = "firmware";
- load = <0xFFFC0000>;
- hash-1 {
- algo = "sha1";
- };
- };
- };
-};