mirror of
https://github.com/FunKey-Project/FunKey-OS.git
synced 2025-12-12 23:58:50 +01:00
15 lines
272 B
Bash
Executable File
15 lines
272 B
Bash
Executable File
#!/bin/sh
|
|
|
|
case "$1" in
|
|
fun)
|
|
buildroot/utils/brmake -C buildroot BR2_EXTERNAL=../FunKey O=../FunKey/output
|
|
;;
|
|
pcba)
|
|
buildroot/utils/brmake -C buildroot BR2_EXTERNAL=../PCBA O=../PCBA/output
|
|
;;
|
|
*)
|
|
echo "You can only have fun or pcba!" >&2
|
|
exit 1
|
|
;;
|
|
esac
|