You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
238 B
Bash
18 lines
238 B
Bash
4 years ago
|
#!/bin/bash
|
||
|
if [ $# -eq 1 ]
|
||
|
then
|
||
|
echo "Processing: $1"
|
||
|
if ! fmpp -q -C $1/cfg/board.fmpp
|
||
|
then
|
||
|
echo
|
||
|
echo "aborted"
|
||
|
exit 1
|
||
|
else
|
||
|
echo
|
||
|
echo "done"
|
||
|
exit 0
|
||
|
fi
|
||
|
else
|
||
|
echo "Usage: genboard <board_directory>"
|
||
|
fi
|