diff options
author | Michael Hunold <devnull@localhost> | 2004-01-06 14:56:19 +0000 |
---|---|---|
committer | Michael Hunold <devnull@localhost> | 2004-01-06 14:56:19 +0000 |
commit | 94169a835ba512abebc0777863a9b1f08c41dc7f (patch) | |
tree | e23922076819d653d9ebb24adf2f61d7f15b9407 /linux/drivers/media/dvb/frontends/Kconfig | |
parent | 60b7466865a3797898310ded1597588d956d6214 (diff) | |
download | mediapointer-dvb-s2-94169a835ba512abebc0777863a9b1f08c41dc7f.tar.gz mediapointer-dvb-s2-94169a835ba512abebc0777863a9b1f08c41dc7f.tar.bz2 |
- fix compilation with "make allyesconfig": make av7110
compile-firmware-in-driver option depend on STANDALONE
- change some default file locations from /etc/dvb/ to
/usr/lib/hotplug/firmware/
Diffstat (limited to 'linux/drivers/media/dvb/frontends/Kconfig')
-rw-r--r-- | linux/drivers/media/dvb/frontends/Kconfig | 37 |
1 files changed, 19 insertions, 18 deletions
diff --git a/linux/drivers/media/dvb/frontends/Kconfig b/linux/drivers/media/dvb/frontends/Kconfig index e9dc80540..294f887fb 100644 --- a/linux/drivers/media/dvb/frontends/Kconfig +++ b/linux/drivers/media/dvb/frontends/Kconfig @@ -37,6 +37,23 @@ config DVB_SP887X DVB adapter simply enable all supported frontends, the right one will get autodetected. + +config DVB_SP887X_FIRMWARE_FILE + string "Full pathname of sp887x firmware file" + depends on DVB_SP887X + default "/usr/lib/hotplug/firmware/sc_main.mc" + help + This driver needs a copy of the Avermedia firmware. The version tested + is part of the Avermedia DVB-T 1.3.26.3 Application. This can be downloaded + from the Avermedia web site. + If the software is installed in Windows the file will be in the + /Program Files/AVerTV DVB-T/ directory and is called sc_main.mc. + Alternatively it can "extracted" from the install cab files but this will have + to be done in windows as I don't know of a linux version of extract.exe. + Copy this file to /usr/lib/hotplug/firmware/sc_main.mc. + With this version of the file the first 10 bytes are discarded and the next + 0x4000 loaded. This may change in future versions. + config DVB_ALPS_TDLB7 tristate "Alps TDLB7 (OFDM)" depends on DVB_CORE @@ -148,26 +165,10 @@ config DVB_TDA1004X config DVB_TDA1004X_FIRMWARE_FILE string "Full pathname of tda1004x.bin firmware file" depends on DVB_TDA1004X - default "/etc/dvb/tda1004x.bin" + default "/usr/lib/hotplug/firmware/tda1004x.bin" help The TDA1004X requires additional firmware in order to function. The firmware file can obtained as follows: wget http://www.technotrend.de/new/215/TTweb_215a_budget_20_05_2003.zip unzip -j TTweb_215a_budget_20_05_2003.zip Software/Oem/PCI/App/ttlcdacc.dll - mv ttlcdacc.dll /etc/dvb/tda1004x.bin - -config DVB_SP887X_FIRMWARE_FILE - string "Full pathname of sp887x firmware file" - depends on DVB_SP887X - default "/etc/dvb/sc_main.mc" - help - This driver needs a copy of the Avermedia firmware. The version tested - is part of the Avermedia DVB-T 1.3.26.3 Application. This can be downloaded - from the Avermedia web site. - If the software is installed in Windows the file will be in the - /Program Files/AVerTV DVB-T/ directory and is called sc_main.mc. - Alternatively it can "extracted" from the install cab files but this will have - to be done in windows as I don't know of a linux version of extract.exe. - Copy this file to /etc/dvb/sc_main.mc. With this version of the file the first - 10 bytes are discarded and the next 0x4000 loaded. This may change in future - versions.
\ No newline at end of file + mv ttlcdacc.dll /usr/lib/hotplug/firmware/tda1004x.bin |