-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
conf/evalsoc: add missing uboot_spl.its
Signed-off-by: Huaqi Fang <[email protected]>
- Loading branch information
Showing
1 changed file
with
61 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,61 @@ | ||
/dts-v1/; | ||
|
||
/ { | ||
description = "UBoot SPL Image"; | ||
#address-cells = <2>; | ||
|
||
images { | ||
|
||
opensbi { | ||
description = "OpenSBI Dynamic Firmaware"; | ||
data = /incbin/("opensbi.bin"); | ||
type = "firmware"; | ||
arch = "riscv"; | ||
os = "opensbi"; | ||
load = <0x0 0x80000000>; | ||
entry = <0x0 0x80000000>; | ||
compression = "none"; | ||
hash-1 { | ||
algo = "sha256"; | ||
}; | ||
}; | ||
|
||
uboot { | ||
description = "U-Boot"; | ||
data = /incbin/("u-boot.bin"); | ||
type = "standalone"; | ||
arch = "riscv"; | ||
os = "U-Boot"; | ||
load = <0x0 0x80200000>; | ||
compression = "none"; | ||
hash-1 { | ||
algo = "sha256"; | ||
}; | ||
}; | ||
|
||
fdt { | ||
description = "Firmware DTB"; | ||
data = /incbin/("fdt.dtb"); | ||
type = "flat_dt"; | ||
arch = "riscv"; | ||
load = <0x0 0x88000000>; | ||
compression = "none"; | ||
hash-1 { | ||
algo = "sha256"; | ||
}; | ||
}; | ||
}; | ||
|
||
configurations { | ||
default = "boot"; | ||
|
||
boot { | ||
description = "UBoot SPL"; | ||
firmware = "opensbi"; | ||
loadables = "uboot"; | ||
fdt = "fdt"; | ||
}; | ||
|
||
}; | ||
}; | ||
|