[Date Prev][Date Next] [Thread Prev][Thread Next] [Date Index] [Thread Index]

r1386 - in glibc-package/trunk/debian: . script.in



Author: aurel32
Date: 2006-04-10 14:41:19 +0000 (Mon, 10 Apr 2006)
New Revision: 1386

Modified:
   glibc-package/trunk/debian/changelog
   glibc-package/trunk/debian/script.in/kernelcheck.sh
Log:
  * script.in/kernelcheck.sh: Also take in account 64-bit mips(el) kernels.



Modified: glibc-package/trunk/debian/changelog
===================================================================
--- glibc-package/trunk/debian/changelog	2006-04-10 09:55:13 UTC (rev 1385)
+++ glibc-package/trunk/debian/changelog	2006-04-10 14:41:19 UTC (rev 1386)
@@ -10,6 +10,7 @@
     - Handle the case where /etc/localtime does not exists.  (Closes: 
       #360383).
   * local/manpages/tzconfig.8: Update the manpage accordingly.
+  * script.in/kernelcheck.sh: Also take in account 64-bit mips(el) kernels.
 
  -- Aurelien Jarno <aurel32@debian.org>  Mon, 10 Apr 2006 06:40:33 +0200
 

Modified: glibc-package/trunk/debian/script.in/kernelcheck.sh
===================================================================
--- glibc-package/trunk/debian/script.in/kernelcheck.sh	2006-04-10 09:55:13 UTC (rev 1385)
+++ glibc-package/trunk/debian/script.in/kernelcheck.sh	2006-04-10 14:41:19 UTC (rev 1386)
@@ -30,10 +30,13 @@
     realarch=`uname -m`
     kernel_ver=`uname -r`
 
-    # convert "armv4l" and similar to just "arm"
+    # convert "armv4l" and similar to just "arm", and "mips64" and similar
+    # to just "mips"
     case $realarch in
       arm*) realarch="arm";;
+      mips*) realarch="mips";;
     esac
+    
 
     # intel i386 requires a recent kernel
     if [ "$realarch" = i386 ]



Reply to: