From 169a2c849170dbd84138cf36018cacb3cbbd5266 Mon Sep 17 00:00:00 2001 From: Ikey Doherty Date: Tue, 18 Oct 2016 20:06:13 +0100 Subject: [PATCH] postinstall: Use goofiboot's newly corrected --force option This ensures that even if goofiboot recieves an invalid file system header, i.e. OEM laptops that inexplicably set BIOS boot flag on an ESP, we still proceed with the installation, using our fallback paths to disable variables. This will ensure no more goofiboot installation failures due to ESP verification failure. Signed-off-by: Ikey Doherty --- os_installer2/postinstall.py | 1 + 1 file changed, 1 insertion(+) diff --git a/os_installer2/postinstall.py b/os_installer2/postinstall.py index b8a37b8..6009e6e 100644 --- a/os_installer2/postinstall.py +++ b/os_installer2/postinstall.py @@ -817,6 +817,7 @@ def apply_uefi(self): updated_uefi = False for cmd in commands: + cmd += " --force" try: subprocess.check_call(cmd, shell=True) updated_uefi = True