diff options
Diffstat (limited to 'lava_android_test/test_definitions/hostshells/install-overlay.sh')
-rwxr-xr-x | lava_android_test/test_definitions/hostshells/install-overlay.sh | 79 |
1 files changed, 79 insertions, 0 deletions
diff --git a/lava_android_test/test_definitions/hostshells/install-overlay.sh b/lava_android_test/test_definitions/hostshells/install-overlay.sh new file mode 100755 index 0000000..996bcbb --- /dev/null +++ b/lava_android_test/test_definitions/hostshells/install-overlay.sh @@ -0,0 +1,79 @@ +#!/bin/bash +# Copyright (c) 2012 Linaro + +# Author: Linaro Validation Team <linaro-dev@lists.linaro.org> +# +# This file is part of LAVA Android Test. +# +# This program is free software: you can redistribute it and/or modify +# it under the terms of the GNU General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# This program is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU General Public License for more details. +# +# You should have received a copy of the GNU General Public License +# along with this program. If not, see <http://www.gnu.org/licenses/>. + +function parse_argv() { + # Parse command line arguments + while test -n "$1"; do + case "$1" in + --serial|-s) + SERIAL="$2" + if [ -n "${SERIAL}" ]; then + shift 2 + else + show_usage + exit 1 + fi + ;; + --url|-u) + URL="$2" + if [ -n "${URL}" ]; then + shift 2 + else + show_usage + exit 1 + fi + ;; + --help|-h) + show_usage + exit 1 + ;; + *) + if [ -n "${OPTIONS}" ]; then + OPTIONS="${OPTIONS} $1" + else + OPTIONS="$1" + fi + shift + ;; + esac + done +} + +function show_usage(){ + # Display the usage line + echo "Usage $(basename $0) [--serial <serial>|-s <serial>] <other-option>" + echo "Usage $(basename $0) [--help|-h]" +} + +function main(){ + parse_argv "$@" + # Fetch the overlay and extract it. + wget $URL overlay.tar.bz2 + tar -xvf overlay.tar.bz2 + + # Push the overlay + adb -s ${SERIAL} remount + adb -s ${SERIAL} push overlay/ / + adb -s ${SERIAL} shell sync + adb -s ${SERIAL} shell stop + adb -s ${SERIAL} shell start +} + +main "$@" |