about summary refs log tree commit diff
path: root/pkgs/os-specific/linux/kernel/patches.nix
diff options
context:
space:
mode:
authorShea Levy <shea@shealevy.com>2011-10-01 23:00:48 +0000
committerShea Levy <shea@shealevy.com>2011-10-01 23:00:48 +0000
commit72f41379be9d2b37b1078ca4ab87207a054c5662 (patch)
tree9aea6493792ec61d1ad4876d563ae009dfaa320c /pkgs/os-specific/linux/kernel/patches.nix
parent4c3642403ce2909bd2aa2508776852d96376a780 (diff)
downloadnixlib-72f41379be9d2b37b1078ca4ab87207a054c5662.tar
nixlib-72f41379be9d2b37b1078ca4ab87207a054c5662.tar.gz
nixlib-72f41379be9d2b37b1078ca4ab87207a054c5662.tar.bz2
nixlib-72f41379be9d2b37b1078ca4ab87207a054c5662.tar.lz
nixlib-72f41379be9d2b37b1078ca4ab87207a054c5662.tar.xz
nixlib-72f41379be9d2b37b1078ca4ab87207a054c5662.tar.zst
nixlib-72f41379be9d2b37b1078ca4ab87207a054c5662.zip
Add a patch to enable adding efi stub code to the linux kernel
svn path=/nixpkgs/trunk/; revision=29555
Diffstat (limited to 'pkgs/os-specific/linux/kernel/patches.nix')
-rw-r--r--pkgs/os-specific/linux/kernel/patches.nix9
1 files changed, 9 insertions, 0 deletions
diff --git a/pkgs/os-specific/linux/kernel/patches.nix b/pkgs/os-specific/linux/kernel/patches.nix
index 672464e89655..585a8c0340ba 100644
--- a/pkgs/os-specific/linux/kernel/patches.nix
+++ b/pkgs/os-specific/linux/kernel/patches.nix
@@ -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;
+    };
 }