package/gnuradio: add option to enable gr-dtc support
gr-dtv provides support for a series of gnuradio blocks for digital television standards. Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
parent
494d7f4a12
commit
c878facaf8
@ -54,6 +54,14 @@ config BR2_PACKAGE_GNURADIO_CTRLPORT
|
||||
help
|
||||
GNU Radio ctrlport block
|
||||
|
||||
config BR2_PACKAGE_GNURADIO_DTV
|
||||
bool "gr-dtv support"
|
||||
select BR2_PACKAGE_GNURADIO_ANALOG
|
||||
select BR2_PACKAGE_GNURADIO_FEC
|
||||
select BR2_PACKAGE_GNURADIO_FILTER
|
||||
help
|
||||
various digital television standards blocks
|
||||
|
||||
config BR2_PACKAGE_GNURADIO_FEC
|
||||
bool "gr-fec support"
|
||||
select BR2_PACKAGE_GNURADIO_BLOCKS
|
||||
|
@ -93,6 +93,12 @@ else
|
||||
GNURADIO_CONF_OPTS += -DENABLE_GR_DIGITAL=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNURADIO_DTV),y)
|
||||
GNURADIO_CONF_OPTS += -DENABLE_GR_DTV=ON
|
||||
else
|
||||
GNURADIO_CONF_OPTS += -DENABLE_GR_DTV=OFF
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNURADIO_FEC),y)
|
||||
GNURADIO_DEPENDENCIES += gsl
|
||||
GNURADIO_CONF_OPTS += -DENABLE_GR_FEC=ON
|
||||
|
Loading…
Reference in New Issue
Block a user