Files
nuttx/drivers/syslog/CMakeLists.txt
T
wangchengdong 378a827a7a sched/syslog: Add early_syslog() for early boot or system down debugging
Introduce early_syslog() to enable basic logging during the very early
    boot or system down stages, when the full syslog subsystem is not yet
    available.

Signed-off-by: Chengdong Wang wangchengdong@lixiang.com
2025-10-31 08:29:17 -03:00

103 lines
2.6 KiB
CMake

# ##############################################################################
# drivers/syslog/CMakeLists.txt
#
# SPDX-License-Identifier: Apache-2.0
#
# Licensed to the Apache Software Foundation (ASF) under one or more contributor
# license agreements. See the NOTICE file distributed with this work for
# additional information regarding copyright ownership. The ASF licenses this
# file to you under the Apache License, Version 2.0 (the "License"); you may not
# use this file except in compliance with the License. You may obtain a copy of
# the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
# License for the specific language governing permissions and limitations under
# the License.
#
# ##############################################################################
# Include SYSLOG Infrastructure
set(SRCS)
if(CONFIG_ARCH_LOWPUTC)
list(APPEND SRCS syslog_early.c)
endif()
if(CONFIG_SYSLOG)
if(CONFIG_SYSLOG_RFC5424)
list(APPEND SRCS vsyslog_rfc5424.c)
else()
list(APPEND SRCS vsyslog.c)
endif()
list(APPEND SRCS syslog_channel.c syslog_write.c syslog_flush.c)
endif()
if(CONFIG_SYSLOG_INTBUFFER)
list(APPEND SRCS syslog_intbuffer.c)
endif()
if(CONFIG_SYSLOG)
list(APPEND SRCS syslog_initialize.c)
endif()
# The RAMLOG device is usable as a system logging device or standalone
if(CONFIG_RAMLOG)
list(APPEND SRCS ramlog.c)
if(CONFIG_RAMLOG_BUFFER_SECTION)
target_compile_definitions(
drivers PRIVATE -DRAMLOG_BUFFER_SECTION="${CONFIG_RAMLOG_BUFFER_SECTION}")
endif()
endif()
# Include SYSLOG drivers (only one should be enabled)
# System logging to a character device (or file)
if(CONFIG_SYSLOG_CONSOLE
OR CONFIG_SYSLOG_CHAR
OR CONFIG_SYSLOG_FILE)
list(APPEND SRCS syslog_device.c)
endif()
if(CONFIG_SYSLOG_CHAR)
list(APPEND SRCS syslog_devchannel.c)
endif()
if(CONFIG_SYSLOG_CONSOLE)
list(APPEND SRCS syslog_consolechannel.c)
endif()
if(CONFIG_SYSLOG_FILE)
list(APPEND SRCS syslog_filechannel.c)
endif()
if(CONFIG_SYSLOG_CHARDEV)
list(APPEND SRCS syslog_chardev.c)
endif()
if(CONFIG_SYSLOG_RPMSG)
list(APPEND SRCS syslog_rpmsg.c)
endif()
if(CONFIG_SYSLOG_RPMSG_SERVER)
list(APPEND SRCS syslog_rpmsg_server.c)
endif()
if(CONFIG_CONSOLE_SYSLOG)
list(APPEND SRCS syslog_console.c)
endif()
if(CONFIG_SYSLOG_STREAM)
list(APPEND SRCS syslog_stream.c)
endif()
target_sources(drivers PRIVATE ${SRCS})