This repository has no description
0

Configure Feed

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

init: use shell script (#52)

requires kernel bump for CONFIG_BINFMT_SCRIPT=y

+11 -5
+8
packages/initramfs/init.sh
··· 1 + #!/bin/sh 2 + 3 + # mkdir -p /dev /proc /sys 4 + # mount -t proc proc /proc 5 + # mount -t sysfs sysfs /sys 6 + # mount -t devtmpfs devtmpfs /dev 7 + 8 + exec /bin/sh
+2 -4
packages/initramfs/package.nix
··· 376 376 377 377 run { name = "initramfs.cpio"; } '' 378 378 mkdir -p root/bin 379 + cp ${./init.sh} root/init 379 380 cp ${busybox}/bin/busybox root/bin/busybox 381 + 380 382 for applet in ${lib.concatStringsSep " " applets}; do 381 383 ln -s busybox root/bin/$applet 382 384 done 383 - 384 - echo '#!/bin/sh' > root/init 385 - echo 'exec /bin/sh' >> root/init 386 - chmod +x root/init 387 385 388 386 cd root 389 387 find . | cpio -H newc -o > $out
+1 -1
packages/linux/package.nix
··· 26 26 owner = "tombl"; 27 27 repo = "linux"; 28 28 rev = "refs/heads/wasm"; 29 - hash = "sha256-YxdPx4aqgJDmSHM6cOkbiqA1pbinQzKK+3coP7YI7IU="; 29 + hash = "sha256-2AGcJnL2XT5XYSEEErdPtvylC27OlNHqqkbGP99Rlg0="; 30 30 }; 31 31 path = [ 32 32 bc