diff --git a/.gitignore b/.gitignore index 8bb6ef5..29fd2d7 100644 --- a/.gitignore +++ b/.gitignore @@ -1,2 +1,2 @@ notes.txt -authorized_keys +build/ diff --git a/build.sh b/build.sh index e6affd4..f2ab58d 100755 --- a/build.sh +++ b/build.sh @@ -2,25 +2,12 @@ set -e -absolutize () -{ - if [ ! -d "$1" ]; then - echo - echo "ERROR: '$1' doesn't exist or not a directory!" - kill -INT $$ - fi - - pushd "$1" >/dev/null - echo `pwd` - popd >/dev/null -} - TARGET_ARCHITECTURE=$1 TARGET_VARIANT=$2 TARGET_DEVICE=$3 BUILD=`dirname "$0"`"/build/" -BUILD=`absolutize $BUILD` +BUILD=`readlink -f $BUILD` ### ### chose a release diff --git a/build/.gitignore b/build/.gitignore deleted file mode 100644 index 5e7d273..0000000 --- a/build/.gitignore +++ /dev/null @@ -1,4 +0,0 @@ -# Ignore everything in this directory -* -# Except this file -!.gitignore diff --git a/image-extras/common/etc/dropbear/.gitignore b/image-extras/common/etc/dropbear/.gitignore new file mode 100644 index 0000000..23d7dc2 --- /dev/null +++ b/image-extras/common/etc/dropbear/.gitignore @@ -0,0 +1,3 @@ +# you can put your ssh public key into authorized_keys, +# but we don't ever want it to be committed to the repo +authorized_keys diff --git a/image-extras/common/etc/dropbear/authorized_keys b/image-extras/common/etc/dropbear/authorized_keys deleted file mode 100644 index 1c2ae34..0000000 --- a/image-extras/common/etc/dropbear/authorized_keys +++ /dev/null @@ -1 +0,0 @@ -# this file may contain ssh public keys for passwordless ssh root login