mirror of
https://github.com/kernelkit/infix.git
synced 2026-07-22 01:13:00 +02:00
Store FIT headers separately on aux, and place the raw SquashFS images on primary/secondary. This removes the need to muck about with the device mapper to setup the rootfs, and it allows us to boot using syslinux files.
29 lines
411 B
Plaintext
29 lines
411 B
Plaintext
/dts-v1/;
|
|
|
|
/ {
|
|
description = "Infix";
|
|
creator = "infix";
|
|
#address-cells = <0x1>;
|
|
|
|
images {
|
|
rootfs {
|
|
description = "Infix";
|
|
type = "ramdisk";
|
|
os = "linux";
|
|
compression = "none";
|
|
data = /incbin/("rootfs.squashfs");
|
|
signature-1 {
|
|
algo = "sha256,rsa4096";
|
|
key-name-hint = "infix";
|
|
};
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
default = "verity";
|
|
verity {
|
|
ramdisk = "rootfs";
|
|
};
|
|
};
|
|
};
|