summaryrefslogtreecommitdiffstats
path: root/kickstart.py
diff options
context:
space:
mode:
authorJeremy Katz <katzj@redhat.com>2004-10-04 17:37:57 +0000
committerJeremy Katz <katzj@redhat.com>2004-10-04 17:37:57 +0000
commit48236859d8a7fd4e1356e0af512aeca67c8e6eb6 (patch)
tree4589726fb28b78371748328ea851f730c2ec5a58 /kickstart.py
parent094758af9304d62d51e300a79d126ae9e2564c7c (diff)
downloadanaconda-48236859d8a7fd4e1356e0af512aeca67c8e6eb6.tar.gz
anaconda-48236859d8a7fd4e1356e0af512aeca67c8e6eb6.tar.xz
anaconda-48236859d8a7fd4e1356e0af512aeca67c8e6eb6.zip
2004-10-04 Jeremy Katz <katzj@redhat.com>
* partitions.py (Partitions.writeKS): Include PPC PReP boot partition (#133934) * kickstart.py (KickstartBase.definePartition) Allow specifying the PPC PReP Boot partition as "part prepboot"
Diffstat (limited to 'kickstart.py')
-rw-r--r--kickstart.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/kickstart.py b/kickstart.py
index 714e08766..1ab5b508a 100644
--- a/kickstart.py
+++ b/kickstart.py
@@ -1244,6 +1244,9 @@ class KickstartBase(BaseInstallClass):
filesystem = fileSystemTypeGet(fstype)
else:
filesystem = fileSystemTypeGetDefault()
+ elif extra[0] == 'prepboot':
+ filesystem = fileSystemTypeGet("PPC PReP Boot")
+ mountpoint = None
elif extra[0].startswith("raid."):
filesystem = fileSystemTypeGet("software RAID")