updatehub: Move from lib to subsys:mgmt folder
Zephyr introduced subsys/mgmt folder for MCU management. Move UpdateHub to this newly and dedicated space. Signed-off-by: Gerson Fernando Budke <gerson.budke@ossystems.com.br>
This commit is contained in:
parent
6364338815
commit
29544a1ceb
|
@ -386,7 +386,6 @@
|
|||
/samples/ @nashif
|
||||
/samples/basic/minimal/ @carlescufi
|
||||
/samples/basic/servo_motor/boards/*microbit* @jhe
|
||||
/lib/updatehub/ @nandojve @otavio
|
||||
/samples/bluetooth/ @jhedberg @Vudentz @joerchan
|
||||
/samples/boards/intel_s1000_crb/ @sathishkuttan @dcpleung @nashif
|
||||
/samples/display/ @vanwinkeljan
|
||||
|
@ -463,6 +462,7 @@
|
|||
/subsys/logging/log_backend_net.c @nordic-krch @jukkar
|
||||
/subsys/mgmt/mcumgr/ @carlescufi @nvlsianpu
|
||||
/subsys/mgmt/mcumgr/smp_udp.c @aunsbjerg
|
||||
/subsys/mgmt/updatehub/ @nandojve @otavio
|
||||
/subsys/net/buf.c @jukkar @jhedberg @tbursztyka @pfalcon
|
||||
/subsys/net/ip/ @jukkar @tbursztyka @pfalcon
|
||||
/subsys/net/lib/ @jukkar @tbursztyka @pfalcon
|
||||
|
|
|
@ -9,5 +9,4 @@ add_subdirectory_ifdef(CONFIG_CMSIS_RTOS_V2 cmsis_rtos_v2)
|
|||
add_subdirectory_ifdef(CONFIG_FNMATCH fnmatch)
|
||||
add_subdirectory(gui)
|
||||
add_subdirectory(os)
|
||||
add_subdirectory_ifdef(CONFIG_UPDATEHUB updatehub)
|
||||
add_subdirectory_ifdef(CONFIG_OPENAMP open-amp)
|
||||
|
|
|
@ -17,8 +17,6 @@ source "lib/os/Kconfig"
|
|||
|
||||
source "lib/posix/Kconfig"
|
||||
|
||||
source "lib/updatehub/Kconfig"
|
||||
|
||||
source "lib/open-amp/Kconfig"
|
||||
|
||||
endmenu
|
||||
|
|
|
@ -1,3 +1,4 @@
|
|||
# SPDX-License-Identifier: Apache-2.0
|
||||
|
||||
add_subdirectory_ifdef(CONFIG_MCUMGR mcumgr)
|
||||
add_subdirectory_ifdef(CONFIG_UPDATEHUB updatehub)
|
||||
|
|
|
@ -6,4 +6,6 @@ menu "Management subsystems"
|
|||
|
||||
source "subsys/mgmt/mcumgr/Kconfig"
|
||||
|
||||
source "subsys/mgmt/updatehub/Kconfig"
|
||||
|
||||
endmenu
|
||||
|
|
|
@ -11,3 +11,7 @@ zephyr_library_sources_ifdef(CONFIG_UPDATEHUB updatehub_device.c)
|
|||
zephyr_library_sources_ifdef(CONFIG_UPDATEHUB updatehub_firmware.c)
|
||||
zephyr_library_sources_ifdef(CONFIG_UPDATEHUB updatehub_timer.c)
|
||||
zephyr_library_sources_ifdef(CONFIG_UPDATEHUB_SHELL shell.c)
|
||||
|
||||
zephyr_include_directories(
|
||||
${ZEPHYR_BASE}/subsys/mgmt/updatehub/include
|
||||
)
|
Loading…
Reference in a new issue