diff options
author | Jeremy Katz <katzj@redhat.com> | 2003-06-06 16:33:31 +0000 |
---|---|---|
committer | Jeremy Katz <katzj@redhat.com> | 2003-06-06 16:33:31 +0000 |
commit | e0779b7bf137a60bf6e6cd3adee4aabffcd28c73 (patch) | |
tree | 20b8340a621390a3fc967ef5fb3723c78b4033c7 /autopart.py | |
parent | 91d5fc40d23a5fb5b225287090e8074d0054fa6e (diff) | |
download | anaconda-e0779b7bf137a60bf6e6cd3adee4aabffcd28c73.tar.gz anaconda-e0779b7bf137a60bf6e6cd3adee4aabffcd28c73.tar.xz anaconda-e0779b7bf137a60bf6e6cd3adee4aabffcd28c73.zip |
merge taroon branch. mostly package bits, but a lot of other misc stuff
and cleanups in here too
Diffstat (limited to 'autopart.py')
-rw-r--r-- | autopart.py | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/autopart.py b/autopart.py index 1cafef1a4..be397d492 100644 --- a/autopart.py +++ b/autopart.py @@ -36,6 +36,9 @@ BOOTEFI_NOT_VFAT = -2 BOOTALPHA_NOT_BSD = -3 BOOTALPHA_NO_RESERVED_SPACE = -4 BOOTPSERIES_NOT_PREP = -5 +# XXX TODO: check for PReP partitions > 4 MiB and starting over 4096M. +BOOTPSERIES_LARGER_THAN_4M = -6 +BOOTPSERIES_ABOVE_4096M = -7 DEBUG_LVM_GROW = 0 @@ -1410,7 +1413,7 @@ def getAutopartitionBoot(): return ("/boot/efi", "vfat", 100, None, 0, 1) elif (iutil.getPPCMachine() == "pSeries" or iutil.getPPCMachine() == "iSeries"): - return(None, "PPC PReP Boot", 8, None, 0, 1) + return(None, "PPC PReP Boot", 4, None, 0, 1) else: return ("/boot", None, 100, None, 0, 1) |