explicit cases for 2.6 kernels for all architectures that support them
(everything except non-64-bit sparc_linux). Fixes build problems with
ia64 and probably other architectures. Thanks to Ippokratis Pandis
for the debugging help. (Closes: #411818)
openafs (1.4.4.dfsg1-2) unstable; urgency=low
+ * When determining the AFS sysname for kernel module builds, add
+ explicit cases for 2.6 kernels for all architectures that support them
+ (everything except non-64-bit sparc_linux). Fixes build problems with
+ ia64 and probably other architectures. Thanks to Ippokratis Pandis
+ for the debugging help. (Closes: #411818)
* Fix the watch file to remove .dfsg\d+ when comparing versions.
--
esac
;;
ia64)
- echo ia64_linux24
+ case $KVERS in
+ 2.4*)
+ echo ia64_linux24
+ ;;
+ 2.6*)
+ echo ia64_linux24
+ ;;
+ esac
;;
alpha)
case $KVERS in
2.4*)
echo alpha_linux_24
;;
+ 2.6*)
+ echo alpha_linux_26
+ ;;
esac
;;
sparc)
2.4*)
echo sparc64_linux24
;;
+ 2.6*)
+ echo sparc64_linux26
+ ;;
esac
;;
ppc)
esac
;;
s390)
- echo s390_linux24
+ case $KVERS in
+ 2.4*)
+ echo s390_linux24
+ ;;
+ 2.6*)
+ echo s390_linux26
+ ;;
+ esac
;;
*)
echo "ERROR: unsupported architecture" >&2