]> rtime.felk.cvut.cz Git - coffee/buildroot.git/commitdiff
gnuradio: add gr-ctrlport support
authorGwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
Fri, 29 Apr 2016 08:12:13 +0000 (10:12 +0200)
committerThomas Petazzoni <thomas.petazzoni@free-electrons.com>
Sat, 11 Jun 2016 13:53:53 +0000 (15:53 +0200)
gr-ctrlport is a gnuradio module to create distributed control applications.

Signed-off-by: Gwenhael Goavec-Merou <gwenhael.goavec-merou@trabucayre.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
package/gnuradio/Config.in
package/gnuradio/gnuradio.mk

index d7d23470e3305fcb28cf00b9e075afaf948ad8ca..f51b9b297bd555ed19f248cc64b7f7d25bc888f9 100644 (file)
@@ -41,6 +41,11 @@ config BR2_PACKAGE_GNURADIO_BLOCKS
        help
          GNU Radio basic block library
 
+config BR2_PACKAGE_GNURADIO_CTRLPORT
+       bool "ctrlport support"
+       help
+         GNU Radio ctrlport block
+
 config BR2_PACKAGE_GNURADIO_FEC
        bool "gr-fec support"
        select BR2_PACKAGE_GNURADIO_BLOCKS
index 8f771fc6a5e8bbf53a48447996560e17e1f41ce4..b193569617676b34866d670dca93d8014cd260dd 100644 (file)
@@ -76,6 +76,12 @@ else
 GNURADIO_CONF_OPTS += -DENABLE_GR_CHANNELS=OFF
 endif
 
+ifeq ($(BR2_PACKAGE_GNURADIO_CTRLPORT),y)
+GNURADIO_CONF_OPTS += -DENABLE_GR_CTRLPORT=ON
+else
+GNURADIO_CONF_OPTS += -DENABLE_GR_CTRLPORT=OFF
+endif
+
 ifeq ($(BR2_PACKAGE_GNURADIO_DIGITAL),y)
 GNURADIO_CONF_OPTS += -DENABLE_GR_DIGITAL=ON
 else