From mboxrd@z Thu Jan 1 00:00:00 1970 From: git@ipfire.org To: ipfire-scm@lists.ipfire.org Subject: [git.ipfire.org] IPFire 2.x development tree branch, thirteen, updated. beecbb59a305cb22c5adc7e5fdba96dc33d14267 Date: Thu, 25 Oct 2012 22:26:51 +0200 Message-ID: <20121025202652.07B95200B0@argus.ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============8358979895939477210==" List-Id: --===============8358979895939477210== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable This is an automated email from the git hooks/post-receive script. It was generated because a ref change was pushed to the repository containing the project "IPFire 2.x development tree". The branch, thirteen has been updated via beecbb59a305cb22c5adc7e5fdba96dc33d14267 (commit) from 48bf31fa46150eb2698083aad5de140568df4b0d (commit) Those revisions listed above that are new to this repository have not appeared on any other notification email; so we list those revisions in full, below. - Log ----------------------------------------------------------------- commit beecbb59a305cb22c5adc7e5fdba96dc33d14267 Author: Arne Fitzenreiter Date: Thu Oct 25 22:18:36 2012 +0200 dvb-firmwares: add some dvb-hardware binaries. ----------------------------------------------------------------------- Summary of changes: config/rootfiles/common/dvb-firmwares | 22 ++++++++++++++++++++++ lfs/{rpi-firmware =3D> dvb-firmwares} | 19 ++++++++++--------- make.sh | 1 + 3 files changed, 33 insertions(+), 9 deletions(-) create mode 100644 config/rootfiles/common/dvb-firmwares copy lfs/{rpi-firmware =3D> dvb-firmwares} (89%) Difference in files: diff --git a/config/rootfiles/common/dvb-firmwares b/config/rootfiles/common/= dvb-firmwares new file mode 100644 index 0000000..a6ba837 --- /dev/null +++ b/config/rootfiles/common/dvb-firmwares @@ -0,0 +1,22 @@ +lib/firmware/dvb-fe-bcm3510-01.fw +lib/firmware/dvb-fe-or51132-qam.fw +lib/firmware/dvb-fe-or51132-vsb.fw +lib/firmware/dvb-fe-or51211.fw +#lib/firmware/dvb-ttpci-01.fw-261a +#lib/firmware/dvb-ttpci-01.fw-261b +#lib/firmware/dvb-ttpci-01.fw-261c +#lib/firmware/dvb-ttpci-01.fw-261d +#lib/firmware/dvb-ttpci-01.fw-261f +#lib/firmware/dvb-ttpci-01.fw-2622 +lib/firmware/dvb-usb-avertv-a800-02.fw +lib/firmware/dvb-usb-bluebird-01.fw +lib/firmware/dvb-usb-dibusb-5.0.0.11.fw +lib/firmware/dvb-usb-dibusb-6.0.0.8.fw +lib/firmware/dvb-usb-dtt200u-01.fw +lib/firmware/dvb-usb-terratec-h7-az6007.fw +lib/firmware/dvb-usb-terratec-h7-drxk.fw +lib/firmware/dvb-usb-umt-010-02.fw +lib/firmware/dvb-usb-vp702x-01.fw +lib/firmware/dvb-usb-vp7045-01.fw +lib/firmware/dvb-usb-wt220u-01.fw +lib/firmware/dvb-usb-wt220u-02.fw diff --git a/lfs/dvb-firmwares b/lfs/dvb-firmwares new file mode 100644 index 0000000..724c46b --- /dev/null +++ b/lfs/dvb-firmwares @@ -0,0 +1,75 @@ +############################################################################= ### +# = # +# IPFire.org - A linux based firewall = # +# Copyright (C) 2007-2012 IPFire Team = # +# = # +# 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 3 of the License, 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 this program. If not, see . = # +# = # +############################################################################= ### + +############################################################################= ### +# Definitions +############################################################################= ### + +include Config + +VER =3D 20110802 + +THISAPP =3D dvb-firmwares-$(VER) +DL_FILE =3D $(THISAPP).tar.bz2 +DL_FROM =3D $(URL_IPFIRE) +DIR_APP =3D $(DIR_SRC)/dvb-firmwares +TARGET =3D $(DIR_INFO)/$(THISAPP) + +############################################################################= ### +# Top-level Rules +############################################################################= ### + +objects =3D $(DL_FILE) + +$(DL_FILE) =3D $(DL_FROM)/$(DL_FILE) + +$(DL_FILE)_MD5 =3D 330e19f9444a03f5338bab590ab9d728 + +install : $(TARGET) + +check : $(patsubst %,$(DIR_CHK)/%,$(objects)) + +download :$(patsubst %,$(DIR_DL)/%,$(objects)) + +md5 : $(subst %,%_MD5,$(objects)) + +############################################################################= ### +# Downloading, checking, md5sum +############################################################################= ### + +$(patsubst %,$(DIR_CHK)/%,$(objects)) : + @$(CHECK) + +$(patsubst %,$(DIR_DL)/%,$(objects)) : + @$(LOAD) + +$(subst %,%_MD5,$(objects)) : + @$(MD5) + +############################################################################= ### +# Installation Details +############################################################################= ### + +$(TARGET) : $(patsubst %,$(DIR_DL)/%,$(objects)) + @$(PREBUILD) + mkdir -p /lib/firmware + tar axf $(DIR_DL)/$(DL_FILE) \ + -C /lib/firmware/ + @$(POSTBUILD) diff --git a/make.sh b/make.sh index 0fe6cb4..781d477 100755 --- a/make.sh +++ b/make.sh @@ -372,6 +372,7 @@ buildipfire() { ipfiremake unzip ipfiremake which ipfiremake linux-firmware + ipfiremake dvb-firmwares ipfiremake zd1211-firmware ipfiremake rpi-firmware ipfiremake u-boot hooks/post-receive -- IPFire 2.x development tree --===============8358979895939477210==--