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