diff --git a/cross/build-rootfs.sh b/cross/build-rootfs.sh index b085c8d7..7182210a 100755 --- a/cross/build-rootfs.sh +++ b/cross/build-rootfs.sh @@ -2,10 +2,11 @@ usage() { - echo "Usage: $0 [BuildArch] [UbuntuCodeName] [lldbx.y]" + echo "Usage: $0 [BuildArch] [UbuntuCodeName] [lldbx.y] [--SkipUnmount]" echo "BuildArch can be: arm(default), armel, x86" echo "UbuntuCodeName - optional, Code name for Ubuntu, can be: trusty(default), vivid, wily, xenial. If BuildArch is armel, UbuntuCodeName is ignored." echo "lldbx.y - optional, LLDB version, can be: lldb3.6(default), lldb3.8" + echo "[--SkipUnmount] - do not unmount rootfs folders." exit 1 } @@ -20,6 +21,7 @@ __UbuntuRepo="http://ports.ubuntu.com/" __UbuntuPackagesBase="build-essential libunwind8-dev gettext symlinks liblttng-ust-dev libicu-dev" __LLDB_Package="lldb-3.6-dev" __UnprocessedBuildArgs= +__SkipUnmount=0 for i in "$@" do @@ -29,6 +31,9 @@ for i in "$@" usage exit 1 ;; + --skipunmount) + __SkipUnmount=1 + ;; arm) __BuildArch=arm __UbuntuArch=armhf @@ -97,7 +102,11 @@ if [[ -n "$ROOTFS_DIR" ]]; then fi if [ -d "$__RootfsDir" ]; then - umount $__RootfsDir/* + + if [ $__SkipUnmount == 0 ]; then + umount $__RootfsDir/* + fi + rm -rf $__RootfsDir fi @@ -108,7 +117,11 @@ if [[ -n $__UbuntuCodeName ]]; then chroot $__RootfsDir apt-get -f -y install chroot $__RootfsDir apt-get -y install $__UbuntuPackages chroot $__RootfsDir symlinks -cr /usr - umount $__RootfsDir/* + + if [ $__SkipUnmount == 0 ]; then + umount $__RootfsDir/* + fi + elif [ "$__Tizen" == "tizen" ]; then ROOTFS_DIR=$__RootfsDir $__CrossDir/$__BuildArch/tizen-build-rootfs.sh else