Skip to content

Commit df04257

Browse files
committed
Remove broken opal node-type
Signed-off-by: Steffen Vogel <[email protected]>
1 parent 802f860 commit df04257

File tree

13 files changed

+0
-596
lines changed

13 files changed

+0
-596
lines changed

CMakeLists.txt

-3
Original file line numberDiff line numberDiff line change
@@ -69,7 +69,6 @@ endif()
6969
find_package(PkgConfig REQUIRED)
7070
find_package(Threads REQUIRED)
7171
find_package(OpenMP)
72-
find_package(Opal)
7372
find_package(IBVerbs)
7473
find_package(RDMACM)
7574
find_package(Etherlab)
@@ -192,7 +191,6 @@ cmake_dependent_option(WITH_NODE_MODBUS "Build with modbus node-type"
192191
cmake_dependent_option(WITH_NODE_MQTT "Build with mqtt node-type" "${WITH_DEFAULTS}" "MOSQUITTO_FOUND" OFF)
193192
cmake_dependent_option(WITH_NODE_NANOMSG "Build with nanomsg node-type" "${WITH_DEFAULTS}" "NANOMSG_FOUND" OFF)
194193
cmake_dependent_option(WITH_NODE_NGSI "Build with ngsi node-type" "${WITH_DEFAULTS}" "" OFF)
195-
cmake_dependent_option(WITH_NODE_OPAL "Build with opal node-type" "${WITH_DEFAULTS}" "Opal_FOUND" OFF)
196194
cmake_dependent_option(WITH_NODE_REDIS "Build with redis node-type" "${WITH_DEFAULTS}" "HIREDIS_FOUND; REDISPP_FOUND" OFF)
197195
cmake_dependent_option(WITH_NODE_RTP "Build with rtp node-type" "${WITH_DEFAULTS}" "re_FOUND" OFF)
198196
cmake_dependent_option(WITH_NODE_SHMEM "Build with shmem node-type" "${WITH_DEFAULTS}" "HAS_SEMAPHORE; HAS_MMAN" OFF)
@@ -298,7 +296,6 @@ add_feature_info(NODE_MODBUS WITH_NODE_MODBUS "Build with
298296
add_feature_info(NODE_MQTT WITH_NODE_MQTT "Build with mqtt node-type")
299297
add_feature_info(NODE_NANOMSG WITH_NODE_NANOMSG "Build with nanomsg node-type")
300298
add_feature_info(NODE_NGSI WITH_NODE_NGSI "Build with ngsi node-type")
301-
add_feature_info(NODE_OPAL WITH_NODE_OPAL "Build with opal node-type")
302299
add_feature_info(NODE_REDIS WITH_NODE_REDIS "Build with redis node-type")
303300
add_feature_info(NODE_RTP WITH_NODE_RTP "Build with rtp node-type")
304301
add_feature_info(NODE_SHMEM WITH_NODE_SHMEM "Build with shmem node-type")

cmake/FindOpal.cmake

-53
This file was deleted.

doc/openapi/components/schemas/config/node_obj.yaml

-1
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,6 @@ discriminator:
3939
mqtt: nodes/_mqtt.yaml
4040
nanomsg: nodes/_nanomsg.yaml
4141
ngsi: nodes/_ngsi.yaml
42-
opal: nodes/_opal.yaml
4342
redis: nodes/_redis.yaml
4443
rtp: nodes/_rtp.yaml
4544
shmem: nodes/_shmem.yaml

doc/openapi/components/schemas/config/nodes/_opal.yaml

-7
This file was deleted.

doc/openapi/components/schemas/config/nodes/opal.yaml

-18
This file was deleted.

etc/examples/nodes/opal.conf

-18
This file was deleted.

include/villas/log_opal_sink.hpp

-53
This file was deleted.

include/villas/node/config.hpp.in

-1
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,6 @@
3737
#cmakedefine WITH_WEB
3838
#cmakedefine WITH_NODE_WEBSOCKET
3939
#cmakedefine WITH_NODE_WEBRTC
40-
#cmakedefine WITH_NODE_OPAL
4140
#cmakedefine WITH_API
4241
#cmakedefine WITH_HOOKS
4342
#cmakedefine WITH_CONFIG

include/villas/nodes/opal.hpp

-55
This file was deleted.

lib/nodes/CMakeLists.txt

-7
Original file line numberDiff line numberDiff line change
@@ -71,13 +71,6 @@ if(WITH_NODE_IEC61850)
7171
list(APPEND LIBRARIES PkgConfig::LIBIEC61850)
7272
endif()
7373

74-
# Enable OPAL-RT Asynchronous Process support (will result in 32bit binary!!!)
75-
if(WITH_NODE_OPAL)
76-
list(APPEND NODE_SRC opal.cpp)
77-
list(APPEND INCLUDE_DIRS ${OPAL_INCLUDE_DIRS})
78-
list(APPEND LIBRARIES ${OPAL_LIBRARIES})
79-
endif()
80-
8174
if(WITH_NODE_MODBUS)
8275
list(APPEND NODE_SRC modbus.cpp)
8376
list(APPEND LIBRARIES PkgConfig::MODBUS)

0 commit comments

Comments
 (0)