mirror of https://github.com/probonopd/MiniDexed
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.
23 lines
266 B
23 lines
266 B
1 year ago
|
#!/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."
|