Update grub 2.00 to 2.02-beta2
This commit is contained in:
parent
4f832b5217
commit
f2bef62716
@ -1,11 +1,17 @@
|
|||||||
{ fetchurl, stdenv, flex, bison, gettext, ncurses, libusb, freetype, qemu
|
{ fetchurl, stdenv, autogen, flex, bison, python, autoconf, automake
|
||||||
, devicemapper, EFIsupport ? false }:
|
, gettext, ncurses, libusb, freetype, qemu, devicemapper
|
||||||
|
, linuxPackages ? null
|
||||||
|
, EFIsupport ? false
|
||||||
|
, zfsSupport ? false
|
||||||
|
}:
|
||||||
|
|
||||||
|
assert zfsSupport -> linuxPackages != null && linuxPackages.zfs != null;
|
||||||
|
|
||||||
let
|
let
|
||||||
|
|
||||||
prefix = "grub${if EFIsupport then "-efi" else ""}";
|
prefix = "grub${if EFIsupport then "-efi" else ""}";
|
||||||
|
|
||||||
version = "2.00";
|
version = "2.02-beta2";
|
||||||
|
|
||||||
unifont_bdf = fetchurl {
|
unifont_bdf = fetchurl {
|
||||||
url = "http://unifoundry.com/unifont-5.1.20080820.bdf.gz";
|
url = "http://unifoundry.com/unifont-5.1.20080820.bdf.gz";
|
||||||
@ -18,13 +24,14 @@ stdenv.mkDerivation rec {
|
|||||||
name = "${prefix}-${version}";
|
name = "${prefix}-${version}";
|
||||||
|
|
||||||
src = fetchurl {
|
src = fetchurl {
|
||||||
url = "mirror://gnu/grub/grub-${version}.tar.xz";
|
url = "http://git.savannah.gnu.org/cgit/grub.git/snapshot/grub-2.02-beta2.tar.gz";
|
||||||
sha256 = "0n64hpmsccvicagvr0c6v0kgp2yw0kgnd3jvsyd26cnwgs7c6kkq";
|
sha256 = "1n2l7k76lqqaavz12615vx5kca0kl8g13bkimc7xsd9s7c1ir5lr";
|
||||||
};
|
};
|
||||||
|
|
||||||
nativeBuildInputs = [ flex bison ];
|
nativeBuildInputs = [ autogen flex bison python autoconf automake ];
|
||||||
buildInputs = [ ncurses libusb freetype gettext devicemapper ]
|
buildInputs = [ ncurses libusb freetype gettext devicemapper ]
|
||||||
++ stdenv.lib.optional doCheck qemu;
|
++ stdenv.lib.optional doCheck qemu
|
||||||
|
++ stdenv.lib.optional zfsSupport linuxPackages.zfs;
|
||||||
|
|
||||||
preConfigure =
|
preConfigure =
|
||||||
'' for i in "tests/util/"*.in
|
'' for i in "tests/util/"*.in
|
||||||
@ -43,14 +50,11 @@ stdenv.mkDerivation rec {
|
|||||||
# See <http://www.mail-archive.com/qemu-devel@nongnu.org/msg22775.html>.
|
# See <http://www.mail-archive.com/qemu-devel@nongnu.org/msg22775.html>.
|
||||||
sed -i "tests/util/grub-shell.in" \
|
sed -i "tests/util/grub-shell.in" \
|
||||||
-e's/qemu-system-i386/qemu-system-x86_64 -nodefaults/g'
|
-e's/qemu-system-i386/qemu-system-x86_64 -nodefaults/g'
|
||||||
|
|
||||||
# Fix for building on Glibc 2.16. Won't be needed once the
|
|
||||||
# gnulib in grub is updated.
|
|
||||||
sed -i '/gets is a security hole/d' grub-core/gnulib/stdio.in.h
|
|
||||||
'';
|
'';
|
||||||
|
|
||||||
prePatch =
|
prePatch =
|
||||||
'' gunzip < "${unifont_bdf}" > "unifont.bdf"
|
'' sh autogen.sh
|
||||||
|
gunzip < "${unifont_bdf}" > "unifont.bdf"
|
||||||
sed -i "configure" \
|
sed -i "configure" \
|
||||||
-e "s|/usr/src/unifont.bdf|$PWD/unifont.bdf|g"
|
-e "s|/usr/src/unifont.bdf|$PWD/unifont.bdf|g"
|
||||||
'';
|
'';
|
||||||
@ -61,8 +65,8 @@ stdenv.mkDerivation rec {
|
|||||||
let arch = if stdenv.system == "i686-linux" then "i386"
|
let arch = if stdenv.system == "i686-linux" then "i386"
|
||||||
else if stdenv.system == "x86_64-linux" then "x86_64"
|
else if stdenv.system == "x86_64-linux" then "x86_64"
|
||||||
else throw "unsupported EFI firmware architecture";
|
else throw "unsupported EFI firmware architecture";
|
||||||
in
|
in stdenv.lib.optional zfsSupport "--enable-libzfs"
|
||||||
stdenv.lib.optionals EFIsupport
|
++ stdenv.lib.optionals EFIsupport
|
||||||
[ "--with-platform=efi" "--target=${arch}" "--program-prefix=" ];
|
[ "--with-platform=efi" "--target=${arch}" "--program-prefix=" ];
|
||||||
|
|
||||||
doCheck = false;
|
doCheck = false;
|
||||||
@ -72,7 +76,7 @@ stdenv.mkDerivation rec {
|
|||||||
paxmark pms $out/sbin/grub-{probe,bios-setup}
|
paxmark pms $out/sbin/grub-{probe,bios-setup}
|
||||||
'';
|
'';
|
||||||
|
|
||||||
meta = {
|
meta = with stdenv.lib; {
|
||||||
description = "GNU GRUB, the Grand Unified Boot Loader (2.x beta)";
|
description = "GNU GRUB, the Grand Unified Boot Loader (2.x beta)";
|
||||||
|
|
||||||
longDescription =
|
longDescription =
|
||||||
@ -87,13 +91,13 @@ stdenv.mkDerivation rec {
|
|||||||
operating system (e.g., GNU).
|
operating system (e.g., GNU).
|
||||||
'';
|
'';
|
||||||
|
|
||||||
homepage = http://www.gnu.org/software/grub/;
|
homepage = http://wwwp.gnu.org/software/grub/;
|
||||||
|
|
||||||
license = stdenv.lib.licenses.gpl3Plus;
|
license = licenses.gpl3Plus;
|
||||||
|
|
||||||
platforms = if EFIsupport then
|
platforms = if EFIsupport then
|
||||||
[ "i686-linux" "x86_64-linux" ]
|
[ "i686-linux" "x86_64-linux" ]
|
||||||
else
|
else
|
||||||
stdenv.lib.platforms.gnu;
|
platforms.gnu;
|
||||||
};
|
};
|
||||||
}
|
}
|
||||||
|
@ -1218,7 +1218,7 @@ let
|
|||||||
buggyBiosCDSupport = config.grub.buggyBiosCDSupport or true;
|
buggyBiosCDSupport = config.grub.buggyBiosCDSupport or true;
|
||||||
};
|
};
|
||||||
|
|
||||||
grub2 = callPackage ../tools/misc/grub/2.0x.nix { libusb = libusb1; flex = flex_2_5_35; };
|
grub2 = callPackage ../tools/misc/grub/2.0x.nix { };
|
||||||
|
|
||||||
grub2_efi = grub2.override { EFIsupport = true; };
|
grub2_efi = grub2.override { EFIsupport = true; };
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user