/packages/linux-drivers/aver_h826d/unpack
http://github.com/OpenELEC/OpenELEC.tv · Shell · 52 lines · 22 code · 8 blank · 22 comment · 7 complexity · aebbd6cde75c1640726d09b444d64b37 MD5 · raw file
- #!/bin/sh
- ################################################################################
- # This file is part of OpenELEC - http://www.openelec.tv
- # Copyright (C) 2009-2011 Stephan Raue (stephan@openelec.tv)
- #
- # 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 2, 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 OpenELEC.tv; see the file COPYING. If not, write to
- # the Free Software Foundation, 675 Mass Ave, Cambridge, MA 02139, USA.
- # http://www.gnu.org/copyleft/gpl.html
- ################################################################################
- . config/options $1
- ZIP_PKG="`echo $PKG_URL | sed 's%.*/\(.*\)$%\1%'`"
- mkdir -p $BUILD/${PKG_NAME}-${PKG_VERSION}
- unzip $SOURCES/$1/$ZIP_PKG -d $BUILD/${PKG_NAME}-${PKG_VERSION} >/dev/null 2>&1
- tail -n +115 $BUILD/${PKG_NAME}-${PKG_VERSION}/H826D_Installer_*/AVERMEDIA-Linux-*-H826D-0.10-beta.sh | bzip2 -d | tar xf - -C $BUILD/${PKG_NAME}-${PKG_VERSION}
- # this code is copied from scripts/unpack
- PKG_BUILD=`ls -d $BUILD/${PKG_NAME}[-_.]${PKG_VERSION}`
- for i in $PKG_DIR/patches-manual/$PKG_NAME-$PKG_VERSION*.patch ; do
- if [ -f "$i" ]; then
- PATCH=`basename $i`
- PT=`echo $PATCH | sed 's/.*\.\(.*\)$/\1/'`
- if [ "$PT" != "patch" -a "$PT" != "$TARGET_ARCH" ]; then
- printf "%${INDENT}c SKIP PATCH: $i\n" >&$SILENT_OUT
- continue;
- else
- printf "%${INDENT}c APPLY PATCH: $i\n" >&$SILENT_OUT
- cat $i | patch -p1 -d `echo "$PKG_BUILD" | cut -f1 -d\ ` -p1 >&$VERBOSE_OUT
- fi
- fi
- done
- # prebuild objects were hex edited for kernel 3.1
- [ "$TARGET_ARCH" = "x86_64" ] && KVSTR=x64
- [ "$TARGET_ARCH" = "i386" ] && KVSTR=4GREG
- cp -rf $PKG_DIR/kdep_2.6.30/OBJ-$KVSTR/* $BUILD/${PKG_NAME}-${PKG_VERSION}/installer/src