diff options
author | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-09-05 17:07:38 +0000 |
---|---|---|
committer | Chris Gianelloni <wolf31o2@gentoo.org> | 2006-09-05 17:07:38 +0000 |
commit | 9680acc9923f7543b5b1a3ef4f9793cebdfc2c93 (patch) | |
tree | 154e8774615e067641767dcfed085b6fb87e55bf /src/livecd-tools | |
parent | Fixed defconfig->pmac32_defconfig in the handbook. (diff) | |
download | gentoo-9680acc9923f7543b5b1a3ef4f9793cebdfc2c93.tar.gz gentoo-9680acc9923f7543b5b1a3ef4f9793cebdfc2c93.tar.bz2 gentoo-9680acc9923f7543b5b1a3ef4f9793cebdfc2c93.zip |
Alphabetize the PPC machines. Add iMac G5 to list.
Diffstat (limited to 'src/livecd-tools')
-rw-r--r-- | src/livecd-tools/autoconfig | 31 |
1 files changed, 17 insertions, 14 deletions
diff --git a/src/livecd-tools/autoconfig b/src/livecd-tools/autoconfig index 7c205acd9c..18535b173f 100644 --- a/src/livecd-tools/autoconfig +++ b/src/livecd-tools/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" |