mkefiboot: clarify construction of dm partition dev
This commit is contained in:
parent
3f709325ef
commit
ad25ae85cb
@ -36,8 +36,9 @@ def mkefidisk(efiboot, outfile):
|
|||||||
"unit", "b",
|
"unit", "b",
|
||||||
"mkpart", "'EFI System Partition'", "fat32", "17408", str(partsize),
|
"mkpart", "'EFI System Partition'", "fat32", "17408", str(partsize),
|
||||||
"set", "1", "boot", "on"], stdout=PIPE, stderr=PIPE)
|
"set", "1", "boot", "on"], stdout=PIPE, stderr=PIPE)
|
||||||
|
partdev = "/dev/mapper/{0}p1".format(dmdev)
|
||||||
with open(efiboot, "rb") as infile:
|
with open(efiboot, "rb") as infile:
|
||||||
with open("/dev/mapper/%sp1" % dmdev, "wb") as outfile:
|
with open(partdev, "wb") as outfile:
|
||||||
outfile.write(infile.read())
|
outfile.write(infile.read())
|
||||||
dm_detach(dmdev+"p1")
|
dm_detach(dmdev+"p1")
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user