summaryrefslogtreecommitdiffstats
path: root/bootloader.py
diff options
context:
space:
mode:
authorChris Lumens <clumens@redhat.com>2006-11-10 18:37:05 +0000
committerChris Lumens <clumens@redhat.com>2006-11-10 18:37:05 +0000
commit8cabe08f8326a1a4071ebd1e0996950ec98517e1 (patch)
treecd32a73037a52c3fd9b7ae1147b183e25589193d /bootloader.py
parent9fcd2cb682c842a821356fd6b3aef1c7935d4c43 (diff)
downloadanaconda-8cabe08f8326a1a4071ebd1e0996950ec98517e1.tar.gz
anaconda-8cabe08f8326a1a4071ebd1e0996950ec98517e1.tar.xz
anaconda-8cabe08f8326a1a4071ebd1e0996950ec98517e1.zip
If the kickstart file specified a drive order, pass that to booty (#214881).
Diffstat (limited to 'bootloader.py')
-rw-r--r--bootloader.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/bootloader.py b/bootloader.py
index ba25dcf9c..8bb6c1d06 100644
--- a/bootloader.py
+++ b/bootloader.py
@@ -40,7 +40,10 @@ def bootloaderSetupChoices(anaconda):
if flags.livecd:
return
- anaconda.id.bootloader.updateDriveList()
+ if anaconda.id.ksdata:
+ anaconda.id.bootloader.updateDriveList(anaconda.id.ksdata.bootloader["driveorder"])
+ else:
+ anaconda.id.bootloader.updateDriveList()
# iSeries bootloader on upgrades
if iutil.getPPCMachine() == "iSeries" and not anaconda.id.bootloader.device: