bootstrap.sh 276 B

1234567891011121314151617
  1. #!/bin/bash
  2. echo Downloading the build tool...
  3. curl -L http://sevki.co/get-build -o util/build
  4. chmod +x util/build
  5. # this will make booting a VM easier
  6. mkdir -p tmp
  7. cat <<EOF
  8. And build:
  9. ./util/build //.:kernel
  10. See \`build -h' for more information on the build tool.
  11. EOF