Initial commit

This commit is contained in:
Administrator
2021-03-17 20:00:17 +08:00
committed by Andy Hu
commit c47c340fa2
48 changed files with 4029 additions and 0 deletions

View File

@@ -0,0 +1,58 @@
/dts-v1/;
/ {
description = "U-boot FIT image for HiFive Unleashed";
#address-cells = <2>;
images {
bbl {
description = "BBL/SBI/riscv-pk";
data = /incbin/("../work/bbl.bin");
type = "kernel";
arch = "riscv";
os = "linux";
load = <0x80000000>;
entry = <0x80000000>;
compression = "none";
hash-1 {
algo = "sha256";
};
};
ramdisk {
description = "buildroot initramfs";
data = /incbin/("../work/initramfs.cpio.gz");
type = "ramdisk";
arch = "riscv";
os = "linux";
load = <0x82000000>;
compression = "gzip";
hash-1 {
algo = "sha256";
};
};
fdt {
data = /incbin/("../work/u-boot/arch/riscv/dts/hifive_u540_nvdla_iofpga.dtb");
type = "flat_dt";
arch = "riscv";
load = <0x81f00000>;
compression = "none";
hash-1 {
algo = "sha256";
};
};
};
configurations {
default = "config-1";
config-1 {
description = "HiFive Unleashed with BBL";
kernel = "bbl";
fdt = "fdt";
loadables = "ramdisk";
};
};
};