summaryrefslogtreecommitdiff
path: root/nongnu/packages
diff options
context:
space:
mode:
Diffstat (limited to 'nongnu/packages')
-rw-r--r--nongnu/packages/linux.scm8
1 files changed, 6 insertions, 2 deletions
diff --git a/nongnu/packages/linux.scm b/nongnu/packages/linux.scm
index cf89ec3..c479ca6 100644
--- a/nongnu/packages/linux.scm
+++ b/nongnu/packages/linux.scm
@@ -140,7 +140,10 @@ some freedo package or an output of package-version procedure."
(pristine-source (package-source freedo))
(inputs (map gexp-input-thing (extract-gexp-inputs pristine-source)))
(sources (filter origin? inputs))
- (hash (find-source-hash sources url)))
+ (hash (find-source-hash sources url))
+ (patches
+ (delete (@@ (gnu packages linux) %boot-logo-patch)
+ (origin-patches pristine-source))))
(package
(inherit
(customize-linux
@@ -168,7 +171,8 @@ some freedo package or an output of package-version procedure."
#:source (origin
(method url-fetch)
(uri url)
- (hash hash))
+ (hash hash)
+ (patches patches))
#:configs configs
#:defconfig defconfig
#:modconfig modconfig))