Add a patch to enable adding efi stub code to the linux kernel

svn path=/nixpkgs/trunk/; revision=29555
This commit is contained in:
Shea Levy 2011-10-01 23:00:48 +00:00
parent 4c3642403c
commit 72f41379be
2 changed files with 1787 additions and 0 deletions

File diff suppressed because it is too large Load Diff

View File

@ -415,4 +415,13 @@ rec {
name = "glibc-getline";
patch = ./getline.patch;
};
efi_stub =
{
# Patch to enable making the kernel a bootable efi image to avoid
# needing a bootloader on efi systems
# From the x86/efi-stub branch of git://github.com/mfleming/linux-2.6.git
name = "efi-stub";
patch = ./efi-stub.patch;
};
}