This repository has no description
0

Configure Feed

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

1{ 2 run, 3 busybox, 4}: 5 6run { name = "initramfs.cpio"; } '' 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 13 14 cd root 15 find . | cpio -H newc -o > $out 16''