1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43
|
#!/bin/sh
# Maps Debian architectures to AFS sysnames for building the clients and
# libraries. This doesn't worry about the kernel version; kern-sysname
# does that when building the kernel module.
#
# Not all architectures are listed, only those that OpenAFS supports.
case `dpkg --print-architecture` in
alpha)
echo alpha_linux_26
;;
arm|armel|armv5tel)
echo arm_linux26
;;
amd64)
echo amd64_linux26
;;
i[3456]86|lpia)
echo i386_linux26
;;
ia64)
echo ia64_linux26
;;
powerpc)
echo ppc_linux26
;;
ppc64)
echo ppc64_linux26
;;
s390)
echo s390_linux26
;;
s390x)
echo s390x_linux26
;;
sparc|sparc64)
echo sparc_linux24
;;
*)
echo "ERROR: unsupported architecture" >&2
echo UNKNOWN
exit 1
esac
|