mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-19 09:43:08 +00:00
64 lines
1.3 KiB
Text
64 lines
1.3 KiB
Text
|
/*
|
||
|
* U-Boot uImage source file with multiple kernels, ramdisks and FDT blobs
|
||
|
*/
|
||
|
|
||
|
/dts-v1/;
|
||
|
|
||
|
/ {
|
||
|
description = "Various kernels, ramdisks and FDT blobs";
|
||
|
#address-cells = <1>;
|
||
|
|
||
|
images {
|
||
|
kernel-1 {
|
||
|
description = "5.15.0-qcomlt-arm64";
|
||
|
data = /incbin/("./db845c_imgs/Image.gz--5.15-r0-dragonboard-845c-20211218193034-511.bin");
|
||
|
type = "kernel";
|
||
|
arch = "arm64";
|
||
|
os = "linux";
|
||
|
compression = "gzip";
|
||
|
load = <0x80000000>;
|
||
|
entry = <0x80000000>;
|
||
|
hash-1 {
|
||
|
algo = "sha1";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
ramdisk-1 {
|
||
|
description = "initramfs-test-full-image-dragonboard-845c";
|
||
|
data = /incbin/("./db845c_imgs/initramfs-test-full-image-dragonboard-845c-20211218193034-511.rootfs.cpio.gz");
|
||
|
type = "ramdisk";
|
||
|
arch = "arm64";
|
||
|
os = "linux";
|
||
|
compression = "gzip";
|
||
|
load = <00000000>;
|
||
|
entry = <00000000>;
|
||
|
hash-1 {
|
||
|
algo = "sha1";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
fdt-1 {
|
||
|
description = "sdm845-db845c-fdt";
|
||
|
data = /incbin/("./db845c_imgs/sdm845-db845c--5.15-r0-dragonboard-845c-20211218193034.dtb");
|
||
|
type = "flat_dt";
|
||
|
arch = "arm64";
|
||
|
compression = "none";
|
||
|
hash-1 {
|
||
|
algo = "sha1";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
configurations {
|
||
|
default = "config-1";
|
||
|
|
||
|
config-1 {
|
||
|
description = "db845c kernel-5.15.0 configuration";
|
||
|
kernel = "kernel-1";
|
||
|
ramdisk = "ramdisk-1";
|
||
|
fdt = "fdt-1";
|
||
|
};
|
||
|
};
|
||
|
};
|