2008-01-03 16:56:03 +00:00
|
|
|
{stdenv, fetchurl, autoconf, automake}:
|
2005-07-18 09:18:07 +00:00
|
|
|
|
|
|
|
stdenv.mkDerivation {
|
2008-05-08 10:40:17 +00:00
|
|
|
name = "grub-0.97-patch-1.7";
|
2008-01-03 16:56:03 +00:00
|
|
|
|
2005-07-18 09:18:07 +00:00
|
|
|
src = fetchurl {
|
2007-08-24 12:32:36 +00:00
|
|
|
url = ftp://alpha.gnu.org/gnu/grub/grub-0.97.tar.gz;
|
2005-07-18 09:18:07 +00:00
|
|
|
md5 = "cd3f3eb54446be6003156158d51f4884";
|
|
|
|
};
|
2008-01-16 13:26:57 +00:00
|
|
|
|
|
|
|
# Lots of patches from Gentoo, in particular splash screen support
|
|
|
|
# (not the fancy SUSE gfxmenu stuff though). Also a fix for boot
|
2008-05-08 10:40:17 +00:00
|
|
|
# failures on systems with more than 2 GiB RAM, and for booting from
|
|
|
|
# ext3 filesystems with 256-byte inodes.
|
2008-01-16 13:26:57 +00:00
|
|
|
gentooPatches = fetchurl {
|
2008-05-08 10:40:17 +00:00
|
|
|
url = mirror://gentoo/distfiles/grub-0.97-patches-1.7.tar.bz2;
|
|
|
|
sha256 = "12akcbp1a31pxzsxm01scgir0fqkk8qqqwhs44vzgs2chzzigyvd";
|
2008-01-16 13:26:57 +00:00
|
|
|
};
|
2008-01-03 16:56:03 +00:00
|
|
|
|
2008-09-18 09:43:31 +00:00
|
|
|
patches = [
|
|
|
|
# Properly handle the case of symlinks such as
|
|
|
|
# /dev/disk/by-label/bla. The symlink resolution code in
|
|
|
|
# grub-install isn't smart enough.
|
|
|
|
./symlink.patch
|
|
|
|
];
|
|
|
|
|
2008-01-03 16:56:03 +00:00
|
|
|
# Autoconf/automake required for the splashimage patch.
|
|
|
|
buildInputs = [autoconf automake];
|
|
|
|
|
2008-09-18 09:43:31 +00:00
|
|
|
prePatch = ''
|
2008-01-16 13:26:57 +00:00
|
|
|
unpackFile $gentooPatches
|
2008-02-04 14:35:15 +00:00
|
|
|
rm patch/400_all_grub-0.97-reiser4-20050808-gentoo.patch
|
2008-01-16 13:26:57 +00:00
|
|
|
for i in patch/*.patch; do
|
|
|
|
echo "applying patch $i"
|
|
|
|
patch -p1 < $i || patch -p0 < $i
|
|
|
|
done
|
2008-09-18 09:43:31 +00:00
|
|
|
'';
|
|
|
|
|
|
|
|
preConfigure = ''
|
2008-01-03 16:56:03 +00:00
|
|
|
autoreconf
|
|
|
|
'';
|
2005-07-18 09:18:07 +00:00
|
|
|
}
|