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:
parent
9e15705bb9
commit
08d8f3b2fc
@ -28,7 +28,7 @@ ${make_efiboot("images/efiboot.img")}
|
|||||||
<%
|
<%
|
||||||
kdir = EFIBOOTDIR if include_kernel else KERNELDIR
|
kdir = EFIBOOTDIR if include_kernel else KERNELDIR
|
||||||
eficonf = "%s/grub.cfg" % (EFIBOOTDIR, )
|
eficonf = "%s/grub.cfg" % (EFIBOOTDIR, )
|
||||||
args = "--label=ANACONDA"
|
args = "--label=ANACONDA --debug"
|
||||||
if disk: args += " --disk"
|
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)
|
if imgtype == "apple": args += ' --apple --icon=%s --diskname=%s --product="%s %s"' % (APPLE_EFI_ICON, APPLE_EFI_DISKNAME, product.name, product.version)
|
||||||
%>
|
%>
|
||||||
|
Loading…
Reference in New Issue
Block a user