mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-30 12:33:02 +02:00
Ensure that whenever U-Boot is built: - The chosen signing key and is converted to the expected format and installed in the build tree. - Infix's environment extensions are installed in the build tree
25 lines
410 B
Plaintext
25 lines
410 B
Plaintext
/dts-v1/;
|
|
|
|
/ {
|
|
description = "dummy to convert keys in PEM format for inclusion in U-Boot's control DT";
|
|
creator = "infix";
|
|
#address-cells = <0x1>;
|
|
|
|
images {
|
|
ramdisk {
|
|
description = "null";
|
|
type = "ramdisk";
|
|
os = "linux";
|
|
compression = "none";
|
|
data = /incbin/("/dev/null");
|
|
|
|
signature-1 {
|
|
algo = "sha256,rsa4096";
|
|
key-name-hint = "infix";
|
|
};
|
|
};
|
|
};
|
|
|
|
configurations {};
|
|
};
|