logo

bootstrap-initrd

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

bearssl.sh (295B)


  1. #!/bin/sh
  2. set -ex
  3. cd /extras/BearSSL-*/
  4. # Maybe consider setting the soname to libbearssl.so.${pkgver%%.*} as done in aports
  5. pdpmake CC=$CC LD=$CC LDDLL=$CC
  6. install build/brssl /usr/bin/
  7. install -m 644 build/libbearssl.a build/libbearssl.so /usr/lib/
  8. install -m 644 inc/* /usr/include/
  9. cd -