8219955118
This defconfig enables edk2 UEFI shell and grub2 riscv64-efi boot of a Linux Kernel. Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
35 lines
560 B
INI
35 lines
560 B
INI
image efi-part.vfat {
|
|
vfat {
|
|
file EFI {
|
|
image = "efi-part/EFI"
|
|
}
|
|
|
|
file Image {
|
|
image = "Image"
|
|
}
|
|
}
|
|
|
|
size = 64M
|
|
}
|
|
|
|
image disk.img {
|
|
hdimage {
|
|
partition-table-type = "gpt"
|
|
}
|
|
|
|
partition boot {
|
|
image = "efi-part.vfat"
|
|
partition-type-uuid = U
|
|
offset = 32K
|
|
bootable = true
|
|
}
|
|
|
|
partition root {
|
|
# For partition-type-uuid value, see:
|
|
# https://uapi-group.org/specifications/specs/discoverable_partitions_specification/
|
|
# SD_GPT_ROOT_RISCV64
|
|
partition-type-uuid = 72ec70a6-cf74-40e6-bd49-4bda08e8f224
|
|
image = "rootfs.ext2"
|
|
}
|
|
}
|