Commit 4bd39c21 authored by Jamie McCrae's avatar Jamie McCrae Committed by Carles Cufi
Browse files

mgmt: mcumgr: Move zephyr_grp to lib/cmd folder



Moves the zephyr_grp commands to the same directory as the other
mgmt command handlers.

Signed-off-by: default avatarJamie McCrae <jamie.mccrae@nordicsemi.no>
parent 2f925b47
Loading
Loading
Loading
Loading
+0 −1
Original line number Diff line number Diff line
@@ -8,7 +8,6 @@ zephyr_library_sources_ifdef(CONFIG_MCUMGR_SMP_SHELL smp_shell.c)
zephyr_library_sources_ifdef(CONFIG_MCUMGR_SMP_UART smp_uart.c)
zephyr_library_sources_ifdef(CONFIG_MCUMGR_SMP_UDP smp_udp.c)
zephyr_library_sources_ifdef(CONFIG_MCUMGR_SMP_REASSEMBLY smp_reassembly.c)
add_subdirectory_ifdef(CONFIG_MCUMGR_GRP_ZEPHYR_BASIC zephyr_grp)

add_subdirectory(lib)
zephyr_library_link_libraries(MCUMGR)
+0 −2
Original line number Diff line number Diff line
@@ -94,8 +94,6 @@ menu "Command Handlers"

rsource "lib/cmd/Kconfig"

rsource "zephyr_grp/Kconfig"

endmenu

menu "Transports and Transport Related Configuration Options"
+1 −0
Original line number Diff line number Diff line
@@ -9,3 +9,4 @@ add_subdirectory_ifdef(CONFIG_MCUMGR_CMD_IMG_MGMT img_mgmt)
add_subdirectory_ifdef(CONFIG_MCUMGR_CMD_OS_MGMT   os_mgmt)
add_subdirectory_ifdef(CONFIG_MCUMGR_CMD_STAT_MGMT stat_mgmt)
add_subdirectory_ifdef(CONFIG_MCUMGR_CMD_SHELL_MGMT shell_mgmt)
add_subdirectory_ifdef(CONFIG_MCUMGR_GRP_ZEPHYR_BASIC zephyr_basic)
+2 −0
Original line number Diff line number Diff line
@@ -11,3 +11,5 @@ rsource "os_mgmt/Kconfig"
rsource "shell_mgmt/Kconfig"

rsource "stat_mgmt/Kconfig"

rsource "zephyr_basic/Kconfig"
+1 −1
Original line number Diff line number Diff line
@@ -5,5 +5,5 @@
#

zephyr_library()
zephyr_library_sources_ifdef(CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE basic_mgmt.c)
zephyr_library_sources_ifdef(CONFIG_MCUMGR_GRP_BASIC_CMD_STORAGE_ERASE src/basic_mgmt.c)
zephyr_library_link_libraries(MCUMGR)
Loading