gnu: linux-libre: Apply %boot-logo patch in origin.

* gnu/packages/linux.scm (linux-libre)[origin]: Apply %boot-logo patch
  in origin.
This commit is contained in:
David Craven 2016-09-08 16:01:43 +02:00
parent 6d7ef2aad2
commit 499fb7e0ba
No known key found for this signature in database
GPG key ID: C5E051C79C0BECDB

View file

@ -266,7 +266,8 @@ (define-public linux-libre
(uri (linux-libre-urls version))
(sha256
(base32
"18sy1vh4x66hsk0qbq8g5299my082d530zm8c7xnbakq7350igi6"))))
"18sy1vh4x66hsk0qbq8g5299my082d530zm8c7xnbakq7350igi6"))
(patches (origin-patches %boot-logo-patch))))
(build-system gnu-build-system)
(supported-systems '("x86_64-linux" "i686-linux"))
(native-inputs
@ -274,7 +275,6 @@ (define-public linux-libre
("bc" ,bc)
("openssl" ,openssl)
("module-init-tools" ,module-init-tools)
("patch/freedo+gnu" ,%boot-logo-patch)
,@(let ((conf (kernel-config
(or (%current-target-system)
@ -297,10 +297,6 @@ (define-public linux-libre
(setenv "KCONFIG_NOTIMESTAMP" "1")
(setenv "KBUILD_BUILD_TIMESTAMP" (getenv "SOURCE_DATE_EPOCH"))
;; Apply the neat patch.
(system* "patch" "-p1" "--force"
"-i" (assoc-ref inputs "patch/freedo+gnu"))
(let ((arch ,(system->linux-architecture
(or (%current-target-system)
(%current-system)))))