Files
device_rockchip/rk356x/boot4recovery.its
Hans Yang f03f1c0454 rk356x: first init for rk356x buildroot
1/ the main config info:
  RK_UBOOT_DEFCONFIG: rk3568
  RK_KERNEL_DEFCONFIG: rockchip_linux_defconfig
  RK_KERNEL_DTS: rk3568-evb1-ddr4-v10-linux
  RK_CFG_BUILDROOT: rockchip_rk356x
  RK_CFG_RECOVERY: rockchip_rk356x_recovery
2/ use fit image format to pack boot and recovery image
  RK_KERNEL_FIT_ITS: boot.its
  RK_RECOVERY_FIT_ITS: boot4recovery.its
3/ add parameter-buildroot-fit.txt for buildroot fit

Change-Id: I1ebdd7fbf14a5baf1e49149dc53a988a4dadba6a
Signed-off-by: Hans Yang <yhx@rock-chips.com>
2020-10-26 16:29:14 +08:00

82 lines
1.7 KiB
Plaintext

/*
* Copyright (C) 2020 Rockchip Electronics Co., Ltd
*
* SPDX-License-Identifier: GPL-2.0
*/
/dts-v1/;
/ {
description = "U-Boot FIT source file for arm";
images {
fdt {
data = /incbin/("kernel/arch/arm64/boot/dts/rk3568-evb1-ddr4-v10-linux.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0xffffff00>;
hash {
algo = "sha256";
};
};
kernel {
data = /incbin/("kernel/arch/arm64/boot/Image");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "none";
entry = <0xffffff01>;
load = <0xffffff01>;
hash {
algo = "sha256";
};
};
ramdisk {
data = /incbin/("out/ramdisk");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "none";
load = <0xffffff02>;
hash {
algo = "sha256";
};
};
resource {
data = /incbin/("kernel/resource.img");
type = "multi";
arch = "arm64";
compression = "none";
hash {
algo = "sha256";
};
};
};
configurations {
default = "conf";
conf {
rollback-index = <0x00>;
fdt = "fdt";
kernel = "kernel";
ramdisk = "ramdisk";
multi = "resource";
signature {
algo = "sha256,rsa2048";
padding = "pss";
key-name-hint = "dev";
sign-images = "fdt", "kernel", "ramdisk", "multi";
};
};
};
};