-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 131734 b: refs/heads/master c: 1549079 h: refs/heads/master v: v3
- Loading branch information
Stefan Richter
committed
Feb 24, 2009
1 parent
a4aa08f
commit dcd950f
Showing
18 changed files
with
1,896 additions
and
2,332 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: a70f81c1c0dac113ac4705e7701e2676e67905cd | ||
refs/heads/master: 154907957f9391b1af997b57507b16c018cc4995 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,12 +1,22 @@ | ||
config DVB_FIREDTV | ||
tristate "FireDTV (FireWire attached DVB receivers)" | ||
depends on DVB_CORE && IEEE1394 && INPUT | ||
tristate "FireDTV and FloppyDTV" | ||
depends on DVB_CORE && IEEE1394 | ||
help | ||
Support for DVB receivers from Digital Everywhere, known as FireDTV | ||
and FloppyDTV, which are connected via IEEE 1394 (FireWire). | ||
Support for DVB receivers from Digital Everywhere | ||
which are connected via IEEE 1394 (FireWire). | ||
|
||
These devices don't have an MPEG decoder built in, so you need | ||
an external software decoder to watch TV. | ||
These devices don't have an MPEG decoder built in, | ||
so you need an external software decoder to watch TV. | ||
|
||
To compile this driver as a module, say M here: the module will be | ||
called firedtv. | ||
To compile this driver as a module, say M here: | ||
the module will be called firedtv. | ||
|
||
if DVB_FIREDTV | ||
|
||
config DVB_FIREDTV_IEEE1394 | ||
def_bool IEEE1394 | ||
|
||
config DVB_FIREDTV_INPUT | ||
def_bool INPUT = y || (INPUT = m && DVB_FIREDTV = m) | ||
|
||
endif # DVB_FIREDTV |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,8 @@ | ||
firedtv-objs := firedtv-1394.o \ | ||
firedtv-dvb.o \ | ||
firedtv-fe.o \ | ||
firedtv-iso.o \ | ||
avc.o \ | ||
cmp.o \ | ||
firedtv-rc.o \ | ||
firedtv-ci.o | ||
|
||
obj-$(CONFIG_DVB_FIREDTV) += firedtv.o | ||
|
||
EXTRA_CFLAGS := -Idrivers/ieee1394 | ||
EXTRA_CFLAGS += -Idrivers/media/dvb/dvb-core | ||
firedtv-y := firedtv-avc.o firedtv-ci.o firedtv-dvb.o firedtv-fe.o | ||
firedtv-$(CONFIG_DVB_FIREDTV_IEEE1394) += firedtv-1394.o | ||
firedtv-$(CONFIG_DVB_FIREDTV_INPUT) += firedtv-rc.o | ||
|
||
ccflags-y += -Idrivers/media/dvb/dvb-core | ||
ccflags-$(CONFIG_DVB_FIREDTV_IEEE1394) += -Idrivers/ieee1394 |
Oops, something went wrong.