From 673f2563e48a4e1e37af6985d4d18f56bff741ea Mon Sep 17 00:00:00 2001 From: Arslaan Pathan Date: Thu, 11 Jun 2026 19:25:19 +1200 Subject: Another clean slate. I cannot continue to fight Nix and try to make it do what it was never meant to do. Yocto time! --- nix/initramfs.nix | 18 ------------------ 1 file changed, 18 deletions(-) delete mode 100644 nix/initramfs.nix (limited to 'nix/initramfs.nix') diff --git a/nix/initramfs.nix b/nix/initramfs.nix deleted file mode 100644 index 5d023c4..0000000 --- a/nix/initramfs.nix +++ /dev/null @@ -1,18 +0,0 @@ -{ stdenv, kernel, busybox, cpio }: - -stdenv.mkDerivation { - name = "initramfs-yerba"; - src = ./.; - buildInputs = [ cpio ]; - buildPhase = '' - mkdir -p initramfs/bin - cp -a ${busybox}/_install/* initramfs/ - cp ${../initramfs_init} initramfs/init - chmod +x initramfs/init - cd initramfs - find . | cpio -o -H newc | gzip > $out - ''; - installPhase = '' - echo "initramfs built" - ''; -} -- cgit v1.2.3