From 08d8f3b2fc6fe2cc6e90364f6c328822deff8817 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Thu, 24 Apr 2014 10:56:41 -0700 Subject: [PATCH] Turn on debug output for mkefiboot mkefiboot uses pylorax.imgutils, in order to capture information about umount problems it needs to be run with --debug. This triggers the fuser call to show what is holding the mount open. --- share/efi.tmpl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/share/efi.tmpl b/share/efi.tmpl index 47a328dd..4faea90d 100644 --- a/share/efi.tmpl +++ b/share/efi.tmpl @@ -28,7 +28,7 @@ ${make_efiboot("images/efiboot.img")} <% kdir = EFIBOOTDIR if include_kernel else KERNELDIR eficonf = "%s/grub.cfg" % (EFIBOOTDIR, ) - args = "--label=ANACONDA" + args = "--label=ANACONDA --debug" if disk: args += " --disk" if imgtype == "apple": args += ' --apple --icon=%s --diskname=%s --product="%s %s"' % (APPLE_EFI_ICON, APPLE_EFI_DISKNAME, product.name, product.version) %>