printk: move into lib/os

Last file under misc/. Put it alongside other support functions in
lib/os.

Signed-off-by: Anas Nashif <anas.nashif@intel.com>
This commit is contained in:
Anas Nashif 2019-01-19 07:04:48 -05:00
parent feadb532e3
commit b832a1e264
4 changed files with 2 additions and 2 deletions

View file

@ -489,7 +489,6 @@ endfunction()
# e.g. subsys/.
add_subdirectory(arch)
add_subdirectory(lib)
add_subdirectory(misc)
# We use include instead of add_subdirectory to avoid creating a new directory scope.
# This is because source file properties are directory scoped, including the GENERATED
# property which is set implicitly for custom command outputs

View file

@ -14,4 +14,6 @@ zephyr_sources(
zephyr_sources_ifdef(CONFIG_JSON_LIBRARY json.c)
zephyr_sources_if_kconfig(printk.c)
zephyr_sources_if_kconfig(ring_buffer.c)

View file

@ -1 +0,0 @@
zephyr_sources_if_kconfig(printk.c)