2008-10-01 13:26:31 +00:00
|
|
|
/*
|
|
|
|
* Example Automatic software update file.
|
|
|
|
*/
|
2009-11-04 21:37:59 +00:00
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
2008-10-01 13:26:31 +00:00
|
|
|
/ {
|
|
|
|
description = "Automatic software updates: kernel, ramdisk, FDT";
|
|
|
|
#address-cells = <1>;
|
|
|
|
|
|
|
|
images {
|
2017-12-04 02:05:08 +00:00
|
|
|
update-1 {
|
2008-10-01 13:26:31 +00:00
|
|
|
description = "Linux kernel binary";
|
|
|
|
data = /incbin/("./vmlinux.bin.gz");
|
|
|
|
compression = "none";
|
|
|
|
type = "firmware";
|
|
|
|
load = <FF700000>;
|
2017-12-04 02:05:08 +00:00
|
|
|
hash-1 {
|
2008-10-01 13:26:31 +00:00
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
2017-12-04 02:05:08 +00:00
|
|
|
update-2 {
|
2008-10-01 13:26:31 +00:00
|
|
|
description = "Ramdisk image";
|
|
|
|
data = /incbin/("./ramdisk_image.gz");
|
|
|
|
compression = "none";
|
|
|
|
type = "firmware";
|
|
|
|
load = <FF8E0000>;
|
2017-12-04 02:05:08 +00:00
|
|
|
hash-1 {
|
2008-10-01 13:26:31 +00:00
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
2017-12-04 02:05:08 +00:00
|
|
|
update-3 {
|
2008-10-01 13:26:31 +00:00
|
|
|
description = "FDT blob";
|
|
|
|
data = /incbin/("./blob.fdt");
|
|
|
|
compression = "none";
|
|
|
|
type = "firmware";
|
|
|
|
load = <FFAC0000>;
|
2017-12-04 02:05:08 +00:00
|
|
|
hash-1 {
|
2008-10-01 13:26:31 +00:00
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|