diff --git a/3rdparty/.gitignore b/3rdparty/.gitignore index ab02b6f..e69de29 100644 --- a/3rdparty/.gitignore +++ b/3rdparty/.gitignore @@ -1 +0,0 @@ -/ravenna-alsa-lkm diff --git a/build.sh b/build.sh index c03717b..b33954b 100755 --- a/build.sh +++ b/build.sh @@ -12,6 +12,10 @@ TOPDIR=$(pwd) echo "Init git submodules ..." git submodule update --init --recursive +cd 3rdparty/ravenna-alsa-lkm/driver +make +cd - + cd webui echo "Downloading current webui release ..." wget --timestamping https://github.com/bondagit/aes67-linux-daemon/releases/latest/download/webui.tar.gz diff --git a/daemon/tests/daemon.conf b/daemon/tests/daemon.conf index 07a967e..ae6a95f 100644 --- a/daemon/tests/daemon.conf +++ b/daemon/tests/daemon.conf @@ -17,7 +17,7 @@ "syslog_server": "255.255.255.254:1234", "status_file": "", "interface_name": "lo", - "mdns_enabled": false, + "mdns_enabled": true, "custom_node_id": "test node", "node_id": "test node", "ptp_status_script": "", diff --git a/daemon/tests/daemon_test.cpp b/daemon/tests/daemon_test.cpp index 8c06b23..6c6db84 100644 --- a/daemon/tests/daemon_test.cpp +++ b/daemon/tests/daemon_test.cpp @@ -430,7 +430,11 @@ BOOST_AUTO_TEST_CASE(get_config) { BOOST_CHECK_MESSAGE(node_id == "test node", "config as excepcted"); BOOST_CHECK_MESSAGE(custom_node_id == "test node", "config as excepcted"); BOOST_CHECK_MESSAGE(auto_sinks_update == true, "config as excepcted"); +#ifdef _USE_AVAHI_ + BOOST_CHECK_MESSAGE(mdns_enabled == true, "config as excepcted"); +#else BOOST_CHECK_MESSAGE(mdns_enabled == false, "config as excepcted"); +#endif BOOST_CHECK_MESSAGE(streamer_enabled == false, "config as excepcted"); BOOST_CHECK_MESSAGE(streamer_channels == 8, "config as excepcted"); BOOST_CHECK_MESSAGE(streamer_files_num == 6, "config as excepcted");