| 1 | #! /bin/sh
|
|---|
| 2 | # Configuration validation subroutine script.
|
|---|
| 3 | # Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999,
|
|---|
| 4 | # 2000, 2001, 2002, 2003, 2004, 2005 Free Software Foundation, Inc.
|
|---|
| 5 |
|
|---|
| 6 | timestamp='2005-07-08'
|
|---|
| 7 |
|
|---|
| 8 | # This file is (in principle) common to ALL GNU software.
|
|---|
| 9 | # The presence of a machine in this file suggests that SOME GNU software
|
|---|
| 10 | # can handle that machine. It does not imply ALL GNU software can.
|
|---|
| 11 | #
|
|---|
| 12 | # This file is free software; you can redistribute it and/or modify
|
|---|
| 13 | # it under the terms of the GNU General Public License as published by
|
|---|
| 14 | # the Free Software Foundation; either version 3 of the License, or
|
|---|
| 15 | # (at your option) any later version.
|
|---|
| 16 | #
|
|---|
| 17 | # This program is distributed in the hope that it will be useful,
|
|---|
| 18 | # but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|---|
| 19 | # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|---|
| 20 | # GNU General Public License for more details.
|
|---|
| 21 | #
|
|---|
| 22 | # You should have received a copy of the GNU General Public License
|
|---|
| 23 | # along with this program; if not, see <http://www.gnu.org/licenses/>.
|
|---|
| 24 | #
|
|---|
| 25 | # As a special exception to the GNU General Public License, if you
|
|---|
| 26 | # distribute this file as part of a program that contains a
|
|---|
| 27 | # configuration script generated by Autoconf, you may include it under
|
|---|
| 28 | # the same distribution terms that you use for the rest of that program.
|
|---|
| 29 |
|
|---|
| 30 |
|
|---|
| 31 | # Please send patches to <[email protected]>. Submit a context
|
|---|
| 32 | # diff and a properly formatted ChangeLog entry.
|
|---|
| 33 | #
|
|---|
| 34 | # Configuration subroutine to validate and canonicalize a configuration type.
|
|---|
| 35 | # Supply the specified configuration type as an argument.
|
|---|
| 36 | # If it is invalid, we print an error message on stderr and exit with code 1.
|
|---|
| 37 | # Otherwise, we print the canonical config type on stdout and succeed.
|
|---|
| 38 |
|
|---|
| 39 | # This file is supposed to be the same for all GNU packages
|
|---|
| 40 | # and recognize all the CPU types, system types and aliases
|
|---|
| 41 | # that are meaningful with *any* GNU software.
|
|---|
| 42 | # Each package is responsible for reporting which valid configurations
|
|---|
| 43 | # it does not support. The user should be able to distinguish
|
|---|
| 44 | # a failure to support a valid configuration from a meaningless
|
|---|
| 45 | # configuration.
|
|---|
| 46 |
|
|---|
| 47 | # The goal of this file is to map all the various variations of a given
|
|---|
| 48 | # machine specification into a single specification in the form:
|
|---|
| 49 | # CPU_TYPE-MANUFACTURER-OPERATING_SYSTEM
|
|---|
| 50 | # or in some cases, the newer four-part form:
|
|---|
| 51 | # CPU_TYPE-MANUFACTURER-KERNEL-OPERATING_SYSTEM
|
|---|
| 52 | # It is wrong to echo any other type of specification.
|
|---|
| 53 |
|
|---|
| 54 | me=`echo "$0" | sed -e 's,.*/,,'`
|
|---|
| 55 |
|
|---|
| 56 | usage="\
|
|---|
| 57 | Usage: $0 [OPTION] CPU-MFR-OPSYS
|
|---|
| 58 | $0 [OPTION] ALIAS
|
|---|
| 59 |
|
|---|
| 60 | Canonicalize a configuration name.
|
|---|
| 61 |
|
|---|
| 62 | Operation modes:
|
|---|
| 63 | -h, --help print this help, then exit
|
|---|
| 64 | -t, --time-stamp print date of last modification, then exit
|
|---|
| 65 | -v, --version print version number, then exit
|
|---|
| 66 |
|
|---|
| 67 | Report bugs and patches to <[email protected]>."
|
|---|
| 68 |
|
|---|
| 69 | version="\
|
|---|
| 70 | GNU config.sub ($timestamp)
|
|---|
| 71 |
|
|---|
| 72 | Copyright (C) 1992, 1993, 1994, 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005
|
|---|
| 73 | Free Software Foundation, Inc.
|
|---|
| 74 |
|
|---|
| 75 | This is free software; see the source for copying conditions. There is NO
|
|---|
| 76 | warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE."
|
|---|
| 77 |
|
|---|
| 78 | help="
|
|---|
| 79 | Try \`$me --help' for more information."
|
|---|
| 80 |
|
|---|
| 81 | # Parse command line
|
|---|
| 82 | while test $# -gt 0 ; do
|
|---|
| 83 | case $1 in
|
|---|
| 84 | --time-stamp | --time* | -t )
|
|---|
| 85 | echo "$timestamp" ; exit ;;
|
|---|
| 86 | --version | -v )
|
|---|
| 87 | echo "$version" ; exit ;;
|
|---|
| 88 | --help | --h* | -h )
|
|---|
| 89 | echo "$usage"; exit ;;
|
|---|
| 90 | -- ) # Stop option processing
|
|---|
| 91 | shift; break ;;
|
|---|
| 92 | - ) # Use stdin as input.
|
|---|
| 93 | break ;;
|
|---|
| 94 | -* )
|
|---|
| 95 | echo "$me: invalid option $1$help"
|
|---|
| 96 | exit 1 ;;
|
|---|
| 97 |
|
|---|
| 98 | *local*)
|
|---|
|
|---|