From e78395f187e8b6cc25c89420a34e32bb5545b4f9 Mon Sep 17 00:00:00 2001 From: cvh Date: Fri, 10 Nov 2017 18:33:49 +0100 Subject: [PATCH] cleanup repo and add basic infos --- README | 0 README.md | 4 ++++ create_tar.sh | 3 --- install | 26 -------------------------- 4 files changed, 4 insertions(+), 29 deletions(-) delete mode 100644 README create mode 100644 README.md delete mode 100755 create_tar.sh delete mode 100755 install diff --git a/README b/README deleted file mode 100644 index e69de29..0000000 diff --git a/README.md b/README.md new file mode 100644 index 0000000..dfb1cce --- /dev/null +++ b/README.md @@ -0,0 +1,4 @@ +# dvb-firmware +This repo contains firmware files used in LibreELEC for DVB devices. + +To add new firmware to this repo please clone the repo to your own account, create a new (topic) branch, make changes, then create a pull-request from the topic branch to this repo using the GitHub web interface. To complete the addition of the firmware, create PR's to our main repo master branch (and any other target branches) to bump the githash in [package.mk](https://github.com/LibreELEC/LibreELEC.tv/blob/master/packages/linux-firmware/dvb-firmware/package.mk) diff --git a/create_tar.sh b/create_tar.sh deleted file mode 100755 index 2153c43..0000000 --- a/create_tar.sh +++ /dev/null @@ -1,3 +0,0 @@ -#!/bin/sh - -git archive --format=tar --prefix=dvb-firmware-$1/ tags/$1 | xz > dvb-firmware-$1.tar.xz diff --git a/install b/install deleted file mode 100755 index cf3a277..0000000 --- a/install +++ /dev/null @@ -1,26 +0,0 @@ -#!/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 -################################################################################ - -FW_DIR="$DESTDIR/lib/firmware" - -mkdir -p $FW_DIR - cp -a firmware/* $FW_DIR