-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
4 changed files
with
43 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
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
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,39 @@ | ||
/* | ||
* U-Boot uImage source file for "maturin-FU740" | ||
*/ | ||
|
||
/dts-v1/; | ||
|
||
/ { | ||
description = "U-Boot uImage source file for maturin-FU740"; | ||
#address-cells = <1>; | ||
|
||
images { | ||
kernel { | ||
description = "Linux kernel for maturin-FU740"; | ||
data = /incbin/("../alien.bin"); | ||
type = "kernel"; | ||
arch = "riscv"; | ||
os = "linux"; | ||
compression = "none"; | ||
load = <0x80200000>; | ||
entry = <0x80200000>; | ||
}; | ||
fdt { | ||
description = "Flattened Device Tree blob for FU740"; | ||
data = /incbin/("./hifive-unmatched-a00.dtb"); | ||
type = "flat_dt"; | ||
arch = "riscv"; | ||
compression = "none"; | ||
}; | ||
}; | ||
|
||
configurations { | ||
default = "conf"; | ||
conf { | ||
description = "Boot Linux kernel with FDT blob"; | ||
kernel = "kernel"; | ||
fdt = "fdt"; | ||
}; | ||
}; | ||
}; |
Binary file not shown.