mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-13 06:42:56 +00:00
65 lines
1.2 KiB
Text
65 lines
1.2 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.18.0-rc1";
|
||
|
data = /incbin/("./qcs404_imgs/Image.gz");
|
||
|
type = "kernel";
|
||
|
arch = "arm64";
|
||
|
os = "linux";
|
||
|
compression = "gzip";
|
||
|
load = <0x80000000>;
|
||
|
entry = <0x80000000>;
|
||
|
hash-1 {
|
||
|
algo = "sha1";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
ramdisk-1 {
|
||
|
description = "Initial ramdisk";
|
||
|
data = /incbin/("./qcs404_imgs/initramfs-tiny-image-qemuarm64-20220618074058-1169.rootfs.cpio.gz");
|
||
|
type = "ramdisk";
|
||
|
arch = "arm64";
|
||
|
os = "linux";
|
||
|
compression = "gzip";
|
||
|
load = <00000000>;
|
||
|
entry = <00000000>;
|
||
|
hash-1 {
|
||
|
algo = "sha1";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
fdt-1 {
|
||
|
description = "qcs404-evb-fdt";
|
||
|
data = /incbin/("./qcs404_imgs/qcs404-evb-4000.dtb");
|
||
|
type = "flat_dt";
|
||
|
arch = "arm64";
|
||
|
compression = "none";
|
||
|
load = <0x83000000>;
|
||
|
hash-1 {
|
||
|
algo = "sha1";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
};
|
||
|
|
||
|
configurations {
|
||
|
default = "config-1";
|
||
|
|
||
|
config-1 {
|
||
|
description = "qcs404-evb kernel-5.18.0-rc1 configuration";
|
||
|
kernel = "kernel-1";
|
||
|
ramdisk = "ramdisk-1";
|
||
|
fdt = "fdt-1";
|
||
|
};
|
||
|
};
|
||
|
};
|