make the build script more roboust.

This commit is contained in:
Attila Lendvai 2015-05-26 01:50:07 +02:00
parent b94e235b0b
commit b6ba3db100
3 changed files with 13 additions and 2 deletions

1
.gitignore vendored
View File

@ -1,2 +1 @@
build/
notes.txt

View File

@ -1,11 +1,13 @@
#!/bin/bash
set -e
absolutize ()
{
if [ ! -d "$1" ]; then
echo
echo "ERROR: '$1' doesn't exist or not a directory!"
exit -1
kill -INT $$
fi
pushd "$1" >/dev/null
@ -14,6 +16,12 @@ absolutize ()
}
TARGET_PLATFORM=$1
if [ -z ${TARGET_PLATFORM} ]; then
echo "Usage: $0 target-platform (e.g. 'TLWDR4300')"
kill -INT $$
fi
BUILD=`dirname "$0"`"/build/"
BUILD=`absolutize $BUILD`
IMGTEMPDIR="${BUILD}/openwrt-build-image-extras"

4
build/.gitignore vendored Normal file
View File

@ -0,0 +1,4 @@
# Ignore everything in this directory
*
# Except this file
!.gitignore