rockchip: its: add image name property

Used by scripts/fit-unpack.sh

Signed-off-by: Joseph Chen <chenjh@rock-chips.com>
Change-Id: Idbe18ce7737d6df8d145393cd081adb2642106fb
This commit is contained in:
Joseph Chen 2020-04-13 10:18:10 +08:00
parent 61fbe583d5
commit 4dbccc141e
3 changed files with 11 additions and 1 deletions

View File

@ -14,6 +14,7 @@
images {
fdt@1 {
description = "Device tree blob for arm";
image = "rk-kernel.dtb";
data = /incbin/("images/rk-kernel.dtb");
type = "flat_dt";
arch = "arm";
@ -26,6 +27,7 @@
kernel@1 {
description = "Kernel for arm";
image = "kernel.img";
data = /incbin/("images/kernel.img");
type = "kernel";
arch = "arm";
@ -40,6 +42,7 @@
ramdisk@1 {
description = "Ramdisk for arm";
image = "ramdisk.img";
data = /incbin/("images/ramdisk.img");
type = "ramdisk";
arch = "arm";
@ -53,6 +56,7 @@
resource@1 {
description = "Resource for arm";
image = "resource.img";
data = /incbin/("images/resource.img");
type = "multi";
arch = "arm";

View File

@ -14,6 +14,7 @@
images {
fdt@1 {
description = "Device tree blob for arm64";
image = "rk-kernel.dtb";
data = /incbin/("images/rk-kernel.dtb");
type = "flat_dt";
arch = "arm64";
@ -26,7 +27,7 @@
kernel@1 {
description = "Kernel for arm64";
kernel-version = <1>;
image = "kernel.img";
data = /incbin/("images/kernel.img");
type = "kernel";
arch = "arm64";
@ -41,6 +42,7 @@
ramdisk@1 {
description = "Ramdisk for arm64";
image = "ramdisk.img";
data = /incbin/("images/ramdisk.img");
type = "ramdisk";
arch = "arm64";
@ -54,6 +56,7 @@
resource@1 {
description = "Resource for arm64";
image = "resource.img";
data = /incbin/("images/resource.img");
type = "multi";
arch = "arm64";

View File

@ -16,6 +16,7 @@ cat << EOF
images {
uboot@1 {
description = "U-Boot";
image = "u-boot-nodtb.bin";
data = /incbin/("./u-boot-nodtb.bin");
type = "standalone";
os = "U-Boot";
@ -34,6 +35,7 @@ cat << EOF
};
optee@1 {
description = "OP-TEE";
image = "tee.bin";
data = /incbin/("./tee.bin");
type = "firmware";
arch = "arm";
@ -57,6 +59,7 @@ cat << EOF
};
fdt@1 {
description = "U-Boot dtb";
image = "u-boot.dtb";
data = /incbin/("./u-boot.dtb");
type = "flat_dt";
compression = "none";