added missing B2xx series

This commit is contained in:
Michael Iedema 2014-09-05 17:30:05 +02:00
parent 85c25d0bb0
commit c6de28ac12
1 changed files with 2 additions and 2 deletions

View File

@ -21,7 +21,7 @@ source $(dirname $0)/common.source
usage () {
echo "# usage: ./build.sh.sh radio-type (component-name)"
echo "# valid radio types are: SDR1, USRP1, B100, B110, N200, N210"
echo "# valid radio types are: SDR1, USRP1, B100, B110, B200, B210, N200, N210"
echo "# (optional) valid component names are: libcoredumper, liba53, subscriberRegistry, smqueue, openbts, asterisk, asterisk-config, system-config"
exit 1
}
@ -47,7 +47,7 @@ elif [ "$RADIO" == "SDR1" ] || [ "$RADIO" == "RAD1" ]; then
elif [ "$RADIO" == "USRP1" ]; then
MANUFACTURER="Ettus"
EXTRA_CONFIGURE_FLAGS="--with-usrp1"
elif [ "$RADIO" == "B100" ] || [ "$RADIO" == "B110" ] || [ "$RADIO" == "N200" ] || [ "$RADIO" == "N210" ]; then
elif [ "$RADIO" == "B100" ] || [ "$RADIO" == "B110" ] || [ "$RADIO" == "B200" ] || [ "$RADIO" == "B210" ] || [ "$RADIO" == "N200" ] || [ "$RADIO" == "N210" ]; then
MANUFACTURER="Ettus"
EXTRA_CONFIGURE_FLAGS="--with-uhd"
fi