blob: 753bd59f6bca4e8cab3d3e3a3613449eccb5dadd [file] [log] [blame]
#!/bin/bash
#
# Copyright (C) 2012 The Chromium OS Authors.
#
# 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; version 2 of the License.
#
# 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, write to the Free Software
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
#
URL=http://www.dediprog.com/files/81/2867/4/EM100_4.2.07.zip
if ! which curl > /dev/null; then
echo "Install curl to run this script."
exit 1;
fi
if ! which 7z > /dev/null; then
echo "Install 7z to run this script."
exit 1
fi
if ! which cabextract > /dev/null; then
echo "Install cabextract to run this script."
exit 1
fi
FILE=$(basename $URL)
TEMP=$(mktemp -d)
WD=$(pwd)
cd $TEMP
echo Downloading...
curl -s $URL -o $FILE || exit
echo Unpacking...
7z x $FILE ${FILE%.zip}.msi > /dev/null
7z x ${FILE%.zip}.msi PRO_* > /dev/null
echo Copying...
mkdir -p $WD/configs
for i in PRO_*; do
cp $i $WD/configs/${i#PRO_}.cfg
done
cd $WD
rm -rf $TEMP
echo Done...