From 0c71539a8453c984f62f20ff3896509cd12af89c Mon Sep 17 00:00:00 2001 From: Stefan Saraev Date: Sun, 2 Feb 2014 02:05:04 +0200 Subject: [PATCH] new package: media_build --- packages/linux-drivers/media_build/package.mk | 62 +++++++++++++++++++ ...a_build-0001-dont-run-rmmod.pl-check.patch | 24 +++++++ tools/mkpkg/mkpkg_media_build | 43 +++++++++++++ 3 files changed, 129 insertions(+) create mode 100644 packages/linux-drivers/media_build/package.mk create mode 100644 packages/linux-drivers/media_build/patches/media_build-0001-dont-run-rmmod.pl-check.patch create mode 100755 tools/mkpkg/mkpkg_media_build diff --git a/packages/linux-drivers/media_build/package.mk b/packages/linux-drivers/media_build/package.mk new file mode 100644 index 000000000..b95c0d2f4 --- /dev/null +++ b/packages/linux-drivers/media_build/package.mk @@ -0,0 +1,62 @@ +################################################################################ +# This file is part of OpenELEC - http://www.openelec.tv +# Copyright (C) 2009-2012 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, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. +# http://www.gnu.org/copyleft/gpl.html +################################################################################ + +PKG_NAME="media_build" +PKG_VERSION="1c8936d" +PKG_REV="1" +PKG_ARCH="any" +PKG_LICENSE="GPL" +PKG_SITE="http://git.linuxtv.org/media_build.git" +PKG_URL="$DISTRO_SRC/${PKG_NAME}-${PKG_VERSION}.tar.xz" +PKG_DEPENDS_TARGET="" +PKG_BUILD_DEPENDS_TARGET="toolchain linux" +PKG_PRIORITY="optional" +PKG_SECTION="driver" +PKG_SHORTDESC="Build system to use the latest experimental drivers/patches without needing to replace the entire Kernel" +PKG_LONGDESC="Build system to use the latest experimental drivers/patches without needing to replace the entire Kernel" +PKG_IS_ADDON="no" +PKG_AUTORECONF="no" + +pre_make_target() { + export KERNEL_VER=$(get_module_dir) + # dont use our LDFLAGS, use the KERNEL LDFLAGS + export LDFLAGS="" +} + +make_target() { + wget http://www.linuxtv.org/downloads/firmware/dvb-firmwares.tar.bz2 -O dvb-firmwares.tar.bz2.tmp + cd v4l/firmware/; tar xvfj ../../dvb-firmwares.tar.bz2.tmp + cd ../.. + $SED -i -e "/^LATEST_TAR/s/-LATEST/-2014-01-16/g" linux/Makefile + + make VER=$KERNEL_VER SRCDIR=$(kernel_path) -C linux/ download + make VER=$KERNEL_VER SRCDIR=$(kernel_path) -C linux/ untar + make VER=$KERNEL_VER SRCDIR=$(kernel_path) allyesconfig + make VER=$KERNEL_VER SRCDIR=$(kernel_path) +} + +makeinstall_target() { + mkdir -p $INSTALL/lib/modules/$KERNEL_VER/updates/media_build + find $ROOT/$PKG_BUILD/v4l/ -name \*.ko -exec strip --strip-debug {} \; + find $ROOT/$PKG_BUILD/v4l/ -name \*.ko -exec cp {} $INSTALL/lib/modules/$KERNEL_VER/updates/media_build \; + + mkdir -p $INSTALL/lib/firmware/ + cp $ROOT/$PKG_BUILD/v4l/firmware/*.fw $INSTALL/lib/firmware/ +} diff --git a/packages/linux-drivers/media_build/patches/media_build-0001-dont-run-rmmod.pl-check.patch b/packages/linux-drivers/media_build/patches/media_build-0001-dont-run-rmmod.pl-check.patch new file mode 100644 index 000000000..501e42052 --- /dev/null +++ b/packages/linux-drivers/media_build/patches/media_build-0001-dont-run-rmmod.pl-check.patch @@ -0,0 +1,24 @@ +From 575ee0c44577f8a1010fc565c5b4b7f4486b5dab Mon Sep 17 00:00:00 2001 +From: Stefan Saraev +Date: Sun, 26 Jan 2014 16:45:18 +0200 +Subject: [PATCH] dont run rmmod.pl check + +--- + v4l/Makefile | 1 - + 1 files changed, 0 insertions(+), 1 deletions(-) + +diff --git a/v4l/Makefile b/v4l/Makefile +index 41f7283..21911e0 100644 +--- a/v4l/Makefile ++++ b/v4l/Makefile +@@ -51,7 +51,6 @@ default:: prepare firmware + @echo Kernel build directory is $(OUTDIR) + $(MAKE) -C ../linux apply_patches + $(MAKE) -C $(OUTDIR) SUBDIRS=$(PWD) $(MYCFLAGS) modules +- ./scripts/rmmod.pl check + # $(MAKE) checkpatch + + mismatch:: prepare firmware +-- +1.7.2.5 + diff --git a/tools/mkpkg/mkpkg_media_build b/tools/mkpkg/mkpkg_media_build new file mode 100755 index 000000000..483606a2c --- /dev/null +++ b/tools/mkpkg/mkpkg_media_build @@ -0,0 +1,43 @@ +#!/bin/sh +################################################################################ +# This file is part of OpenELEC - http://www.openelec.tv +# Copyright (C) 2009-2012 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, 51 Franklin Street, Suite 500, Boston, MA 02110, USA. +# http://www.gnu.org/copyleft/gpl.html +################################################################################ + +echo "getting sources..." + if [ ! -d media_build.git ]; then + git clone git://linuxtv.org/media_build.git media_build.git + fi + + cd media_build.git + git pull + GIT_REV=`git log -n1 --format=%h` + cd .. + +echo "copying sources..." + rm -rf media_build-$GIT_REV + cp -R media_build.git media_build-$GIT_REV + +echo "cleaning sources..." + rm -rf media_build-$GIT_REV/.git + +echo "packing sources..." + tar cvJf media_build-$GIT_REV.tar.xz media_build-$GIT_REV + +echo "remove temporary sourcedir..." + rm -rf media_build-$GIT_REV