Initial commit

This commit is contained in:
2026-03-20 22:58:57 +08:00
parent 3cee9af22b
commit 9c97871f97
11 changed files with 284 additions and 1 deletions

45
board.its Normal file
View File

@@ -0,0 +1,45 @@
/dts-v1/;
/ {
description = "LS1046A-RDB FIT Image";
#address-cells = <1>;
images {
kernel {
description = "ARM64 Kernel";
data = /incbin/("Image.gz");
type = "kernel";
arch = "arm64";
os = "linux";
compression = "gzip";
load = <0x84080000>;
entry = <0x84080000>;
};
fdt {
description = "DTB";
data = /incbin/("fsl-ls1046a-rdb-sdk.dtb");
type = "flat_dt";
arch = "arm64";
compression = "none";
load = <0x90000000>;
};
initrd {
description = "Initrd";
data = /incbin/("initramfs.cpio.gz");
type = "ramdisk";
arch = "arm64";
os = "linux";
compression = "gzip";
};
};
configurations {
default = "standard";
standard {
description = "Standard Boot";
kernel = "kernel";
fdt = "fdt";
ramdisk = "initrd";
};
};
};