[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]

[PATCH] Recognize PS3 as a valid machine type (#489263).



---
 platform.py |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)

diff --git a/platform.py b/platform.py
index 2a765cd..a329094 100644
--- a/platform.py
+++ b/platform.py
@@ -382,7 +382,7 @@ def getPlatform(anaconda):
     elif iutil.isPPC():
         ppcMachine = iutil.getPPCMachine()
 
-        if ppcMachine == "PMac" and iutil.getPPCMacGen() == "NewWorld":
+        if (ppcMachine == "PMac" and iutil.getPPCMacGen() == "NewWorld") or ppcMachine == "PS3":
             return NewWorldPPC(anaconda)
         elif ppcMachine in ["iSeries", "pSeries"]:
             return IPSeriesPPC(anaconda)
-- 
1.6.1.3


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]