107 lines
3 KiB
Bash
Executable file
107 lines
3 KiB
Bash
Executable file
#!/bin/bash
|
|
|
|
#
|
|
# Copyright (c) 2024 Scott Duensing, scott@kangaroopunch.com
|
|
#
|
|
# Permission is hereby granted, free of charge, to any person obtaining a copy
|
|
# of this software and associated documentation files (the "Software"), to deal
|
|
# in the Software without restriction, including without limitation the rights
|
|
# to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
|
# copies of the Software, and to permit persons to whom the Software is
|
|
# furnished to do so, subject to the following conditions:
|
|
#
|
|
# The above copyright notice and this permission notice shall be included in
|
|
# all copies or substantial portions of the Software.
|
|
#
|
|
# THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
|
# IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
|
# FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
|
# AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
|
# LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
|
# OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
|
# SOFTWARE.
|
|
#
|
|
|
|
|
|
REMOTE1=https://github.com/llvm-mos/llvm-mos-sdk/releases/latest/download/llvm-mos-linux.tar.xz
|
|
LOCAL1=llvm-mos-linux.tar.xz
|
|
|
|
REMOTE2=https://kangaroopunch.com/files/serve/shared/llvm-mos-f256.tar.xz
|
|
LOCAL2=llvm-mos-f256.tar.xz
|
|
|
|
REMOTE3=https://github.com/pweingar/FoenixMgr/archive/refs/heads/master.zip
|
|
LOCAL3=master.zip
|
|
|
|
|
|
if [[ -d $(basename -s .tar.xz ${LOCAL1}) ]]; then
|
|
echo "You already have an llvm-mos directory. Exiting."
|
|
exit 1
|
|
fi
|
|
|
|
PYTHON=$(which pythonx)
|
|
if [[ $? != 0 ]]; then
|
|
echo "Unable to find Python. Exiting."
|
|
fi
|
|
|
|
PIP=$(which pip)
|
|
if [[ $? != 0 ]]; then
|
|
echo "Unable to find pip. Exiting."
|
|
fi
|
|
|
|
CURL=$(which curl)
|
|
if [[ $? == 0 ]]; then
|
|
${CURL} -L ${REMOTE1} > ${LOCAL1}
|
|
${CURL} -L ${REMOTE2} > ${LOCAL2}
|
|
${CURL} -L ${REMOTE3} > ${LOCAL3}
|
|
else
|
|
WGET=$(which wget)
|
|
if [[ $? == 0 ]]; then
|
|
wget ${REMOTE1}
|
|
wget ${REMOTE2}
|
|
wget ${REMOTE3}
|
|
else
|
|
echo "Unable to locate curl or wget. Exiting."
|
|
exit 1
|
|
fi
|
|
fi
|
|
|
|
tar xf ${LOCAL1}
|
|
tar xf ${LOCAL2}
|
|
unzip -o ${LOCAL3}
|
|
|
|
rm ${LOCAL1}
|
|
rm ${LOCAL2}
|
|
rm ${LOCAL3}
|
|
|
|
rm -f overlay.windows
|
|
rm -f overlay.macos
|
|
mv overlay.linux overlay
|
|
|
|
rm -f *.bat
|
|
|
|
mv FoenixMgr-master FoenixMgr
|
|
pushd FoenixMgr
|
|
pip install -r requirements.txt
|
|
popd
|
|
|
|
echo "[DEFAULT]" > foenixmgr.ini
|
|
echo "port=/dev/ttyUSB0" >> foenixmgr.ini
|
|
echo "labels=sample.lbl" >> foenixmgr.ini
|
|
echo "flash_address=380000" >> foenixmgr.ini
|
|
echo "chunk_size=1024" >> foenixmgr.ini
|
|
echo "cpu=65c02" >> foenixmgr.ini
|
|
|
|
pushd llvm-mos/bin
|
|
ln -s mos-clang++ mos-f256-clang++
|
|
ln -s mos-clang-cpp mos-f256-clang-cpp
|
|
ln -s mos-clang mos-f256-clang
|
|
popd
|
|
|
|
echo
|
|
echo -----------------------------------------------------------------------------
|
|
echo Installation complete!
|
|
echo
|
|
echo Please visit https://github.com/pweingar/FoenixMgr to learn how to configure
|
|
echo FoenixMgr for your machine. Edit the foenixmgr.ini file in this directory.
|
|
echo -----------------------------------------------------------------------------
|
|
echo
|