From 4c9cc7b8f3090c9e183a7f4deed5ac9840d0a0d0 Mon Sep 17 00:00:00 2001 From: rootzoll Date: Mon, 13 Jan 2025 22:21:11 +0100 Subject: [PATCH] skup boot flag check --- home.admin/config.scripts/blitz.data.sh | 4 ---- 1 file changed, 4 deletions(-) diff --git a/home.admin/config.scripts/blitz.data.sh b/home.admin/config.scripts/blitz.data.sh index a8173b07e..3e8fc30c9 100644 --- a/home.admin/config.scripts/blitz.data.sh +++ b/home.admin/config.scripts/blitz.data.sh @@ -693,10 +693,6 @@ if [ "$1" = "setup" ]; then parted /dev/${setupDevice} --script set 1 boot on parted /dev/${setupDevice} --script set 1 esp on isFlagSetBOOT=$(parted /dev/${setupDevice} --script print | grep -c 'fat32.*boot') - if [ ${isFlagSetBOOT} -eq 0 ]; then - echo "error='failed to set BOOT flag'" - exit 1 - fi isFlagSetESP=$(parted /dev/${setupDevice} --script print | grep -c 'fat32.*esp') if [ ${isFlagSetESP} -eq 0 ]; then echo "error='failed to set ESP flag'"