FunKey-OS/have

15 lines
272 B
Plaintext
Raw Normal View History

2019-03-24 22:24:40 +00:00
#!/bin/sh
case "$1" in
fun)
buildroot/utils/brmake -C buildroot BR2_EXTERNAL=../FunKey O=../FunKey/output
;;
2020-07-27 20:09:31 +01:00
pcba)
buildroot/utils/brmake -C buildroot BR2_EXTERNAL=../PCBA O=../PCBA/output
;;
2019-03-24 22:24:40 +00:00
*)
2020-07-27 20:09:31 +01:00
echo "You can only have fun or pcba!" >&2
2019-03-24 22:24:40 +00:00
exit 1
;;
esac