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.
|
#!/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
|