make the build script more roboust.
This commit is contained in:
parent
b94e235b0b
commit
b6ba3db100
1
.gitignore
vendored
1
.gitignore
vendored
@ -1,2 +1 @@
|
|||||||
build/
|
|
||||||
notes.txt
|
notes.txt
|
||||||
|
10
build.sh
10
build.sh
@ -1,11 +1,13 @@
|
|||||||
#!/bin/bash
|
#!/bin/bash
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
absolutize ()
|
absolutize ()
|
||||||
{
|
{
|
||||||
if [ ! -d "$1" ]; then
|
if [ ! -d "$1" ]; then
|
||||||
echo
|
echo
|
||||||
echo "ERROR: '$1' doesn't exist or not a directory!"
|
echo "ERROR: '$1' doesn't exist or not a directory!"
|
||||||
exit -1
|
kill -INT $$
|
||||||
fi
|
fi
|
||||||
|
|
||||||
pushd "$1" >/dev/null
|
pushd "$1" >/dev/null
|
||||||
@ -14,6 +16,12 @@ absolutize ()
|
|||||||
}
|
}
|
||||||
|
|
||||||
TARGET_PLATFORM=$1
|
TARGET_PLATFORM=$1
|
||||||
|
|
||||||
|
if [ -z ${TARGET_PLATFORM} ]; then
|
||||||
|
echo "Usage: $0 target-platform (e.g. 'TLWDR4300')"
|
||||||
|
kill -INT $$
|
||||||
|
fi
|
||||||
|
|
||||||
BUILD=`dirname "$0"`"/build/"
|
BUILD=`dirname "$0"`"/build/"
|
||||||
BUILD=`absolutize $BUILD`
|
BUILD=`absolutize $BUILD`
|
||||||
IMGTEMPDIR="${BUILD}/openwrt-build-image-extras"
|
IMGTEMPDIR="${BUILD}/openwrt-build-image-extras"
|
||||||
|
4
build/.gitignore
vendored
Normal file
4
build/.gitignore
vendored
Normal file
@ -0,0 +1,4 @@
|
|||||||
|
# Ignore everything in this directory
|
||||||
|
*
|
||||||
|
# Except this file
|
||||||
|
!.gitignore
|
Loading…
x
Reference in New Issue
Block a user