summaryrefslogtreecommitdiff
path: root/gnu/build/linux-modules.scm
diff options
context:
space:
mode:
authorThéo Tyburn <theo.tyburn@posteo.net>2026-06-03 10:56:10 +0200
committerNguyễn Gia Phong <cnx@loang.net>2026-08-31 11:00:19 +0900
commitc62ebcd02c2eb190ab5dc157475ef4a93a1c7581 (patch)
treef178f262874978ac0be45e5499db5cc2d63248fe /gnu/build/linux-modules.scm
parent30cb1f541eb99b0fbbec1f8f29796151103c5f2b (diff)
doc: Move Commentary above module definition.
Merges: https://codeberg.org/guix/guix/pulls/9052 Reviewed-by: Ludovic Courtès <ludo@gnu.org> Reviewed-by: Maxim Cournoyer <maxim@guixotic.coop> Signed-off-by: Nguyễn Gia Phong <cnx@loang.net>
Diffstat (limited to 'gnu/build/linux-modules.scm')
-rw-r--r--gnu/build/linux-modules.scm12
1 files changed, 6 insertions, 6 deletions
diff --git a/gnu/build/linux-modules.scm b/gnu/build/linux-modules.scm
index 6bf71100e49..ae0137e1c12 100644
--- a/gnu/build/linux-modules.scm
+++ b/gnu/build/linux-modules.scm
@@ -20,6 +20,12 @@
20;;; You should have received a copy of the GNU General Public License 20;;; You should have received a copy of the GNU General Public License
21;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>. 21;;; along with GNU Guix. If not, see <http://www.gnu.org/licenses/>.
22 22
23;;; Commentary:
24;;;
25;;; Tools to deal with Linux kernel modules.
26;;;
27;;; Code:
28
23(define-module (gnu build linux-modules) 29(define-module (gnu build linux-modules)
24 #:use-module (guix elf) 30 #:use-module (guix elf)
25 #:use-module (guix glob) 31 #:use-module (guix glob)
@@ -78,12 +84,6 @@
78 84
79 make-linux-module-directory)) 85 make-linux-module-directory))
80 86
81;;; Commentary:
82;;;
83;;; Tools to deal with Linux kernel modules.
84;;;
85;;; Code:
86
87(define current-module-debugging-port 87(define current-module-debugging-port
88 (make-parameter (%make-void-port "w"))) 88 (make-parameter (%make-void-port "w")))
89 89