diff options
author | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2018-03-07 21:20:55 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@uclibc-ng.org> | 2018-03-07 21:20:55 +0100 |
commit | d5193809c182eb1e9914e3609b8cbe47f61545c2 (patch) | |
tree | a98e37957e8f0e8cbd8b5359841beee9a59eb318 /scripts | |
parent | 9bb871a0bb4c239239944d28bd4d5cfa19d84f62 (diff) |
travis: check waldux
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/travis.sh | 11 |
1 files changed, 6 insertions, 5 deletions
diff --git a/scripts/travis.sh b/scripts/travis.sh index d62ed5e7e..648533cc9 100755 --- a/scripts/travis.sh +++ b/scripts/travis.sh @@ -1,9 +1,10 @@ #!/bin/bash -arch=$1 -system=$2 -vars="ADK_TARGET_OS=Linux ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=$system ADK_APPLIANCE=new" -if [ ! -z $3 ]; then - endian=$3 +os=$1 +arch=$2 +system=$3 +vars="ADK_TARGET_OS=$os ADK_TARGET_ARCH=$arch ADK_TARGET_SYSTEM=$system ADK_APPLIANCE=new" +if [ ! -z $4 ]; then + endian=$4 vars="$vars ADK_TARGET_ENDIAN=$endian" fi make $vars defconfig |