3cc157e2e3
Add a defconfig for the Starfive VisionFive board, a board built around the Starfive JH7100 RISC-V 64bit SoC (same as Beaglev). This board comes with functional lowlevel and U-Boot bootloaders in SPI flash. The defconfig reuses these and only builds a (6.0 based) kernel and rootfs. The factory shipped U-Boot is hard coded to look at MMC partition 3 and misses some variables, so we provide a uEnv.txt to fix that up, based on what is done in provided Fedora image. Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
22 lines
309 B
INI
22 lines
309 B
INI
# Minimal SD card image for the Starfive VisionFive board
|
|
|
|
image sdcard.img {
|
|
hdimage {
|
|
}
|
|
|
|
# u-boot is hard coded to look at 3rd partition
|
|
partition dummy1 {
|
|
size = 512
|
|
}
|
|
|
|
partition dummy2 {
|
|
size = 512
|
|
}
|
|
|
|
partition rootfs {
|
|
partition-type = 0x83
|
|
image = "rootfs.ext4"
|
|
bootable = "true"
|
|
}
|
|
}
|