]> git.proxmox.com Git - grub2.git/commitdiff
New CVS snapshot.
authorrmh <rmh@localhost>
Sun, 3 Feb 2008 18:36:06 +0000 (18:36 +0000)
committerrmh <rmh@localhost>
Sun, 3 Feb 2008 18:36:06 +0000 (18:36 +0000)
debian/changelog
debian/patches/01_regparm.diff [deleted file]

index be07aed8fb865f7d2510c28f6b12c52461c6eed9..8be69907306b9416cfeae960b106b806998e579f 100644 (file)
@@ -1,11 +1,16 @@
-grub2 (1.95+20080201-2) unstable; urgency=low
+grub2 (1.95+20080203-1) unstable; urgency=low
 
+  * New CVS snapshot.
+    - patches/01_regparm.diff: Delete.
+    - Improved XFS support.
+    - util/grub.d/00_header.in: Add runtime error detection (for gfxterm).
+    - Fixes problem when chainloading to Vista.
   * Fix po-debconf errors.  Thanks Thomas Huriaux.  (Closes: #402972)
   * grub.d/05_debian_theme:
     - Add runtime error detection.
     - Detect/Enable PNG background when it is present.
 
- -- Robert Millan <rmh@aybabtu.com>  Sun,  3 Feb 2008 15:45:47 +0100
+ -- Robert Millan <rmh@aybabtu.com>  Sun,  3 Feb 2008 19:31:23 +0100
 
 grub2 (1.95+20080201-1) unstable; urgency=low
 
diff --git a/debian/patches/01_regparm.diff b/debian/patches/01_regparm.diff
deleted file mode 100644 (file)
index e5ae3bd..0000000
+++ /dev/null
@@ -1,22 +0,0 @@
-
-Move to regparm 1 for nested functions.  Fixes CPU context corruption
-in fs/xfs.c and possibly other places.
-
---- aclocal.m4~        2007-11-25 03:01:30.000000000 +0100
-+++ aclocal.m4 2008-02-01 16:47:36.000000000 +0100
-@@ -333,13 +333,13 @@
- if test "x$grub_cv_i386_check_nested_functions" = xyes; then
-   AC_DEFINE([NESTED_FUNC_ATTR], 
--      [__attribute__ ((__regparm__ (2)))],
-+      [__attribute__ ((__regparm__ (1)))],
-       [Catch gcc bug])
- else
- dnl Unfortunately, the above test does not detect a bug in gcc-4.0.
- dnl So use regparm 2 until a better test is found.
-   AC_DEFINE([NESTED_FUNC_ATTR], 
--      [__attribute__ ((__regparm__ (2)))],
-+      [__attribute__ ((__regparm__ (1)))],
-       [Catch gcc bug])
- fi
- ])