mirror of
https://source.denx.de/u-boot/u-boot.git
synced 2025-08-24 08:01:21 +02:00
These have ended up with the same numbers as earlier files. Fix them. Signed-off-by: Simon Glass <sjg@chromium.org>
26 lines
495 B
Plaintext
26 lines
495 B
Plaintext
// SPDX-License-Identifier: GPL-2.0+
|
|
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
#address-cells = <1>;
|
|
#size-cells = <1>;
|
|
|
|
binman {
|
|
ti-secure-rom {
|
|
content = <&unsecure_binary>;
|
|
content-sbl = <&unsecure_binary>;
|
|
content-sysfw = <&unsecure_binary>;
|
|
content-sysfw-data = <&unsecure_binary>;
|
|
content-sysfw-inner-cert = <&unsecure_binary>;
|
|
content-dm-data = <&unsecure_binary>;
|
|
combined;
|
|
sysfw-inner-cert;
|
|
dm-data;
|
|
};
|
|
unsecure_binary: blob-ext {
|
|
filename = "ti_unsecure.bin";
|
|
};
|
|
};
|
|
};
|