Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions legacy/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,9 @@ set(PLUGIN_LEGACY_WIFI ${NAMESPACE}WiFiManager)
set(PLUGIN_LEGACY_NW_STARTUPORDER "35" CACHE STRING "To configure startup order of Legacy Network plugin")
set(PLUGIN_LEGACY_WIFI_STARTUPORDER "35" CACHE STRING "To configure startup order of Legacy WiFi plugin")

set(PLUGIN_LEGACY_NW_AUTOSTART "false" CACHE STRING "The autostart of Legacy Network plugin")
set(PLUGIN_LEGACY_WIFI_AUTOSTART "false" CACHE STRING "The autostart of Legacy WiFi plugin")

set(PLUGIN_BUILD_REFERENCE ${PROJECT_VERSION} CACHE STRING "To Set the Hash for the plugin")
add_definitions(-DPLUGIN_BUILD_REFERENCE=${PLUGIN_BUILD_REFERENCE})

Expand Down
2 changes: 1 addition & 1 deletion legacy/LegacyNetworkAPIs.conf.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
precondition = ["Platform"]
callsign = "org.rdk.Network"
autostart = "false"
autostart = "@PLUGIN_LEGACY_NW_AUTOSTART@"
startuporder = "@PLUGIN_LEGACY_NW_STARTUPORDER@"
4 changes: 0 additions & 4 deletions legacy/LegacyNetworkAPIs.config

This file was deleted.

2 changes: 1 addition & 1 deletion legacy/LegacyWiFiManagerAPIs.conf.in
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
precondition = ["Platform"]
callsign = "org.rdk.Wifi"
autostart = "false"
autostart = "@PLUGIN_LEGACY_WIFI_AUTOSTART@"
startuporder = "@PLUGIN_LEGACY_WIFI_STARTUPORDER@"
4 changes: 0 additions & 4 deletions legacy/LegacyWiFiManagerAPIs.config

This file was deleted.

5 changes: 3 additions & 2 deletions plugin/CMakeLists.txt
Original file line number Diff line number Diff line change
Expand Up @@ -52,6 +52,7 @@ endif ()
set(PLUGIN_NETWORKMANAGER_LOGLEVEL "5" CACHE STRING "To configure default loglevel NetworkManager plugin")
set(PLUGIN_NETWORKMANAGER_STARTUPORDER "25" CACHE STRING "To configure startup order of Unified NetworkManager plugin")

set(PLUGIN_NETWORKMANAGER_AUTOSTART "false" CACHE STRING "Set the default AutoStart of NetworkManager Plugin")
set(PLUGIN_BUILD_REFERENCE ${PROJECT_VERSION} CACHE STRING "To Set the Hash for the plugin")
add_definitions(-DPLUGIN_BUILD_REFERENCE=${PLUGIN_BUILD_REFERENCE})

Expand All @@ -71,7 +72,7 @@ target_link_libraries(${MODULE_NAME} PRIVATE
)

set_target_properties(${MODULE_NAME} PROPERTIES
CXX_STANDARD 11
CXX_STANDARD 17
CXX_STANDARD_REQUIRED YES
FRAMEWORK FALSE)

Expand Down Expand Up @@ -128,7 +129,7 @@ else()
endif()

set_target_properties(${MODULE_IMPL_NAME} PROPERTIES
CXX_STANDARD 11
CXX_STANDARD 17
CXX_STANDARD_REQUIRED YES
FRAMEWORK FALSE)

Expand Down
2 changes: 1 addition & 1 deletion plugin/NetworkManager.conf.in
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
callsign= "org.rdk.NetworkManager"
startuporder = "@PLUGIN_NETWORKMANAGER_STARTUPORDER@"
autostart = "false"
autostart = "@PLUGIN_NETWORKMANAGER_AUTOSTART@"

process= JSON()
process.add("outofprocess", "true")
Expand Down
27 changes: 0 additions & 27 deletions plugin/NetworkManager.config

This file was deleted.

Loading
Loading