rockchip: add arm 32/64 its file for verified-boot image
Signed-off-by: Joseph Chen <chenjh@rock-chips.com> Change-Id: If4d76b8736510ca6455a4b448e9d2ed1be5721fe
This commit is contained in:
parent
bfbe87590f
commit
8e3eb57c1c
|
@ -0,0 +1,82 @@
|
|||
/*
|
||||
* Copyright (C) 2020 Fuzhou Rockchip Electronics Co., Ltd
|
||||
*
|
||||
* Minimal dts for a FIT image.
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*/
|
||||
|
||||
/dts-v1/;
|
||||
/ {
|
||||
description = "U-Boot FIT source file for arm";
|
||||
#address-cells = <1>;
|
||||
|
||||
images {
|
||||
fdt@1 {
|
||||
description = "Device tree blob for arm";
|
||||
data = /incbin/("images/rk-kernel.dtb");
|
||||
type = "flat_dt";
|
||||
arch = "arm";
|
||||
compression = "none";
|
||||
load = <0xffffff00>;
|
||||
hash@1 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
|
||||
kernel@1 {
|
||||
description = "Kernel for arm";
|
||||
data = /incbin/("images/kernel.img");
|
||||
type = "kernel";
|
||||
arch = "arm";
|
||||
os = "linux";
|
||||
compression = "none";
|
||||
entry = <0xffffff01>;
|
||||
load = <0xffffff01>;
|
||||
hash@1 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
|
||||
ramdisk@1 {
|
||||
description = "Ramdisk for arm";
|
||||
data = /incbin/("images/ramdisk.img");
|
||||
type = "ramdisk";
|
||||
arch = "arm";
|
||||
os = "linux";
|
||||
compression = "none";
|
||||
load = <0xffffff02>;
|
||||
hash@1 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
|
||||
resource@1 {
|
||||
description = "Resource for arm";
|
||||
data = /incbin/("images/resource.img");
|
||||
type = "multi";
|
||||
arch = "arm";
|
||||
compression = "none";
|
||||
hash@1 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
configurations {
|
||||
default = "conf@1";
|
||||
conf@1 {
|
||||
description = "Boot Linux kernel with FDT blob";
|
||||
conf-version = <1>;
|
||||
fdt = "fdt@1";
|
||||
kernel = "kernel@1";
|
||||
ramdisk = "ramdisk@1";
|
||||
multi = "resource@1";
|
||||
signature@1 {
|
||||
algo = "sha256,rsa2048";
|
||||
key-name-hint = "dev";
|
||||
sign-images = "fdt", "kernel", "ramdisk", "multi";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
|
@ -0,0 +1,83 @@
|
|||
/*
|
||||
* Copyright (C) 2020 Fuzhou Rockchip Electronics Co., Ltd
|
||||
*
|
||||
* Minimal dts for a FIT image.
|
||||
*
|
||||
* SPDX-License-Identifier: GPL-2.0
|
||||
*/
|
||||
|
||||
/dts-v1/;
|
||||
/ {
|
||||
description = "U-Boot FIT source file for arm64";
|
||||
#address-cells = <1>;
|
||||
|
||||
images {
|
||||
fdt@1 {
|
||||
description = "Device tree blob for arm64";
|
||||
data = /incbin/("images/rk-kernel.dtb");
|
||||
type = "flat_dt";
|
||||
arch = "arm64";
|
||||
compression = "none";
|
||||
load = <0xffffff00>;
|
||||
hash@1 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
|
||||
kernel@1 {
|
||||
description = "Kernel for arm64";
|
||||
kernel-version = <1>;
|
||||
data = /incbin/("images/kernel.img");
|
||||
type = "kernel";
|
||||
arch = "arm64";
|
||||
os = "linux";
|
||||
compression = "none";
|
||||
entry = <0xffffff01>;
|
||||
load = <0xffffff01>;
|
||||
hash@1 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
|
||||
ramdisk@1 {
|
||||
description = "Ramdisk for arm64";
|
||||
data = /incbin/("images/ramdisk.img");
|
||||
type = "ramdisk";
|
||||
arch = "arm64";
|
||||
os = "linux";
|
||||
compression = "none";
|
||||
load = <0xffffff02>;
|
||||
hash@1 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
|
||||
resource@1 {
|
||||
description = "Resource for arm64";
|
||||
data = /incbin/("images/resource.img");
|
||||
type = "multi";
|
||||
arch = "arm64";
|
||||
compression = "none";
|
||||
hash@1 {
|
||||
algo = "sha256";
|
||||
};
|
||||
};
|
||||
};
|
||||
|
||||
configurations {
|
||||
default = "conf@1";
|
||||
conf@1 {
|
||||
description = "Boot Linux kernel with FDT blob";
|
||||
conf-version = <1>;
|
||||
fdt = "fdt@1";
|
||||
kernel = "kernel@1";
|
||||
ramdisk = "ramdisk@1";
|
||||
multi = "resource@1";
|
||||
signature@1 {
|
||||
algo = "sha256,rsa2048";
|
||||
key-name-hint = "dev";
|
||||
sign-images = "fdt", "kernel", "ramdisk", "multi";
|
||||
};
|
||||
};
|
||||
};
|
||||
};
|
Loading…
Reference in New Issue