summaryrefslogtreecommitdiffstats
path: root/bootloader.py
diff options
context:
space:
mode:
authorBill Nottingham <notting@redhat.com>2001-08-10 01:15:39 +0000
committerBill Nottingham <notting@redhat.com>2001-08-10 01:15:39 +0000
commit9829483791222625d2314659e4bc2b7833b1dfb3 (patch)
tree3ea5d347cef2687b1dcddc60d8ee9ee5600477c7 /bootloader.py
parent4a358f6032596348e61ab03e2ba405eeedbeba4c (diff)
downloadanaconda-9829483791222625d2314659e4bc2b7833b1dfb3.tar.gz
anaconda-9829483791222625d2314659e4bc2b7833b1dfb3.tar.xz
anaconda-9829483791222625d2314659e4bc2b7833b1dfb3.zip
add '-w' option to efibootmgr invocation, so that a disk id gets written (#50717)
Diffstat (limited to 'bootloader.py')
-rw-r--r--bootloader.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/bootloader.py b/bootloader.py
index 4c2adde52..175b560f2 100644
--- a/bootloader.py
+++ b/bootloader.py
@@ -330,7 +330,7 @@ class ia64BootloaderInfo(bootloaderInfo):
if bootdisk[0:4] == "ida/" or bootdisk[0:6] == "cciss/" or bootdisk[0:3] == "rd/":
bootdisk = bootdisk[:-1]
- argv = [ "/usr/sbin/efibootmgr", "-c" , "-L",
+ argv = [ "/usr/sbin/efibootmgr", "-c" , "-w", "-L",
"Red Hat Linux", "-d", "/dev/%s" % bootdisk, "-p", bootpart ]
iutil.execWithRedirect(argv[0], argv, root = instRoot,
stdout = "/dev/tty5",