logo

live-bootstrap

Mirror of <https://github.com/fosslinux/live-bootstrap>

pass1.kaem (430B)


  1. #!/bin/sh
  2. #
  3. # SPDX-FileCopyrightText: 2023 Richard Masters <grick23@gmail.com>
  4. # SPDX-License-Identifier: MIT
  5. set -ex
  6. cd src
  7. tcc -m32 -march=i386 -std=c89 -I../../tcc/tcc-0.9.27/include -o ${BINDIR}/kexec-fiwix kexec-fiwix.c
  8. cd ..
  9. # Checksums
  10. if match x${UPDATE_CHECKSUMS} xTrue; then
  11. sha256sum -o ${pkg}.checksums \
  12. /usr/bin/kexec-fiwix
  13. cp ${pkg}.checksums ${SRCDIR}
  14. else
  15. sha256sum -c ${pkg}.checksums
  16. fi