From: Russ Allbery Date: Wed, 10 Aug 2005 22:07:04 +0000 (+0000) Subject: * Add support for ppc64, thanks Andreas Jochens. (Closes: #322020) X-Git-Tag: debian/1.3.87-1~17 X-Git-Url: https://git.michaelhowe.org/gitweb/?a=commitdiff_plain;h=1c1647fa611dd46fbed49557ab78966f95e0d50f;p=packages%2Fo%2Fopenafs.git * Add support for ppc64, thanks Andreas Jochens. (Closes: #322020) --- diff --git a/debian/changelog b/debian/changelog index 82afaead6..3fbcbee0c 100644 --- a/debian/changelog +++ b/debian/changelog @@ -1,6 +1,7 @@ openafs (1.3.87-1) unstable; urgency=low * New upstream version. + * Add support for ppc64, thanks Andreas Jochens. (Closes: #322020) * Diagnose unsupported architectures earlier and with a clearer error. * Suppress error messages from a missing kernel version header since they occur normally when doing the regular package build and are just diff --git a/debian/control b/debian/control index cfa6c3152..74a8b7163 100644 --- a/debian/control +++ b/debian/control @@ -7,7 +7,7 @@ Build-Depends: debhelper (>= 4.1.16), libncurses5-dev, libpam0g-dev, bison, docb Standards-Version: 3.6.2 Package: openafs-client -Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 +Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64 Depends: ${shlibs:Depends}, ${misc:Depends}, openafs-modules-source (>= 1.2.9) | openafs-modules2 Conflicts: arla, openafs-modules1 Description: The AFS distributed filesystem- client support @@ -20,7 +20,7 @@ Description: The AFS distributed filesystem- client support Package: openafs-kpasswd Priority: extra -Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 +Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64 Depends: ${shlibs:Depends}, openafs-client Conflicts: krb5-user, heimdal-clients, kerberos4kth-clients Description: The AFS distributed filesystem- old password changing @@ -34,7 +34,7 @@ Description: The AFS distributed filesystem- old password changing not install this package for new cells or for cells using Kerberos5. Package: openafs-fileserver -Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 +Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64 Depends: ${shlibs:Depends}, ${misc:Depends}, openafs-client Recommends: ntp Description: The AFS distributed filesystem- file server @@ -46,7 +46,7 @@ Description: The AFS distributed filesystem- file server installed on any machine that will export files into AFS. Package: openafs-dbserver -Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 +Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64 Depends: ${shlibs:Depends}, ${perl:Depends}, openafs-fileserver, openafs-client Conflicts: openafs-ptutil Replaces: openafs-ptutil @@ -62,7 +62,7 @@ Description: The AFS distributed filesystem- database server Package: libopenafs-dev Section: libdevel -Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 +Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64 Priority: extra Conflicts: arla-dev Depends: ${shlibs:Depends} @@ -89,7 +89,7 @@ Package: libpam-openafs-kaserver Priority: extra Depends: ${shlibs:Depends} Recommends: openafs-client -Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 +Architecture: i386 powerpc sparc alpha s390 ia64 hppa amd64 ppc64 Description: The AFS distributed filesystem- kaserver PAM module AFS is a distributed filesystem allowing cross-platform sharing of files among multiple computers. Facilities are provided for access diff --git a/debian/kern-sysname b/debian/kern-sysname index 429b51c05..1aa0293a0 100644 --- a/debian/kern-sysname +++ b/debian/kern-sysname @@ -77,6 +77,16 @@ ppc) ;; esac ;; +ppc64) + case $KVERS in + 2.4*) + echo ppc64_linux24 + ;; + 2.6*) + echo ppc64_linux26 + ;; + esac + ;; s390) echo s390_linux24 ;; diff --git a/debian/sysname b/debian/sysname index 86af78a7c..b47488d10 100755 --- a/debian/sysname +++ b/debian/sysname @@ -24,6 +24,9 @@ ia64) powerpc) echo ppc_linux24 ;; +ppc64) + echo ppc64_linux24 + ;; s390) echo s390_linux24 ;;