Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit c81c8b68 authored by Greg Kroah-Hartman's avatar Greg Kroah-Hartman Committed by Stefan Richter
Browse files

DVB: add firesat driver



Original code written by Christian Dolzer <c.dolzer@digital-everywhere.com>

Cleaned up by Greg.

Major cleanup and reorg by Manu Abraham <manu@linuxtv.org>

Additions also by Ben Backx <ben@bbackx.com>

Cc: Christian Dolzer <c.dolzer@digital-everywhere.com>
Cc: Andreas Monitzer <andy@monitzer.com>
Cc: Manu Abraham <manu@linuxtv.org>
Cc: Fabio De Lorenzo <delorenzo.fabio@gmail.com>
Cc: Robert Berger <robert.berger@reliableembeddedsystems.com>
Signed-off-by: default avatarBen Backx <ben@bbackx.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>

Added missing dependency to dvb/firesat/Kconfig,
Reported-by: default avatarRandy Dunlap <randy.dunlap@oracle.com>

Tweaked dvb/Makefile.

Signed-off-by: default avatarStefan Richter <stefanr@s5r6.in-berlin.de>
parent f7e603ad
Loading
Loading
Loading
Loading
+2 −0
Original line number Diff line number Diff line
@@ -51,6 +51,8 @@ comment "Supported SDMC DM1105 Adapters"
	depends on DVB_CORE && PCI && I2C
source "drivers/media/dvb/dm1105/Kconfig"

source "drivers/media/dvb/firesat/Kconfig"

comment "Supported DVB Frontends"
	depends on DVB_CORE
source "drivers/media/dvb/frontends/Kconfig"
+2 −0
Original line number Diff line number Diff line
@@ -3,3 +3,5 @@
#

obj-y        := dvb-core/ frontends/ ttpci/ ttusb-dec/ ttusb-budget/ b2c2/ bt8xx/ dvb-usb/ pluto2/ siano/ dm1105/

obj-$(CONFIG_DVB_FIRESAT)	+= firesat/
+11 −0
Original line number Diff line number Diff line
config DVB_FIRESAT
	tristate "FireSAT devices"
	depends on DVB_CORE && IEEE1394 && INPUT
	help
	  Support for external IEEE1394 adapters designed by Digital Everywhere and
	  produced by El Gato, shipped under the brand name 'FireDTV/FloppyDTV'.

	  These devices don't have a MPEG decoder built in, so you need
	  an external software decoder to watch TV.

	  Say Y if you own such a device and want to use it.
+12 −0
Original line number Diff line number Diff line
firesat-objs := firesat_1394.o	\
		firesat_dvb.o	\
		firesat_fe.o	\
		avc_api.o	\
		cmp.o		\
		firesat-rc.o	\
		firesat-ci.o

obj-$(CONFIG_DVB_FIRESAT) += firesat.o

EXTRA_CFLAGS := -Idrivers/ieee1394
EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core
+848 −0

File added.

Preview size limit exceeded, changes collapsed.

Loading