Skip to content

Commit

Permalink
DVB: add firesat driver
Browse files Browse the repository at this point in the history
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: Ben Backx <ben@bbackx.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>

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

Tweaked dvb/Makefile.

Signed-off-by: Stefan Richter <stefanr@s5r6.in-berlin.de>
  • Loading branch information
Greg Kroah-Hartman authored and Stefan Richter committed Feb 24, 2009
1 parent f7e603a commit c81c8b6
Show file tree
Hide file tree
Showing 16 changed files with 2,858 additions and 0 deletions.
2 changes: 2 additions & 0 deletions drivers/media/dvb/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -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"
Expand Down
2 changes: 2 additions & 0 deletions drivers/media/dvb/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -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 changes: 11 additions & 0 deletions drivers/media/dvb/firesat/Kconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
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 changes: 12 additions & 0 deletions drivers/media/dvb/firesat/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
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
Loading

0 comments on commit c81c8b6

Please sign in to comment.