logo

bootstrap-initrd

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

make.sh (251B)


  1. #!/bin/sh
  2. set -ex
  3. cd /extras/make-*/
  4. export LD="tcc"
  5. ./configure --prefix=/usr --disable-nls --disable-dependency-tracking
  6. pdpmake clean
  7. # ARFLAGS as otherwise it passes -o which is invalid
  8. pdpmake ARFLAGS='-r'
  9. pdpmake install INSTALL=install
  10. cd -