diff options
author | Christopher Baines <mail@cbaines.net> | 2025-03-03 14:03:54 +0000 |
---|---|---|
committer | Christopher Baines <mail@cbaines.net> | 2025-03-03 14:13:52 +0000 |
commit | 7fc9cbd3e48d3afbafaa9326b9a6ecf6fdca9032 (patch) | |
tree | 19a6235f468bda02a055ed94ef918260055b3b3c | |
parent | f203028ef869945b3d44f0f2f7b16d61d064190c (diff) | |
download | guix-7fc9cbd3e48d3afbafaa9326b9a6ecf6fdca9032.tar.gz guix-7fc9cbd3e48d3afbafaa9326b9a6ecf6fdca9032.zip |
gnu: linux-libre-arm64-honeycomb: Switch to lts version.
Plus enable more modules, some that I added when playing around with enabling
the SFP+ ports, and others that seem to be required for vsockets (to have
parity with x86_64-linux, e.g. #76352).
* gnu/packages/linux.scm (linux-libre-arm64-honeycomb): Update to
linux-libre-lts-version and enable more modules.
Change-Id: I50689c5420d25a6e83bf0c0d6a64ef02019826ed
-rw-r--r-- | gnu/packages/linux.scm | 37 |
1 files changed, 32 insertions, 5 deletions
diff --git a/gnu/packages/linux.scm b/gnu/packages/linux.scm index 2930b9a52f..f47d96e3aa 100644 --- a/gnu/packages/linux.scm +++ b/gnu/packages/linux.scm @@ -1379,9 +1379,9 @@ Linux kernel. It has been modified to remove all non-free binary blobs.") (define-public linux-libre-arm64-honeycomb ;; Kernel for use on the HoneyComb LX2 boards: ;; <https://shop.solid-run.com/product/SRCFTXE000IV13/>. - (make-linux-libre* linux-libre-5.15-version - linux-libre-5.15-gnu-revision - linux-libre-5.15-source + (make-linux-libre* linux-libre-lts-version + linux-libre-lts-gnu-revision + linux-libre-lts-source '("aarch64-linux") #:extra-version "arm64-honeycomb" #:extra-options @@ -1433,8 +1433,35 @@ Linux kernel. It has been modified to remove all non-free binary blobs.") ("CONFIG_CRYPTO_USER_API_AEAD" . #true) ;; For connecting to ci.guix.gnu.org over VPN. - ("CONFIG_WIREGUARD" . m)) - (default-extra-linux-options linux-libre-5.15-version)))) + ("CONFIG_WIREGUARD" . m) + + ;; restool support + ("CONFIG_FSL_MC_UAPI_SUPPORT" . #t) + ("CONFIG_FSL_MC_BUS" . #t) + ("CONFIG_VFIO_FSL_MC" . #t) + ("CONFIG_FSL_MC_DPIO" . #t) + ("CONFIG_ARM_GIC_V3_ITS_FSL_MC" . #t) + + ;; vsockets support + ;; TODO This seems to be enabled by default on other + ;; architectures? + ("CONFIG_VSOCKETS" . m) + ("CONFIG_VSOCKETS_DIAG" . m) + ("CONFIG_VSOCKETS_LOOPBACK" . m) + ("CONFIG_VMWARE_VMCI_VSOCKETS" . m) + ("CONFIG_VIRTIO_VSOCKETS" . m) + ("CONFIG_VIRTIO_VSOCKETS_COMMON" . m) + ("CONFIG_HYPERV_VSOCKETS" . m) + ("CONFIG_VHOST_IOTLB" . m) + ("CONFIG_VHOST_RING" . m) + ("CONFIG_VHOST_TASK" . #true) + ("CONFIG_VHOST" . m) + ("CONFIG_VHOST_MENU" . #true) + ("CONFIG_VHOST_NET" . m) + ("CONFIG_VHOST_SCSI" . m) + ("CONFIG_VHOST_VSOCK" . m) + ("CONFIG_VHOST_VDPA" . m)) + (default-extra-linux-options linux-libre-lts-version)))) (define-public linux-libre-riscv64-generic (make-linux-libre* linux-libre-version |