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:
Gerson Fernando Budke 2020-07-30 19:58:32 -03:00 committed by Carles Cufí
parent 6364338815
commit 29544a1ceb
17 changed files with 8 additions and 4 deletions

View file

@ -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

View file

@ -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)

View file

@ -17,8 +17,6 @@ source "lib/os/Kconfig"
source "lib/posix/Kconfig"
source "lib/updatehub/Kconfig"
source "lib/open-amp/Kconfig"
endmenu

View file

@ -1,3 +1,4 @@
# SPDX-License-Identifier: Apache-2.0
add_subdirectory_ifdef(CONFIG_MCUMGR mcumgr)
add_subdirectory_ifdef(CONFIG_UPDATEHUB updatehub)

View file

@ -6,4 +6,6 @@ menu "Management subsystems"
source "subsys/mgmt/mcumgr/Kconfig"
source "subsys/mgmt/updatehub/Kconfig"
endmenu

View file

@ -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
)