summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChris Gianelloni <wolf31o2@gentoo.org>2006-09-05 17:07:38 +0000
committerChris Gianelloni <wolf31o2@gentoo.org>2006-09-05 17:07:38 +0000
commit68d2f0ec91c6e1f8e68f76739ac457b8f235e8f0 (patch)
treeafdee3560aa633e47efe827e1641272eec1134cb /autoconfig
parentFixed VGA detection in the opengl identification parts of livecd-functions.sh... (diff)
downloadlivecd-tools-68d2f0ec91c6e1f8e68f76739ac457b8f235e8f0.tar.gz
livecd-tools-68d2f0ec91c6e1f8e68f76739ac457b8f235e8f0.tar.bz2
livecd-tools-68d2f0ec91c6e1f8e68f76739ac457b8f235e8f0.zip
Alphabetize the PPC machines. Add iMac G5 to list.
git-svn-id: svn+ssh://svn.gentoo.org/var/svnroot/livecd-tools/trunk@120 7bf51bff-881f-0410-a643-fba68b97345e
Diffstat (limited to 'autoconfig')
-rwxr-xr-xautoconfig31
1 files changed, 17 insertions, 14 deletions
diff --git a/autoconfig b/autoconfig
index 7c205ac..18535b1 100755
--- a/autoconfig
+++ b/autoconfig
@@ -1,7 +1,7 @@
#!/sbin/runscript
# Copyright 1999-2005 Gentoo Foundation
# Distributed under the terms of the GNU General Public License v2
-# $Header: /var/cvsroot/gentoo/src/livecd-tools/autoconfig,v 1.67 2006/08/02 01:00:16 wolf31o2 Exp $
+# $Header: /var/cvsroot/gentoo/src/livecd-tools/autoconfig,v 1.68 2006/09/05 17:07:38 wolf31o2 Exp $
DHCP="yes"
DETECT="yes"
@@ -177,32 +177,35 @@ detect_ppc() {
local machtype=""
case "${machinfo}" in
- "PowerMac G4 AGP Graphics")
- machtype="Apple PowerMac G4"
+ "CHRP Pegasos2")
+ machtype="Pegasos 2"
;;
- "PowerBook Titanium"|'PowerBook G4 15"')
- machtype="Apple Powerbook G4"
+ "CHRP IBM,9124-720")
+ machtype="IBM OP720"
;;
"iBook 2 rev. 2")
machtype="Apple iBook G3"
;;
+ "iMac G5"*)
+ machtype="Apple iMac G5"
+ ;;
+ "MPC8241")
+ machtype="Kurobox"
+ ;;
"PowerMac G5")
machtype="Apple PowerMac G5"
;;
"PowerMac G5 Dual Core")
machtype="Apple PowerMac G5 Dual Core"
;;
- "Unknown Intrepid-based")
- machtype="Apple Mac-Mini"
- ;;
- "MPC8241")
- machtype="Kurobox"
+ "PowerMac G4 AGP Graphics")
+ machtype="Apple PowerMac G4"
;;
- "CHRP Pegasos2")
- machtype="Pegasos 2"
+ "PowerBook Titanium"|'PowerBook G4 15"')
+ machtype="Apple Powerbook G4"
;;
- "CHRP IBM,9124-720")
- machtype="IBM OP720"
+ "Unknown Intrepid-based")
+ machtype="Apple Mac-Mini"
;;
*)
machtype="Unknown PPC System"