-
Notifications
You must be signed in to change notification settings - Fork 210
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #379 from shzhxh/master
修改Makefile以减小测试镜像的大小;添加星光开发板所需的二进制以优化编译步骤
- Loading branch information
Showing
4 changed files
with
46 additions
and
2 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
Binary file not shown.
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 "zCore-visionfive" | ||
*/ | ||
|
||
/dts-v1/; | ||
|
||
/ { | ||
description = "U-Boot uImage source file for zCore-visionfive"; | ||
#address-cells = <1>; | ||
|
||
images { | ||
kernel { | ||
description = "Linux kernel for zCore-visionfive"; | ||
data = /incbin/("../../../zcore.bin.gz"); | ||
type = "kernel"; | ||
arch = "riscv"; | ||
os = "linux"; | ||
compression = "gzip"; | ||
load = <0x80200000>; | ||
entry = <0x80200000>; | ||
}; | ||
fdt { | ||
description = "Flattened Device Tree blob for zCore-visionfive"; | ||
data = /incbin/("./starfive.dtb"); | ||
type = "flat_dt"; | ||
arch = "riscv"; | ||
compression = "none"; | ||
}; | ||
}; | ||
|
||
configurations { | ||
default = "conf"; | ||
conf { | ||
description = "Boot Linux kernel with FDT blob"; | ||
kernel = "kernel"; | ||
fdt = "fdt"; | ||
}; | ||
}; | ||
}; |