From 92453f265c5016405b5f1775a99b0e16934bee10 Mon Sep 17 00:00:00 2001 From: Avery Terrel Date: Mon, 27 Jul 2026 21:41:18 -0500 Subject: [PATCH] linux: enable BSD_DISKLABEL This enables support for reading subpartitions created on BSD systems. UFS read-only support is already enabled (=m) by default, so no changes are necessary. --- pkgs/os-specific/linux/kernel/common-config.nix | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/pkgs/os-specific/linux/kernel/common-config.nix b/pkgs/os-specific/linux/kernel/common-config.nix index 70b251065dc2a..813406c55d3a5 100644 --- a/pkgs/os-specific/linux/kernel/common-config.nix +++ b/pkgs/os-specific/linux/kernel/common-config.nix @@ -1292,7 +1292,7 @@ let KEXEC_HANDOVER = whenAtLeast "6.16" (option yes); LIVEUPDATE = whenAtLeast "6.19" (option yes); - PARTITION_ADVANCED = yes; # Needed for LDM_PARTITION + PARTITION_ADVANCED = yes; # Needed for LDM_PARTITION and BSD_DISKLABEL # Windows Logical Disk Manager (Dynamic Disk) support LDM_PARTITION = yes; LOGIRUMBLEPAD2_FF = yes; # Logitech Rumblepad 2 force feedback @@ -1300,6 +1300,8 @@ let MEDIA_ATTACH = yes; MEGARAID_NEWGEN = yes; + BSD_DISKLABEL = yes; + MLX5_CORE_EN = option yes; NVME_MULTIPATH = yes;