feat(image): install upstream kexec which now have support for UKIs

This commit is contained in:
Lars Sjöström 2025-02-26 14:35:58 +01:00
parent 0a0e9127e0
commit 7365ef8918
No known key found for this signature in database
13 changed files with 74 additions and 7 deletions
pkgs/rootfs

23
pkgs/rootfs/mkinitrd.nix Normal file
View file

@ -0,0 +1,23 @@
{
pkgs,
stdenvNoCC,
patosPkgs,
version,
...
}:
let
pname = "patos-ramdisk";
in
stdenvNoCC.mkDerivation (finalAttrs: {
inherit version;
inherit pname;
buildInputs = with pkgs; [
cpio
xz
];
rootfs = patosPkgs.rootfs.out;
builder = ./mkinitrd.sh;
})