;;; GNU Guix --- Functional package management for GNU ;;; Copyright © 2024 Janneke Nieuwenhuizen ;;; ;;; This file is part of GNU Guix. ;;; ;;; GNU Guix is free software; you can redistribute it and/or modify it ;;; under the terms of the GNU General Public License as published by ;;; the Free Software Foundation; either version 3 of the License, or (at ;;; your option) any later version. ;;; ;;; GNU Guix is distributed in the hope that it will be useful, but ;;; WITHOUT ANY WARRANTY; without even the implied warranty of ;;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the ;;; GNU General Public License for more details. ;;; ;;; You should have received a copy of the GNU General Public License ;;; along with GNU Guix. If not, see . (define-module (gnu installer kernel) #:use-module (gnu system hurd) #:use-module (guix read-print) #:export (kernel->configuration)) (define-syntax-rule (G_ str) ;; In this file, translatable strings are annotated with 'G_' so xgettext ;; catches them, but translation happens later on at run time. str) (define (kernel->configuration kernel dry-run?) (if (equal? kernel "Hurd") `((kernel %hurd-default-operating-system-kernel) ,(comment (G_ ";; \"noide\" disables the gnumach IDE driver, enabling rumpdisk.\n")) (kernel-arguments '("noide")) (firmware '()) (hurd hurd) (locale-libcs (list glibc/hurd)) (name-service-switch #f) (essential-services (hurd-default-essential-services this-operating-system)) (privileged-programs '()) (setuid-programs %setuid-programs/hurd)) '())) e286b9948b341c395d6aacf3b'>diff
he kernel configs....Reported by dariqq: <https://issues.guix.gnu.org/74280>. This is a followup to commit 92910f5413fd9112c0502138eed5fff758c5de65. * gnu/packages/aux-files/linux-libre/6.11-i686.conf, gnu/packages/aux-files/linux-libre/6.11-x86_64.conf: Disable CONFIG_DRM_I915_REPLAY_GPU_HANGS_API. Change-Id: I345aba7b19d3e7c3e28fec2e6ed2d7bdbc2099c9
AgeCommit message (2020-02-21gnu: nim: Update to 1.0.6....* gnu/packages/nim.scm (nim): Update to 1.0.6. Tanguy Le Carrour
Leo Famulari
2024-10-20gnu: Add linux-libre 6.11.4....* gnu/packages/linux.scm (linux-libre-6.11-version, linux-libre-6.11-gnu-revision, deblob-scripts-6.11, linux-libre-6.11-pristine-source, linux-libre-6.11-source, linux-libre-headers-6.11, linux-libre-6.11): New variables. * gnu/packages/aux-files/linux-libre/6.11-arm.conf, gnu/packages/aux-files/linux-libre/6.11-arm64.conf, gnu/packages/aux-files/linux-libre/6.11-i686.conf, gnu/packages/aux-files/linux-libre/6.11-riscv.conf, gnu/packages/aux-files/linux-libre/6.11-x86.conf: New files. * Makefile.am (AUX_FILES): Add them. Co-authored-by: Ahmad Draidi <a.r.draidi@redscript.org> Change-Id: I35bad9fbea9f568e60e7f24c95f85c240ef96277 Signed-off-by: Leo Famulari <leo@famulari.name> Wilko Meyer