This repository has no description
0

Configure Feed

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

initramfs: boot to busybox sh

+7 -3
+7 -3
packages/initramfs/package.nix
··· 1 1 { 2 2 run, 3 - basic-init, 3 + busybox, 4 4 }: 5 5 6 6 run { name = "initramfs.cpio"; } '' 7 - mkdir root 8 - cp ${basic-init}/bin/init root/init 7 + mkdir -p root/bin 8 + cp ${busybox}/bin/busybox root/bin/sh 9 + 10 + echo '#!/bin/sh' > root/init 11 + echo 'exec /bin/sh' >> root/init 12 + chmod +x root/init 9 13 10 14 cd root 11 15 find . | cpio -H newc -o > $out