migrate
This commit is contained in:
13
build/scripts/entry.sh
Executable file
13
build/scripts/entry.sh
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" >/dev/null 2>&1 && pwd )"
|
||||
|
||||
mkdir -p ${DAPPER_OUTPUT}
|
||||
if [ -e ${DIR}/$1 ]; then
|
||||
${DIR}/"$@"
|
||||
else
|
||||
exec "$@"
|
||||
fi
|
||||
|
||||
chown -R $DAPPER_UID:$DAPPER_GID ${DAPPER_OUTPUT}
|
||||
2
build/scripts/help.sh
Executable file
2
build/scripts/help.sh
Executable file
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
echo help
|
||||
13
build/scripts/sdcc/n76e003-ebake1.ihx
Executable file
13
build/scripts/sdcc/n76e003-ebake1.ihx
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
FOLDER=ebake1
|
||||
CORE=n76e003
|
||||
|
||||
make -C ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}
|
||||
cp ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/${FOLDER}.ihx ${DAPPER_OUTPUT}/${CORE}-${FOLDER}.ihx
|
||||
ls -al ${DAPPER_OUTPUT}/${CORE}-${FOLDER}.ihx
|
||||
|
||||
tail -10 ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/${FOLDER}.mem
|
||||
#ls -la ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/
|
||||
#cp ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/test2.[ml]* ${DAPPER_OUTPUT}/
|
||||
13
build/scripts/sdcc/n76e003-test1.ihx
Executable file
13
build/scripts/sdcc/n76e003-test1.ihx
Executable file
@@ -0,0 +1,13 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
FOLDER=test1
|
||||
CORE=n76e003
|
||||
|
||||
make -C ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}
|
||||
cp ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/${FOLDER}.ihx ${DAPPER_OUTPUT}/${CORE}-${FOLDER}.ihx
|
||||
ls -al ${DAPPER_OUTPUT}/${CORE}-${FOLDER}.ihx
|
||||
|
||||
tail -10 ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/${FOLDER}.mem
|
||||
#ls -la ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/
|
||||
#cp ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/test2.[ml]* ${DAPPER_OUTPUT}/
|
||||
9
build/scripts/sdcc/stm8s-ebake1.ihx
Executable file
9
build/scripts/sdcc/stm8s-ebake1.ihx
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
FOLDER=ebake1
|
||||
CORE=stm8s
|
||||
|
||||
make -C ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}
|
||||
cp ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/${FOLDER}.ihx ${DAPPER_OUTPUT}/${CORE}-${FOLDER}.ihx
|
||||
ls -al ${DAPPER_OUTPUT}/${CORE}-${FOLDER}.ihx
|
||||
9
build/scripts/sdcc/stm8s-test1.ihx
Executable file
9
build/scripts/sdcc/stm8s-test1.ihx
Executable file
@@ -0,0 +1,9 @@
|
||||
#!/bin/bash
|
||||
set -e
|
||||
|
||||
FOLDER=test1
|
||||
CORE=stm8s
|
||||
|
||||
make -C ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}
|
||||
cp ${DAPPER_SOURCE}/fw/${CORE}/${FOLDER}/${FOLDER}.ihx ${DAPPER_OUTPUT}/${CORE}-${FOLDER}.ihx
|
||||
ls -al ${DAPPER_OUTPUT}/${CORE}-${FOLDER}.ihx
|
||||
Reference in New Issue
Block a user