Skip to content
This repository was archived by the owner on Aug 5, 2022. It is now read-only.
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 3 additions & 3 deletions meta-refkit/classes/image-dsk.bbclass
Original file line number Diff line number Diff line change
Expand Up @@ -75,23 +75,23 @@ DSK_IMAGE_LAYOUT ??= ' \
"partition_01_primary_uefi_boot": { \
"name": "primary_uefi", \
"uuid": 0, \
"size_mb": 15, \
"size_mb": 32, \
"source": "${IMAGE_ROOTFS}/boot/", \
"filesystem": "vfat", \
"type": "${PARTITION_TYPE_EFI}" \
}, \
"partition_02_secondary_uefi_boot": { \
"name": "secondary_uefi", \
"uuid": 0, \
"size_mb": 15, \
"size_mb": 32, \
"source": "${IMAGE_ROOTFS}/boot/", \
"filesystem": "vfat", \
"type": "${PARTITION_TYPE_EFI_BACKUP}" \
}, \
"partition_03_rootfs": { \
"name": "rootfs", \
"uuid": "${REMOVABLE_MEDIA_ROOTFS_PARTUUID_VALUE}", \
"size_mb": 3700, \
"size_mb": 3968, \
"source": "${IMAGE_ROOTFS}", \
"filesystem": "ext4", \
"type": "8300" \
Expand Down
6 changes: 3 additions & 3 deletions meta-refkit/wic/refkit-directdisk.wks.in
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
# EFI stub, kernel, kernel cmdline, and the initrd

bootloader --ptable gpt
part --source rootfs --rootfs-dir=${IMAGE_ROOTFS}/boot --fstype=vfat --fixed-size 30M --label primary_uefi --part-type C12A7328-F81F-11D2-BA4B-00A0C93EC93B --align 1024 --use-uuid
part --source rootfs --rootfs-dir=${IMAGE_ROOTFS}/boot --fstype=vfat --fixed-size 30M --label secondary_uefi --part-type E3C9E316-0B5C-4DB8-817D-F92DF00215AE --align 1024 --use-uuid
part / --source rootfs --fixed-size 3700M --fstype=ext4 --label rootfs --align 1024 --uuid ${REMOVABLE_MEDIA_ROOTFS_PARTUUID_VALUE}
part --source rootfs --rootfs-dir=${IMAGE_ROOTFS}/boot --fstype=vfat --fixed-size 32M --label primary_uefi --part-type C12A7328-F81F-11D2-BA4B-00A0C93EC93B --align 1024 --use-uuid
part --source rootfs --rootfs-dir=${IMAGE_ROOTFS}/boot --fstype=vfat --fixed-size 32M --label secondary_uefi --part-type E3C9E316-0B5C-4DB8-817D-F92DF00215AE --align 1024 --use-uuid
part / --source rootfs --fixed-size 3968M --fstype=ext4 --label rootfs --align 1024 --uuid ${REMOVABLE_MEDIA_ROOTFS_PARTUUID_VALUE}