From 5e1ddd02427eb5eb249228317650fb7da5cf3e75 Mon Sep 17 00:00:00 2001 From: cvh Date: Tue, 7 Feb 2017 10:56:31 +0100 Subject: [PATCH] tbs-linux-drivers: remove drivers --- .../tbs-linux-drivers/README.unsupported | 12 ----- .../tbs-linux-drivers/package.mk | 51 ------------------- 2 files changed, 63 deletions(-) delete mode 100644 packages/linux-drivers/tbs-linux-drivers/README.unsupported delete mode 100644 packages/linux-drivers/tbs-linux-drivers/package.mk diff --git a/packages/linux-drivers/tbs-linux-drivers/README.unsupported b/packages/linux-drivers/tbs-linux-drivers/README.unsupported deleted file mode 100644 index 09db912ab1..0000000000 --- a/packages/linux-drivers/tbs-linux-drivers/README.unsupported +++ /dev/null @@ -1,12 +0,0 @@ -This driver contains a binary blob, is utterly broken, -breaks too much hardware that works without it, -and is there only to make self-builders happy. - -You are free to use it but there will be no support at all. -Please dont ask us to include it in release builds by default. - -To be absolutely clear there will be - -=== NO SUPPORT === - -on this driver. diff --git a/packages/linux-drivers/tbs-linux-drivers/package.mk b/packages/linux-drivers/tbs-linux-drivers/package.mk deleted file mode 100644 index 5a73b8d186..0000000000 --- a/packages/linux-drivers/tbs-linux-drivers/package.mk +++ /dev/null @@ -1,51 +0,0 @@ -################################################################################ -# This file is part of OpenELEC - http://www.openelec.tv -# Copyright (C) 2009-2016 Stephan Raue (stephan@openelec.tv) -# -# OpenELEC 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 of the License, or -# (at your option) any later version. -# -# OpenELEC 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. If not, see . -################################################################################ - -PKG_NAME="tbs-linux-drivers" -PKG_VERSION="160126" -PKG_ARCH="x86_64" -PKG_LICENSE="GPL" -PKG_SITE="http://www.tbsdtv.com/english/Download.html" -PKG_URL="http://www.tbsdtv.com/download/document/common/tbs-linux-drivers_v${PKG_VERSION}.zip" -PKG_SOURCE_DIR="$PKG_NAME" -PKG_DEPENDS_TARGET="toolchain linux" -PKG_NEED_UNPACK="$LINUX_DEPENDS" -PKG_SECTION="driver" -PKG_SHORTDESC="Linux TBS tuner drivers" -PKG_LONGDESC="Linux TBS tuner drivers" -PKG_IS_ADDON="no" -PKG_AUTORECONF="no" - -post_unpack() { - tar xjf $ROOT/$PKG_BUILD/linux-tbs-drivers.tar.bz2 -C $ROOT/$PKG_BUILD - chmod -R u+rwX $ROOT/$PKG_BUILD/linux-tbs-drivers/* -} - -make_target() { - cd $ROOT/$PKG_BUILD/linux-tbs-drivers - ./v4l/tbs-x86_64.sh - LDFLAGS="" make DIR=$(kernel_path) prepare - LDFLAGS="" make DIR=$(kernel_path) -} - -makeinstall_target() { - mkdir -p $INSTALL/usr/lib/modules/$(get_module_dir)/updates/tbs - find $ROOT/$PKG_BUILD/linux-tbs-drivers/ -name \*.ko -exec cp {} $INSTALL/usr/lib/modules/$(get_module_dir)/updates/tbs \; - mkdir -p $INSTALL/lib/firmware/ - cp $ROOT/$PKG_BUILD/*.fw $INSTALL/lib/firmware/ -}