From 953a724bf0ab182ae17607b78425f34b88110e62 Mon Sep 17 00:00:00 2001 From: Paul Nasrat Date: Mon, 5 Jul 2004 14:41:40 +0000 Subject: Automatically create Apple Bootstrap (#121266) --- autopart.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/autopart.py b/autopart.py index b3452df94..04d3eceaa 100644 --- a/autopart.py +++ b/autopart.py @@ -1437,6 +1437,8 @@ def getAutopartitionBoot(): return [ (None, "PPC PReP Boot", 16, None, 0, 1) ] elif (iutil.getPPCMachine() == "iSeries") and iutil.hasIbmSis(): return [] + elif (iutil.getPPCMachine() == "PMac") and iutil.getPPCMacGen == "NewWorld": + return [ ( None, "Apple Bootstrap", 1, 1, 0, 1) ] else: return [ ("/boot", None, 100, None, 0, 1) ] -- cgit