build: remove execution bits, not meant to be handled manually

This commit is contained in:
Franco Fichtner 2015-05-16 12:39:09 +02:00
parent 5b550b2045
commit 35068a9393
11 changed files with 12 additions and 9 deletions

0
build/base.sh Executable file → Normal file
View File

3
build/clean.sh Executable file → Normal file
View File

@ -29,6 +29,9 @@ set -e
. ./common.sh
# remove all mandatory arguments
shift; shift; shift; shift; shift; shift
for ARG in ${@}; do
case ${ARG} in
stage) # kernel and base build cleanup

0
build/common.sh Executable file → Normal file
View File

0
build/core.sh Executable file → Normal file
View File

0
build/iso.sh Executable file → Normal file
View File

0
build/kernel.sh Executable file → Normal file
View File

0
build/memstick.sh Executable file → Normal file
View File

0
build/nano.sh Executable file → Normal file
View File

3
build/ports.sh Executable file → Normal file
View File

@ -29,6 +29,9 @@ set -e
. ./common.sh
# remove all mandatory arguments
shift; shift; shift; shift; shift; shift
PORT_LIST=$(cat ${PRODUCT_CONFIG}/ports.conf)
git_clear ${PORTSDIR}

0
build/regress.sh Executable file → Normal file
View File

15
build/release.sh Executable file → Normal file
View File

@ -27,13 +27,11 @@
set -e
if [ -n "${1}" ]; then
# pull in a real release tag
PRODUCT_VERSION=${1}
fi
. ./common.sh
# remove all mandatory arguments
shift; shift; shift; shift; shift; shift
if [ -n "${1}" ]; then
# make sure the all-encompassing package is a release, too
setup_stage ${STAGEDIR}
@ -49,10 +47,9 @@ rm -f ${SETSDIR}/release-*_${PRODUCT_FLAVOUR}-${ARCH}.tar
echo ">>> Creating images for ${PRODUCT_RELEASE}"
./clean.sh images
./memstick.sh
./nano.sh
./iso.sh
sh ./memstick.sh
sh ./nano.sh
sh ./iso.sh
setup_stage ${STAGEDIR}