about summary refs log tree commit diff
path: root/pkgs/tools
diff options
context:
space:
mode:
authorEelco Dolstra <eelco.dolstra@logicblox.com>2008-05-08 10:40:17 +0000
committerEelco Dolstra <eelco.dolstra@logicblox.com>2008-05-08 10:40:17 +0000
commit8245a813fef5750c1718b29248e40fc679cc684f (patch)
tree3d3790153bdc5c68f5fae19d3c4e47088ada9c89 /pkgs/tools
parent326a234888565bf1bbfaf54e64cd4c61f64bf4a8 (diff)
downloadnixlib-8245a813fef5750c1718b29248e40fc679cc684f.tar
nixlib-8245a813fef5750c1718b29248e40fc679cc684f.tar.gz
nixlib-8245a813fef5750c1718b29248e40fc679cc684f.tar.bz2
nixlib-8245a813fef5750c1718b29248e40fc679cc684f.tar.lz
nixlib-8245a813fef5750c1718b29248e40fc679cc684f.tar.xz
nixlib-8245a813fef5750c1718b29248e40fc679cc684f.tar.zst
nixlib-8245a813fef5750c1718b29248e40fc679cc684f.zip
* Latest Gentoo patches for Grub. Includes a fix for booting from
  ext3 filesystems with 256-byte inodes (created by mke2fs >= 1.40.5
  by default).

svn path=/nixpkgs/trunk/; revision=11775
Diffstat (limited to 'pkgs/tools')
-rw-r--r--pkgs/tools/misc/grub/default.nix9
1 files changed, 5 insertions, 4 deletions
diff --git a/pkgs/tools/misc/grub/default.nix b/pkgs/tools/misc/grub/default.nix
index 9f021a669550..44c2c02b0200 100644
--- a/pkgs/tools/misc/grub/default.nix
+++ b/pkgs/tools/misc/grub/default.nix
@@ -5,7 +5,7 @@ if stdenv.system == "x86_64-linux" then
 else
 
 stdenv.mkDerivation {
-  name = "grub-0.97";
+  name = "grub-0.97-patch-1.7";
   
   src = fetchurl {
     url = ftp://alpha.gnu.org/gnu/grub/grub-0.97.tar.gz;
@@ -14,10 +14,11 @@ stdenv.mkDerivation {
 
   # Lots of patches from Gentoo, in particular splash screen support
   # (not the fancy SUSE gfxmenu stuff though).  Also a fix for boot
-  # failures on systems with more than 2 GiB RAM.
+  # failures on systems with more than 2 GiB RAM, and for booting from
+  # ext3 filesystems with 256-byte inodes. 
   gentooPatches = fetchurl {
-    url = mirror://gentoo/distfiles/grub-0.97-patches-1.4.tar.bz2;
-    sha256 = "1nki5q1b61ahxcmnw6mq7b8ghcysri4lj7q6dx8iqixrvrpxj399";
+    url = mirror://gentoo/distfiles/grub-0.97-patches-1.7.tar.bz2;
+    sha256 = "12akcbp1a31pxzsxm01scgir0fqkk8qqqwhs44vzgs2chzzigyvd";
   };
 
   # Autoconf/automake required for the splashimage patch.