You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
MiniDexed/scripts/build-stub.sh

22 lines
266 B

#!/bin/bash
echo "Building stub..."
if [ -z "${RPI}" ] ; then
echo "\$RPI missing, exiting"
exit 1
fi
echo "Building stub for RPI=${RPI}..."
cd external/circle-stdlib/libs/circle/boot
make
if [ "${RPI}" -gt 2 ]
then
make armstub64
fi
cd -
echo " Done."