Fix hybrid spelling (#1548)

Fix misspelled word "hybrid" for hybrid GPT/MBR partition tables.
This commit is contained in:
Stefan Agner
2021-09-20 13:44:45 +02:00
committed by GitHub
parent 66d5957310
commit 7d187405de
9 changed files with 11 additions and 11 deletions

View File

@@ -179,8 +179,8 @@ function _create_disk_gpt() {
dd if="${data_img}" of="${hdd_img}" conv=notrunc,sparse bs=512 seek="${data_offset}"
# Set Hyprid partition
if [ "${BOOT_SYS}" == "hyprid" ]; then
_fix_disk_hyprid
if [ "${BOOT_SYS}" == "hybrid" ]; then
_fix_disk_hybrid
fi
# Write SPL
@@ -264,7 +264,7 @@ function _create_disk_mbr() {
}
function _fix_disk_hyprid() {
function _fix_disk_hybrid() {
local hdd_img="$(hassos_image_name img)"
sgdisk -t 1:"E3C9E316-0B5C-4DB8-817D-F92DF00215AE" "${hdd_img}"