Delete osf-alpha target (and host) support, no longer working or needed at KEK.

This commit is contained in:
Andrew Johnson
2010-10-14 14:01:40 -05:00
parent 2d4e4deb60
commit ed916cd1b3
22 changed files with 20 additions and 576 deletions

View File

@ -24,38 +24,24 @@ sysname=`uname`
case $sysname in
Linux )
os=linux
cpu=`uname -m`
cpu=`uname -m`
case $cpu in i386 | i486 | i586 | i686 )
cpu=x86
;;
esac
;;
esac
if [ ${cpu} = "x86_64" ]; then
cpu=x86_64
fi
echo ${os}-${cpu}${suffix}
fi
echo ${os}-${cpu}${suffix}
;;
Darwin )
os=darwin
cpu=`uname -m`
cpu=`uname -m`
case "$cpu" in
"Power Macintosh") cpu=ppc ;;
"i386") cpu=x86 ;;
esac
echo ${os}-${cpu}${suffix}
;;
HP-UX )
os=hpux
cpu=`uname -m`
case $cpu in
9000/[346]??) cpu=m68k ;;
9000/[78]??) cpu=parisc ;;
esac
echo ${os}-${cpu}${suffix}
;;
OSF1 )
os=osf
cpu=`uname -m`
echo ${os}-${cpu}${suffix}
echo ${os}-${cpu}${suffix}
;;
SunOS )
version=`uname -r | sed '1s/^\([0-9]*\).*$/\1/'`
@ -64,16 +50,16 @@ case $sysname in
else
os=sun4
fi
cpu=`uname -m`
cpu=`uname -m`
case $cpu in
sun4*)
sun4*)
cpu=sparc
;;
;;
i86pc)
cpu=x86
;;
esac
echo ${os}-${cpu}${suffix}
;;
esac
echo ${os}-${cpu}${suffix}
;;
* )
sysname=`uname -o`

View File

@ -5,8 +5,7 @@ eval 'exec perl -S $0 ${1+"$@"}' # -*- Mode: perl -*-
# National Laboratory.
# Copyright (c) 2002 The Regents of the University of California, as
# Operator of Los Alamos National Laboratory.
# EPICS BASE Versions 3.13.7
# and higher are distributed subject to a Software License Agreement found
# EPICS BASE is distributed subject to a Software License Agreement found
# in file LICENSE that is included with this distribution.
#*************************************************************************
@ -27,14 +26,10 @@ sub GetEpicsHostArch { # no args
$arch=$Config{'archname'};
if ($arch =~ /sun4-solaris/) { return "solaris-sparc";
} elsif ($arch =~ m/i86pc-solaris/) { return "solaris-x86";
} elsif ($arch =~ m/sun4-sunos/) { return "sun4-68k";
} elsif ($arch =~ m/i[3-6]86-linux/) { return "linux-x86";
} elsif ($arch =~ m/x86_64-linux/) { return "linux-x86_64";
} elsif ($arch =~ m/MSWin32-x86/) { return "win32-x86";
} elsif ($arch =~ m/cygwin/) { return "cygwin-x86";
} elsif ($arch =~ m/PA-RISC1.1/) { return "hpux-parisc";
} elsif ($arch =~ m/PA-RISC2.0/) { return "hpux-parisc";
} elsif ($arch =~ m/alpha-dec_osf/) { return "osf-alpha";
} elsif ($arch =~ m/darwin/) {
my($kernel, $hostname, $release, $version, $cpu) = POSIX::uname();
if ($cpu =~ m/Power Macintosh/) { return "darwin-ppc"; }