3
0
Fork 0
forked from mirrors/nixpkgs

Enabling by default the grub support for buggy BIOSes on CD boot.

Two of two, raskin and me, voted for this change.

svn path=/nixpkgs/trunk/; revision=16361
This commit is contained in:
Lluís Batlle i Rossell 2009-07-14 18:23:53 +00:00
parent 80cab44fce
commit b510addf20
2 changed files with 2 additions and 2 deletions

View file

@ -1,4 +1,4 @@
{stdenv, fetchurl, autoconf, automake, buggyBiosCDSupport ? false}:
{stdenv, fetchurl, autoconf, automake, buggyBiosCDSupport ? true}:
stdenv.mkDerivation {
name = "grub-0.97-patch-1.9";

View file

@ -795,7 +795,7 @@ let
grub = import ../tools/misc/grub {
inherit fetchurl autoconf automake;
stdenv = stdenv_32bit;
buggyBiosCDSupport = (getConfig ["grub" "buggyBiosCDSupport"] false);
buggyBiosCDSupport = (getConfig ["grub" "buggyBiosCDSupport"] true);
};
gssdp = import ../development/libraries/gssdp {