diff options
author | Steve MacLean, Qualcomm Datacenter Technologies, Inc <sdmaclea@qti.qualcomm.com> | 2017-02-16 03:04:30 +0000 |
---|---|---|
committer | Steve MacLean, Qualcomm Datacenter Technologies, Inc <sdmaclea@qti.qualcomm.com> | 2017-02-16 03:04:30 +0000 |
commit | c0f692d9f1a2d0a0679e4284f356c79916d3f281 (patch) | |
tree | db5135d0a26a5a6c3179f37e006993b12850885f | |
parent | e50207b834d9946027828f8c3b3467e29ac2efb1 (diff) | |
download | coreclr-c0f692d9f1a2d0a0679e4284f356c79916d3f281.tar.gz coreclr-c0f692d9f1a2d0a0679e4284f356c79916d3f281.tar.bz2 coreclr-c0f692d9f1a2d0a0679e4284f356c79916d3f281.zip |
[Unix] Fix arm/lldb rootfs breakage
-rwxr-xr-x | cross/build-rootfs.sh | 7 |
1 files changed, 5 insertions, 2 deletions
diff --git a/cross/build-rootfs.sh b/cross/build-rootfs.sh index c40d644e45..955bb77b96 100755 --- a/cross/build-rootfs.sh +++ b/cross/build-rootfs.sh @@ -5,7 +5,7 @@ usage() echo "Usage: $0 [BuildArch] [LinuxCodeName] [lldbx.y] [--skipunmount]" echo "BuildArch can be: arm(default), armel, arm64, x86" echo "LinuxCodeName - optional, Code name for Linux, can be: trusty(default), vivid, wily, xenial. If BuildArch is armel, LinuxCodeName is jessie(default) or tizen." - echo "lldbx.y - optional, LLDB version, can be: lldb3.6, lldb3.8" + echo "lldbx.y - optional, LLDB version, can be: lldb3.6(default), lldb3.8, no-lldb" echo "--skipunmount - optional, will skip the unmount of rootfs folder." exit 1 } @@ -16,7 +16,7 @@ __InitialDir=$PWD __BuildArch=arm __UbuntuArch=armhf __UbuntuRepo="http://ports.ubuntu.com/" -__LLDB_Package="" +__LLDB_Package_Default="lldb-3.6-dev" __SkipUnmount=0 # base development support @@ -70,6 +70,9 @@ for i in "$@" ; do lldb3.8) __LLDB_Package="lldb-3.8-dev" ;; + no-lldb) + unset __LLDB_Package + ;; vivid) if [ "$__LinuxCodeName" != "jessie" ]; then __LinuxCodeName=vivid |