unofficial mirror of guix-devel@gnu.org 
 help / color / mirror / code / Atom feed
* Linux kernel
@ 2016-09-08 22:45 David Craven
  2016-09-09  1:36 ` Leo Famulari
  2016-09-09 22:26 ` Linux kernel Ludovic Courtès
  0 siblings, 2 replies; 40+ messages in thread
From: David Craven @ 2016-09-08 22:45 UTC (permalink / raw)
  To: Ludovic Courtès, guix-devel

I reworked the patches for the linux-libre package and made some other
improvements that make customizing the linux-libre package easier. I
tested that everything builds and that there wasn't any breakage on
x86_64, but testing the arm kernel on real hardware is a wip. Is it
easier if I push a branch? They're 17 small patches.

86fb6ee gnu: Add linux-libre-beagle-bone-black.
70d7e6d gnu: Add linux-libre-multi-v7.
8073e6e gnu: make-linux-libre: Add supported-systems option.
6be1f44 gnu: linux-libre: Use kmod.
dd9be2e gnu: make-linux-libre: Add zImage to output.
c4772da gnu: linux-libre: Add extra-version option.
089b957 gnu: linux-libre: Add make-linux-libre-source.
5508f0d gnu: Add u-boot-beagle-bone-black.
db2fc94 gnu: dtc: Remove patch-paths phase.
01c8d0a gnu: linux-libre: Add additional-configuration to make-linux-libre.
9ccf388 gnu: linux-libre: Use make-linux-libre.
86126ae gnu: linux-libre: Add support for cross-compilation.
2ef150b gnu: linux-libre: Move kernel configuration to configure phase.
4737e87 gnu: linux-libre: Apply %boot-logo patch in origin.
c55b169 gnu: linux-libre: Use system->architecture.
c456362 gnu: linux-libre: Use modify-phases.
95fe35a gnu: module-init-tools: Prevent line wrapping.

The interesting parts are shown here:

(define* (make-linux-libre version source supported-systems
                           #:key
                           (extra-version #f)
                           (configuration-file #f)
                           (defconfig "defconfig")
                           (additional-configuration
                            %default-additional-kernel-configuration))
  (package
    (name (if extra-version
              (string-append "linux-libre-" extra-version)
              "linux-libre"))


(define-public linux-libre
  (let* ((version "4.7.2")
         (hash "1rp09y2hv0hvdybm2n2im9717kzxmklpgzs8k1bmdfzqxyg8cb85")
         (conf (kernel-config
                (or (%current-target-system)
                    (%current-system))
                #:variant (version-major+minor version))))
    (make-linux-libre version
                      (make-linux-libre-source version hash)
                      '("x86_64-linux" "i686-linux")
                      #:configuration-file conf)))

^ permalink raw reply	[flat|nested] 40+ messages in thread

end of thread, other threads:[~2016-09-12  7:47 UTC | newest]

Thread overview: 40+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-09-08 22:45 Linux kernel David Craven
2016-09-09  1:36 ` Leo Famulari
2016-09-09 12:34   ` [PATCH 01/17] gnu: module-init-tools: Prevent line wrapping David Craven
2016-09-09 12:34     ` [PATCH 02/17] gnu: linux-libre: Use modify-phases David Craven
2016-09-09 12:34     ` [PATCH 03/17] gnu: linux-libre: Use system->architecture David Craven
2016-09-09 12:34     ` [PATCH 04/17] gnu: linux-libre: Apply %boot-logo patch in origin David Craven
2016-09-11 20:57       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 05/17] gnu: linux-libre: Move kernel configuration to configure phase David Craven
2016-09-11 20:57       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 06/17] gnu: linux-libre: Add support for cross-compilation David Craven
2016-09-11 20:58       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 07/17] gnu: linux-libre: Use make-linux-libre David Craven
2016-09-11 21:07       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 08/17] gnu: make-linux-libre: Add additional-configuration parameter David Craven
2016-09-11 21:13       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 09/17] gnu: dtc: Remove patch-paths phase David Craven
2016-09-11 21:14       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 10/17] gnu: Add u-boot-beagle-bone-black David Craven
2016-09-11 21:16       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 11/17] gnu: Add make-linux-libre-source David Craven
2016-09-11 21:21       ` Ludovic Courtès
2016-09-11 21:23       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 12/17] gnu: make-linux-libre: Add extra-version parameter David Craven
2016-09-11 21:32       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 13/17] gnu: make-linux-libre: Add zImage to output David Craven
2016-09-11 21:24       ` Ludovic Courtès
2016-09-12  6:59         ` Danny Milosavljevic
2016-09-12  7:46           ` David Craven
2016-09-09 12:34     ` [PATCH 14/17] gnu: linux-libre: Use kmod David Craven
2016-09-11 21:25       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 15/17] gnu: make-linux-libre: Add supported-systems parameter David Craven
2016-09-11 21:28       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 16/17] gnu: Add linux-libre-multi-v7 David Craven
2016-09-09 14:31       ` Vincent Legoll
2016-09-11 21:30       ` Ludovic Courtès
2016-09-09 12:34     ` [PATCH 17/17] gnu: Add linux-libre-beagle-bone-black David Craven
2016-09-11 21:33       ` Ludovic Courtès
2016-09-09 22:26 ` Linux kernel Ludovic Courtès
2016-09-09 22:48   ` David Craven
2016-09-10 12:57     ` Ludovic Courtès

Code repositories for project(s) associated with this public inbox

	https://git.savannah.gnu.org/cgit/guix.git

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).