mirror of
https://xff.cz/git/u-boot/
synced 2025-08-31 16:22:36 +02:00
This is without the SD controller support, because I have a broken uSD slot on my board. Until that's fixed, it needs to be disabled. Signed-off-by: Ondrej Jirman <megi@xff.cz>
48 lines
882 B
Plaintext
48 lines
882 B
Plaintext
/dts-v1/;
|
|
/ {
|
|
description = "Firmware image with one or more FDT blobs";
|
|
#address-cells = <1>;
|
|
|
|
images {
|
|
firmware-1 {
|
|
description = "U-Boot";
|
|
type = "firmware";
|
|
arch = "arm";
|
|
os = "u-boot";
|
|
compression = "none";
|
|
load = <0x4000000>;
|
|
entry = <0x4000000>;
|
|
data = /incbin/("u-boot-nodtb.bin");
|
|
};
|
|
|
|
fdt-1 {
|
|
description = "zynq-ebaz-megi";
|
|
type = "flat_dt";
|
|
arch = "arm";
|
|
compression = "none";
|
|
data = /incbin/("arch/arm/dts/zynq-ebaz-megi.dtb");
|
|
};
|
|
|
|
fpga-1 {
|
|
description = "bitstream";
|
|
compatible = "u-boot,fpga-legacy";
|
|
type = "fpga";
|
|
arch = "arm";
|
|
load = <0x1000000>;
|
|
compression = "none";
|
|
data = /incbin/("fpga.bin");
|
|
};
|
|
};
|
|
|
|
configurations {
|
|
default = "conf-1";
|
|
|
|
conf-1 {
|
|
description = "zynq-ebaz-megi";
|
|
firmware = "firmware-1";
|
|
loadables = "fpga-1", "firmware-1";
|
|
fdt = "fdt-1";
|
|
};
|
|
};
|
|
};
|