mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-07 21:54:45 +00:00
66a503c700
Update to fix warning: u-boot.itb.tmp: Warning (unit_address_vs_reg): Node /images/uboot@1 has a unit name, but no reg property u-boot.itb.tmp: Warning (unit_address_vs_reg): Node /images/optee@1 has a unit name, but no reg property u-boot.itb.tmp: Warning (unit_address_vs_reg): Node /images/fdt@1 has a unit name, but no reg property u-boot.itb.tmp: Warning (unit_address_vs_reg): Node /configurations/conf@1 has a unit name, but no reg property Signed-off-by: Kever Yang <kever.yang@rock-chips.com>
50 lines
936 B
Text
50 lines
936 B
Text
/*
|
|
* Copyright (C) 2017 Rockchip Electronic Co.,Ltd
|
|
*
|
|
* Simple U-boot fit source file containing U-Boot, dtb and optee
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
description = "Simple image with OP-TEE support";
|
|
#address-cells = <1>;
|
|
|
|
images {
|
|
uboot {
|
|
description = "U-Boot";
|
|
data = /incbin/("../../../u-boot-nodtb.bin");
|
|
type = "standalone";
|
|
os = "U-Boot";
|
|
arch = "arm";
|
|
compression = "none";
|
|
load = <0x61000000>;
|
|
};
|
|
optee {
|
|
description = "OP-TEE";
|
|
data = /incbin/("../../../tee.bin");
|
|
type = "firmware";
|
|
arch = "arm";
|
|
os = "tee";
|
|
compression = "none";
|
|
load = <0x68400000>;
|
|
entry = <0x68400000>;
|
|
};
|
|
fdt {
|
|
description = "dtb";
|
|
data = /incbin/("../../../u-boot.dtb");
|
|
type = "flat_dt";
|
|
compression = "none";
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
default = "conf";
|
|
conf {
|
|
description = "Rockchip armv7 with OP-TEE";
|
|
firmware = "optee";
|
|
loadables = "uboot";
|
|
fdt = "fdt";
|
|
};
|
|
};
|
|
};
|