Archived
1
0
Fork 0

gnu: kernel-config: Find configuration file for i686.

* gnu/packages/linux.scm (kernel-config): Find configuration file for
  i686.
  (make-linux-libre)[origin]: Apply patch correctly.
This commit is contained in:
David Craven 2016-09-15 21:54:01 +02:00
parent 4a187c556d
commit 25847b327e
No known key found for this signature in database
GPG key ID: C5E051C79C0BECDB

View file

@ -182,7 +182,7 @@
for ARCH and optionally VARIANT, or #f if there is no such configuration." for ARCH and optionally VARIANT, or #f if there is no such configuration."
(let* ((name (string-append "linux-libre-" (let* ((name (string-append "linux-libre-"
(if variant (string-append variant "-") "") (if variant (string-append variant "-") "")
arch ".conf")) (if (string=? "i386" arch) "i686" arch) ".conf"))
(file (string-append "gnu/packages/" name))) (file (string-append "gnu/packages/" name)))
(search-path %load-path file))) (search-path %load-path file)))
@ -228,7 +228,7 @@ for ARCH and optionally VARIANT, or #f if there is no such configuration."
(method url-fetch) (method url-fetch)
(uri (linux-libre-urls version)) (uri (linux-libre-urls version))
(sha256 (base32 hash)) (sha256 (base32 hash))
(patches (origin-patches %boot-logo-patch)))) (patches (list %boot-logo-patch))))
(supported-systems supported-systems) (supported-systems supported-systems)
(build-system gnu-build-system) (build-system gnu-build-system)
(native-inputs (native-inputs