Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 29 additions & 0 deletions changelog.d/20260306_145354_PL-135206-dm-raid_scriv.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!--

A new changelog entry.

Delete placeholder items that do not apply. Empty sections will be removed
automatically during release.

Leave the XX.XX as is: this is a placeholder and will be automatically filled
correctly during the release and helps when backporting over multiple platform
branches.

-->

### Impact

<!-- Impact means "when this change is rolled out, there
might be interruptions/downtimes/required actions/... that
IMPACT THE RUNNING APPLICATION NEGATIVELY.

Having new features or changed is not an "impact". That's what
the main changelog (see below) is for.
-->

- A bullet item for the Impact category.


### NixOS XX.XX platform

- flyingcircus.raid: ensure dm-raid module is loaded (PL-135206)
5 changes: 3 additions & 2 deletions nixos/services/raid/default.nix
Original file line number Diff line number Diff line change
Expand Up @@ -28,11 +28,12 @@
command = "${pkgs.check_md_raid}/bin/check_md_raid";
};

# MegaRAID

boot.initrd.kernelModules = [
# MegaRAID
"megaraid_sas"
"mpt3sas"
# md_raid
"dm-raid"
];

environment.systemPackages = with pkgs; [
Expand Down
Loading