2008-03-12 11:13:13 +00:00
|
|
|
/*
|
2016-02-06 03:30:11 +00:00
|
|
|
* Simple U-Boot uImage source file containing a single kernel and FDT blob
|
2008-03-12 11:13:13 +00:00
|
|
|
*/
|
2009-11-04 21:37:59 +00:00
|
|
|
|
|
|
|
/dts-v1/;
|
|
|
|
|
2008-03-12 11:13:13 +00:00
|
|
|
/ {
|
|
|
|
description = "Simple image with single Linux kernel and FDT blob";
|
|
|
|
#address-cells = <1>;
|
|
|
|
|
|
|
|
images {
|
2017-12-04 02:05:08 +00:00
|
|
|
kernel {
|
2008-03-12 11:13:13 +00:00
|
|
|
description = "Vanilla Linux kernel";
|
|
|
|
data = /incbin/("./vmlinux.bin.gz");
|
|
|
|
type = "kernel";
|
|
|
|
arch = "ppc";
|
|
|
|
os = "linux";
|
|
|
|
compression = "gzip";
|
|
|
|
load = <00000000>;
|
|
|
|
entry = <00000000>;
|
2017-12-04 02:05:08 +00:00
|
|
|
hash-1 {
|
2008-03-12 11:13:13 +00:00
|
|
|
algo = "crc32";
|
|
|
|
};
|
2017-12-04 02:05:08 +00:00
|
|
|
hash-2 {
|
2008-03-12 11:13:13 +00:00
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
2017-12-04 02:05:08 +00:00
|
|
|
fdt-1 {
|
2008-03-12 11:13:13 +00:00
|
|
|
description = "Flattened Device Tree blob";
|
|
|
|
data = /incbin/("./target.dtb");
|
|
|
|
type = "flat_dt";
|
|
|
|
arch = "ppc";
|
|
|
|
compression = "none";
|
2017-12-04 02:05:08 +00:00
|
|
|
hash-1 {
|
2008-03-12 11:13:13 +00:00
|
|
|
algo = "crc32";
|
|
|
|
};
|
2017-12-04 02:05:08 +00:00
|
|
|
hash-2 {
|
2008-03-12 11:13:13 +00:00
|
|
|
algo = "sha1";
|
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|
|
|
|
|
|
|
|
configurations {
|
2017-12-04 02:05:08 +00:00
|
|
|
default = "conf-1";
|
|
|
|
conf-1 {
|
2008-03-12 11:13:13 +00:00
|
|
|
description = "Boot Linux kernel with FDT blob";
|
2017-12-04 02:05:08 +00:00
|
|
|
kernel = "kernel";
|
|
|
|
fdt = "fdt-1";
|
2008-03-12 11:13:13 +00:00
|
|
|
};
|
|
|
|
};
|
|
|
|
};
|