blob: f368593d190c2d42e2dd186d1d4ddd273aa5491f [file] [log] [blame]
#!/bin/sh
# Copyright (C) 2012 The Android Open Source Project
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
#
adb_options=" "
max_resolution=0
if [ -z "$1" ]
then
echo "assuming default resolution"
elif [ "$1" == "-s" ]
then
adb_options=""$1" "$2""
elif [ "$1" == "720x480" ]
then
max_resolution=1
elif [ "$1" == "1280x720" ]
then
max_resolution=2
elif [ "$1" == "1920x1080" ]
then
max_resolution=3
else
echo "Usage: copy_media.sh [720x480|1280x720|1920x1080] [-s serial]"
echo " for testing up to 1280x720, copy_media.sh 1280x720"
echo " default resolution, when no argument is specified, is 480x360"
exit
fi
if [ -n "$3" ]
then
echo "adb option exisits"
adb_options=""$2" "$3""
fi
echo "max resolution is $1"
echo "adb options "$adb_options""
if [ $max_resolution -ge 3 ]
then
echo "copying 1920x1080"
adb $adb_options push bbb_short/1920x1080 /mnt/sdcard/test/bbb_short/1920x1080
adb $adb_options push bbb_full/1920x1080 /mnt/sdcard/test/bbb_full/1920x1080
fi
if [ $max_resolution -ge 2 ]
then
echo "copying 1280x720"
adb $adb_options push bbb_short/1280x720 /mnt/sdcard/test/bbb_short/1280x720
adb $adb_options push bbb_full/1280x720 /mnt/sdcard/test/bbb_full/1280x720
fi
if [ $max_resolution -ge 1 ]
then
echo "copying 720x480"
adb $adb_options push bbb_short/720x480 /mnt/sdcard/test/bbb_short/720x480
adb $adb_options push bbb_full/720x480 /mnt/sdcard/test/bbb_full/720x480
fi
echo "copying all others"
adb $adb_options push bbb_short/176x144 /mnt/sdcard/test/bbb_short/176x144
adb $adb_options push bbb_full/176x144 /mnt/sdcard/test/bbb_full/176x144
adb $adb_options push bbb_short/480x360 /mnt/sdcard/test/bbb_short/480x360
adb $adb_options push bbb_full/480x360 /mnt/sdcard/test/bbb_full/480x360