This repository has no description
0

Configure Feed

Select the types of activity you want to include in your feed.

add initramfs

+12
+12
packages/initramfs/package.nix
··· 1 + { 2 + run, 3 + basic-init, 4 + }: 5 + 6 + run { name = "initramfs.cpio"; } '' 7 + mkdir root 8 + cp ${basic-init}/bin/init root/init 9 + 10 + cd root 11 + find . | cpio -H newc -o > $out 12 + ''