From 5ad184f943bfad4541387b32ffba24cbd53c7d06 Mon Sep 17 00:00:00 2001 From: Pascal Vizeli Date: Sat, 11 Aug 2018 11:02:15 +0000 Subject: [PATCH] os: use hyprid for SPL to fix windows --- buildroot-external/scripts/hdd-image.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/buildroot-external/scripts/hdd-image.sh b/buildroot-external/scripts/hdd-image.sh index 8f1faba26..c8734fd6a 100755 --- a/buildroot-external/scripts/hdd-image.sh +++ b/buildroot-external/scripts/hdd-image.sh @@ -167,6 +167,7 @@ function fix_disk_image_spl() { local spl_img="${BINARIES_DIR}/spl.img" sgdisk -t 1:"E3C9E316-0B5C-4DB8-817D-F92DF00215AE" ${hdd_img} + dd if=${BR2_EXTERNAL_HASSOS_PATH}/misc/mbr-spl.img of=${hdd_img} conv=notrunc bs=512 count=1 dd if=${spl_img} of=${hdd_img} conv=notrunc bs=512 seek=2 }