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.
This commit is contained in:
Brian C. Lane 2014-04-24 10:56:41 -07:00
parent 9e15705bb9
commit 08d8f3b2fc
1 changed files with 1 additions and 1 deletions

View File

@ -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)
%>