summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--Makefile.am1
-rw-r--r--etc/kernels-manifest.scm33
2 files changed, 34 insertions, 0 deletions
diff --git a/Makefile.am b/Makefile.am
index b54288c0fce..8b026b6da6e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -689,6 +689,7 @@ EXTRA_DIST += \
689 etc/guix-install.sh \ 689 etc/guix-install.sh \
690 etc/historical-authorizations \ 690 etc/historical-authorizations \
691 etc/news.scm \ 691 etc/news.scm \
692 etc/kernels-manifest.scm \
692 etc/release-manifest.scm \ 693 etc/release-manifest.scm \
693 etc/source-manifest.scm \ 694 etc/source-manifest.scm \
694 etc/system-tests.scm \ 695 etc/system-tests.scm \
diff --git a/etc/kernels-manifest.scm b/etc/kernels-manifest.scm
new file mode 100644
index 00000000000..6da7e374c54
--- /dev/null
+++ b/etc/kernels-manifest.scm
@@ -0,0 +1,33 @@
1;;; GNU Guix --- Functional package management for GNU
2;;; Copyright © 2022 Leo Famulari <leo@famulari.name>
3;;;
4;;; This file is part of GNU Guix.
5;;;
6;;; GNU Guix is free software; you can redistribute it and/or modify it
7;;; under the terms of the GNU General Public License as published by
8;;; the Free Software Foundation; either version 3 of the License, or (at
9;;; your option) any later version.
10;;;
11;;; GNU Guix is distributed in the hope that it will be useful, but
12;;; WITHOUT ANY WARRANTY; without even the implied warranty of
13;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14;;; GNU General Public License for more details.
15;;;
16;;; You should have received a copy of the GNU General Public License
17;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
18
19;;; This file returns a manifest of packages related to linux-libre.
20;;; Simplistically, it selects packages whose names begin with "linux-libre".
21;;; It is used to assist continuous integration of the kernel packages.
22
23(use-modules (guix packages))
24
25(manifest
26 (map package->manifest-entry
27 (fold-packages
28 (lambda (package lst)
29 (if (string-prefix? "linux-libre"
30 (package-name package))
31 (cons package lst)
32 lst))
33 '())))