kernel.its dtb added for minnie c100p

This commit is contained in:
rak-zero 2020-02-23 08:56:22 +01:00 committed by SolidHal
parent b14b4acf9b
commit 6291b1b6ba

View File

@ -4,7 +4,7 @@
description = "Linux-libre kernel image with one or more FDT blobs"; description = "Linux-libre kernel image with one or more FDT blobs";
#address-cells = <1>; #address-cells = <1>;
images { images {
kernel { kernel@1 {
description = "vmlinuz"; description = "vmlinuz";
data = /incbin/("arch/arm/boot/zImage"); data = /incbin/("arch/arm/boot/zImage");
type = "kernel_noload"; type = "kernel_noload";
@ -17,7 +17,7 @@
algo = "sha1"; algo = "sha1";
}; };
}; };
fdt { fdt@1 {
description = "dtb"; description = "dtb";
data = /incbin/("arch/arm/boot/dts/rk3288-veyron-speedy.dtb"); data = /incbin/("arch/arm/boot/dts/rk3288-veyron-speedy.dtb");
type = "flat_dt"; type = "flat_dt";
@ -27,12 +27,26 @@
algo = "sha1"; algo = "sha1";
}; };
}; };
fdt@2 {
description = "dtb";
data = /incbin/("arch/arm/boot/dts/rk3288-veyron-minnie.dtb");
type = "flat_dt";
arch = "arm";
compression = "none";
hash {
algo = "sha1";
};
};
}; };
configurations { configurations {
default = "conf"; default = "conf@1";
conf{ conf@1{
kernel = "kernel"; kernel = "kernel@1";
fdt = "fdt"; fdt = "fdt@1";
};
conf@2{
kernel = "kernel@1";
fdt = "fdt@2";
}; };
}; };
}; };