293196b2ba
This patch adds the defconfig file needed to build u-boot, kernel and rootfs for the Rock 5B. In addition it adds a kernel config fragment file, which activates the needed ethernet driver support. It also adds a readme and post image scripts, needed to generate an sdcard.img file, which can be flashed on an SD card to boot the Radxa Rock 5B. Signed-off-by: Kilian Zinnecker <kilian.zinnecker@mail.de> [yann.morin.1998@free.fr: - drop custom version - fix shellcheck in post-image script ] Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
47 lines
746 B
Plaintext
47 lines
746 B
Plaintext
/dts-v1/;
|
|
|
|
/ {
|
|
description = "Rock 5B FIT Image";
|
|
#address-cells = <1>;
|
|
|
|
images {
|
|
kernel {
|
|
description = "Kernel";
|
|
data = /incbin/("Image.gz");
|
|
type = "kernel";
|
|
arch = "arm64";
|
|
os = "linux";
|
|
compression = "gzip";
|
|
load = <0x0a200000>;
|
|
entry = <0x0a200000>;
|
|
hash {
|
|
algo = "sha256";
|
|
};
|
|
};
|
|
fdt {
|
|
description = "Device Tree";
|
|
data = /incbin/("rk3588-rock-5b.dtb");
|
|
type = "flat_dt";
|
|
arch = "arm64";
|
|
compression = "none";
|
|
load = <0x0e000000>;
|
|
entry = <0x0e000000>;
|
|
hash {
|
|
algo = "sha256";
|
|
};
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
default = "standard";
|
|
standard {
|
|
description = "Standard Boot";
|
|
kernel = "kernel";
|
|
fdt = "fdt";
|
|
hash {
|
|
algo = "sha256";
|
|
};
|
|
};
|
|
};
|
|
};
|