diff options
author | Jeremy Katz <katzj@redhat.com> | 2001-08-17 19:37:28 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2001-08-17 19:37:28 +0000 |
commit | 7521add1a3c9351f3f30773685abba993f3e9ebc (patch) | |
tree | 05ec09f51d1f0ee27d621666fa2d3c6d70f62f00 | |
parent | 2f9e95127c97a7112e730196accdc9fa9ee7dc59 (diff) | |
download | anaconda-7521add1a3c9351f3f30773685abba993f3e9ebc.tar.gz anaconda-7521add1a3c9351f3f30773685abba993f3e9ebc.tar.xz anaconda-7521add1a3c9351f3f30773685abba993f3e9ebc.zip |
only set the boot flag on /boot/efi on itanium
-rw-r--r-- | fsset.py | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -736,6 +736,13 @@ class FileSystemSet: bootDev = self.bootloaderChoices(diskset)[0][0] else: bootDev = self.bootloaderChoices(diskset)[1][0] + + # stupid itanium + if iutil.getArch() == "ia64": + part = partitioning.get_partition_by_name(diskset.disks, bootDev) + if part and part.is_flag_available(parted.PARTITION_BOOT): + part.set_flag(parted.PARTITION_BOOT, 1) + return for drive in diskset.disks.keys(): foundActive = 0 |