Add qemu 2.4.0
[kvmfornfv.git] / qemu / roms / u-boot / doc / uImage.FIT / update_uboot.its
diff --git a/qemu/roms/u-boot/doc/uImage.FIT/update_uboot.its b/qemu/roms/u-boot/doc/uImage.FIT/update_uboot.its
new file mode 100644 (file)
index 0000000..846723e
--- /dev/null
@@ -0,0 +1,24 @@
+/*
+ * 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 = <FFFC0000>;
+                       hash@1 {
+                               algo = "sha1";
+                       };
+               };
+       };
+};