35635cdc5b
This patch adds a new defconfig for the Star64 board made by Pine64. This board is based on the Starfive JH7110 RISC-V 64 bits SoC. See: https://wiki.pine64.org/wiki/STAR64. This patch uses a custom Kernel and U-Boot made for this board. The SPL has to be signed with the Starfive SPL-Tool which is a software provided by the vendor to get the necessary headers on the SPL. The image configuration is based on the work done by Ivan Velickovic <i.velickovic@unsw.edu.au>. Signed-off-by: Thomas Bonnefille <thomas.bonnefille@bootlin.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
30 lines
504 B
Plaintext
30 lines
504 B
Plaintext
/dts-v1/;
|
|
|
|
/ {
|
|
description = "U-boot-spl FIT image for JH7110 Pine64 Star64";
|
|
#address-cells = <2>;
|
|
|
|
images {
|
|
firmware {
|
|
description = "u-boot";
|
|
data = /incbin/("fw_payload.bin");
|
|
type = "firmware";
|
|
arch = "riscv";
|
|
os = "u-boot";
|
|
load = <0x0 0x40000000>;
|
|
entry = <0x0 0x40000000>;
|
|
compression = "none";
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
default = "config-1";
|
|
|
|
config-1 {
|
|
description = "U-boot-spl FIT config for JH7110 Pine64 Star64";
|
|
firmware = "firmware";
|
|
};
|
|
};
|
|
};
|
|
|