Configure GRUB in dpkg

This commit is contained in:
Fierelier 2023-08-22 15:12:13 +02:00
parent c486d6b550
commit 2d76d6334e
2 changed files with 21 additions and 1 deletions

View File

@ -1 +0,0 @@
GRUB_DISABLE_OS_PROBER=false

View File

@ -83,6 +83,14 @@ def callList(*args,**kwargs):
def getDisks():
return callList(["lsblk","-ndo","PATH"])
def getDiskId(diskPath):
for root,dirs,files in os.walk("/dev/disk/by-id"):
for file in files:
if os.path.realpath("/dev/disk/by-id/" +file) == diskPath:
return "/dev/disk/by-id/" +file
break
return diskPath
def getPartitions():
disks = getDisks()
partitions = callList(["lsblk","-no","PATH"])
@ -196,6 +204,14 @@ def randhex(length):
cLength += 1
return output
def debconfSetSelections(root,options):
proc = subprocess.Popen(["chroot",root,"debconf-set-selections"],stdin=subprocess.PIPE)
proc.stdin.write((options + "\n").encode("utf-8"))
proc.stdin.flush()
proc.stdin.close()
rtn = proc.wait()
if rtn != 0: raise Exception("Process returned error: " +str(rtn))
def main():
while choiceYn("Partition disk?"):
try:
@ -388,6 +404,11 @@ def main():
if installGRUB:
print("> Installing GRUB")
debconfSetSelections(ipth(),"grub-pc grub-pc/install_devices multiselect " +getDiskId(grubDisk))
debconfSetSelections(ipth(),"grub-pc grub2/enable_os_prober boolean true")
os.environ["DEBIAN_FRONTEND"] = "noninteractive"
chroot(ipth(),["dpkg-reconfigure","grub-pc"])
del os.environ["DEBIAN_FRONTEND"]
if gptInfo["isGPT"]:
if gptInfo["espPart"] != None: