summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2014-08-04 12:58:18 +0200
committerWaldemar Brodkorb <wbx@openadk.org>2014-08-04 12:58:23 +0200
commite6f486da076d5da2f04708d4b9288892eaa01c8d (patch)
tree33d1447f92c19270ad8e2f3b7821652c480889aa
parentfdc3ccf240ce252c81baa79e41649a10c20699ae (diff)
assume git, when -s is given
-rwxr-xr-xembedded-test.sh14
1 files changed, 9 insertions, 5 deletions
diff --git a/embedded-test.sh b/embedded-test.sh
index 9ec7d52..e144a4e 100755
--- a/embedded-test.sh
+++ b/embedded-test.sh
@@ -144,19 +144,23 @@ fi
case $libc in
uclibc-ng)
version=1.0.0beta5
- libver=uClibc-ng-${version}
+ gitversion=git
+ libver=uClibc-ng-${gitversion}
;;
uclibc)
version=0.9.33.2
- libver=uClibc-${version}
+ gitversion=0.9.34-git
+ libver=uClibc-${gitversion}
;;
glibc)
version=2.19
- libver=glibc-${version}
+ gitversion=2.19.90
+ libver=glibc-${gitversion}
;;
musl)
version=1.1.4
- libver=musl-${version}
+ gitversion=git
+ libver=musl-${gitversion}
;;
*)
echo "c library not supported"
@@ -620,7 +624,7 @@ build_openadk() {
DEFAULT="$DEFAULT VERBOSE=1"
fi
if [ ! -z $source ];then
- DEFAULT="$DEFAULT ADK_NO_CHECKSUM=1"
+ DEFAULT="$DEFAULT ADK_NO_CHECKSUM=y ADK_LIBC_GIT=y"
fi
if [ $2 -eq 0 ];then
DEFAULT="$DEFAULT ADK_TEST_BASE=y"