gnu-efi: Remove unneeded aarch64 patch
Not needed after the upgrade to 3.0.5. Yay!
This commit is contained in:
parent
8ba043a540
commit
321b639d76
@ -1,13 +0,0 @@
|
|||||||
diff -ru gnu-efi-3.0.4-orig/lib/aarch64/initplat.c gnu-efi-3.0.4/lib/aarch64/initplat.c
|
|
||||||
--- gnu-efi-3.0.4-orig/lib/aarch64/initplat.c 2016-03-17 09:53:14.000000000 -0400
|
|
||||||
+++ gnu-efi-3.0.4/lib/aarch64/initplat.c 2016-12-03 17:53:57.166575974 -0500
|
|
||||||
@@ -41,7 +41,8 @@
|
|
||||||
|
|
||||||
void *memcpy(void *dest, const void *src, __SIZE_TYPE__ n)
|
|
||||||
{
|
|
||||||
- unsigned char *p = dest, *q = src;
|
|
||||||
+ unsigned char *p = dest;
|
|
||||||
+ const unsigned char *q = src;
|
|
||||||
|
|
||||||
while (n--)
|
|
||||||
*p++ = *q++;
|
|
@ -9,8 +9,6 @@ stdenv.mkDerivation rec {
|
|||||||
sha256 = "08hb2gpzcj5p743wcagm0j2m4gh100xv12llpbjc13zi2icwv3xx";
|
sha256 = "08hb2gpzcj5p743wcagm0j2m4gh100xv12llpbjc13zi2icwv3xx";
|
||||||
};
|
};
|
||||||
|
|
||||||
patches = optional stdenv.isAarch64 ./aarch64-fix-discarded-qualifier.patch;
|
|
||||||
|
|
||||||
buildInputs = [ pciutils ];
|
buildInputs = [ pciutils ];
|
||||||
|
|
||||||
hardeningDisable = [ "stackprotector" ];
|
hardeningDisable = [ "stackprotector" ];
|
||||||
|
Loading…
x
Reference in New Issue
Block a user