diff options
| author | Arslaan Pathan <[email protected]> | 2026-06-11 19:25:19 +1200 |
|---|---|---|
| committer | Arslaan Pathan <[email protected]> | 2026-06-11 19:25:19 +1200 |
| commit | 673f2563e48a4e1e37af6985d4d18f56bff741ea (patch) | |
| tree | 7b3aadf32be6f18de9ddf617605352ea78486323 /nix/initramfs.nix | |
| parent | 3b00ff6e47d219276459fdb66e8497b0d3cd5249 (diff) | |
| download | yerbalinux-673f2563e48a4e1e37af6985d4d18f56bff741ea.tar.xz yerbalinux-673f2563e48a4e1e37af6985d4d18f56bff741ea.zip | |
Another clean slate. I cannot continue to fight Nix and try to make it do what it was never meant to do.
Yocto time!
Diffstat (limited to 'nix/initramfs.nix')
| -rw-r--r-- | nix/initramfs.nix | 18 |
1 files changed, 0 insertions, 18 deletions
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" - ''; -} |
