logo

bootstrap-initrd

Linux initrd to bootstrap from a small binary seed git clone https://anongit.hacktivis.me/git/bootstrap-initrd.git/

muxzcat.sh (204B)


  1. #!/bin/sh
  2. set -ex
  3. tar xof /distfiles/muxzcat-*.tar.gz
  4. cd muxzcat-*/
  5. $CC -std=c90 $CFLAGS -o /usr/bin/muxzcat muxzcat.c
  6. ln -s muxzcat /usr/bin/xzcat
  7. ln -s muxzcat /usr/bin/xzdec
  8. cd ..
  9. rm -fr muxzcat-*/