Author: aurel32
Date: 2007-02-03 13:25:17 +0100 (Sat, 03 Feb 2007)
New Revision: 1928

Modified:
   glibc-package/branches/glibc-2.5/debian/changelog
   glibc-package/branches/glibc-2.5/debian/script.in/kernelcheck.sh
   glibc-package/branches/glibc-2.5/debian/sysdeps/linux.mk
Log:
  * debian/script.in/kernelcheck.sh, debian/sysdeps/linux.mk: set the minimum 
    kernel version to 2.6.1, except on m68k where it is set to 2.4.1.




Modified: glibc-package/branches/glibc-2.5/debian/changelog
===================================================================
--- glibc-package/branches/glibc-2.5/debian/changelog   2007-02-02 22:20:52 UTC 
(rev 1927)
+++ glibc-package/branches/glibc-2.5/debian/changelog   2007-02-03 12:25:17 UTC 
(rev 1928)
@@ -82,6 +82,8 @@
   * debian/control.in: drop the dependency on tzdata. It is a required package
     and the glibc from Etch depends on it, ensuring tzdata is always present 
     post-Etch.
+  * debian/script.in/kernelcheck.sh, debian/sysdeps/linux.mk: set the minimum 
+    kernel version to 2.6.1, except on m68k where it is set to 2.4.1.
 
   [ Denis Barbier ]
   * Remove localedata/locale-en_NZ.diff (merged upstream).

Modified: glibc-package/branches/glibc-2.5/debian/script.in/kernelcheck.sh
===================================================================
--- glibc-package/branches/glibc-2.5/debian/script.in/kernelcheck.sh    
2007-02-02 22:20:52 UTC (rev 1927)
+++ glibc-package/branches/glibc-2.5/debian/script.in/kernelcheck.sh    
2007-02-03 12:25:17 UTC (rev 1928)
@@ -38,28 +38,24 @@
     esac
     
 
-    # intel i386 requires a recent kernel
+    # From glibc 2.3.5-7 real-i386 is dropped.
     if [ "$realarch" = i386 ]
     then
-       # From glibc 2.3.5-7 and linux-2.6 2.6.12-1, real-i386 is dropped.
-       #if kernel_compare_versions "$kernel_ver" lt 2.4.24
-       #then
-           echo WARNING: This machine has real i386 class processor.
-           echo Debian etch and later does not support such old hardware
-           echo any longer.
-           echo The reason is that \"bswap\" instruction is not supported
-           echo on i386 class processors, and some core libraries have 
-           echo such instruction.  You\'ll see illegal instruction error
-           echo when you upgrade your Debian system.
-           exit_check
-       #fi
+       echo WARNING: This machine has real i386 class processor.
+       echo Debian etch and later does not support such old hardware
+       echo any longer.
+       echo The reason is that \"bswap\" instruction is not supported
+       echo on i386 class processors, and some core libraries have 
+       echo such instruction.  You\'ll see illegal instruction error
+       echo when you upgrade your Debian system.
+       exit_check
     fi
 
     # The GNU libc requires 2.6 kernel (except on m68k) because we drop to 
     # support linuxthreads
     if [ "$realarch" != m68k ]
     then
-       if kernel_compare_versions "$kernel_ver" lt 2.4.1
+       if kernel_compare_versions "$kernel_ver" lt 2.6.1
        then
            echo WARNING: POSIX threads library NPTL requires 2.6 and
            echo later kernel.  If you use 2.4 kernel, please upgrade your

Modified: glibc-package/branches/glibc-2.5/debian/sysdeps/linux.mk
===================================================================
--- glibc-package/branches/glibc-2.5/debian/sysdeps/linux.mk    2007-02-02 
22:20:52 UTC (rev 1927)
+++ glibc-package/branches/glibc-2.5/debian/sysdeps/linux.mk    2007-02-03 
12:25:17 UTC (rev 1928)
@@ -1,5 +1,5 @@
 GLIBC_OVERLAYS ?= $(shell ls glibc-linuxthreads* glibc-ports* glibc-libidn*)
-MIN_KERNEL_SUPPORTED := 2.6.0
+MIN_KERNEL_SUPPORTED := 2.6.1
 libc = libc6
 
 # Linuxthreads Config


-- 
To UNSUBSCRIBE, email to [EMAIL PROTECTED]
with a subject of "unsubscribe". Trouble? Contact [EMAIL PROTECTED]

Reply via email to