about summary refs log tree commit diff
path: root/nixos/tests/fsck.nix
AgeCommit message (Collapse)AuthorFilesLines
2023-06-16nixos/qemu-vm: use persistent block device namesnikstur1-3/+7
This change removes the bespoke logic around identifying block devices. Instead of trying to find the right device by iterating over `qemu.drives` and guessing the right partition number (e.g. /dev/vda{1,2}), devices are now identified by persistent names provided by udev in /dev/disk/by-*. Before this change, the root device was formatted on demand in the initrd. However, this makes it impossible to use filesystem identifiers to identify devices. Now, the formatting step is performed before the VM is started. Because some tests, however, rely on this behaviour, a utility function to replace this behaviour in added in /nixos/tests/common/auto-format-root-device.nix. Devices that contain neither a partition table nor a filesystem are identified by their hardware serial number which is injecetd via QEMU (and is thus persistent and predictable). PCI paths are not a reliably way to identify devices because their availability and numbering depends on the QEMU machine type. This change makes the module more robust against changes in QEMU and the kernel (non-persistent device naming) and by decoupling abstractions (i.e. rootDevice, bootPartition, and bootLoaderDevice) enables further improvement down the line.
2023-06-04nixos: Use systemd-makefs for autoFormatWill Fancher1-1/+1
2023-02-08systemd-stage-1: fsckWill Fancher1-1/+11
2022-03-28treewide: machine -> nodes.machineRobert Hensing1-1/+1
2021-02-14nixosTests.*: update to use virtualisation.fileSystemsMaciej Krüger1-1/+1
2019-11-05nixos/fsck: port test to pythonMarijan1-10/+12
2018-08-28systemd: ensure fsck Requires/After links are created in mount unitsMatt McHenry1-0/+29
systemd-fsck-generator only produces these lines if it can find the necessary fsck executable in its PATH. fixes #29139.