Move fs/drivers/fs_devsyslog.c to drivers/syslog/syslog_device.c

This commit is contained in:
Gregory Nutt
2016-06-19 08:46:46 -06:00
parent b66112347c
commit e27491f5be
5 changed files with 88 additions and 144 deletions
+12 -5
View File
@@ -46,15 +46,22 @@ ifeq ($(CONFIG_DRIVER_NOTE),y)
CSRCS += note_driver.c
endif
############################################################################
# Include SYSLOG drivers (only one should be enabled)
# The RAMLOG device is usable as a system logging device or standalone
ifeq ($(CONFIG_RAMLOG),y)
CSRCS += ramlog.c
else ifeq ($(CONFIG_SYSLOG),y)
endif
# If no special logging devices are implemented, then the default SYSLOG
# logic at fs/fs_syslog.c will be used
############################################################################
# Include SYSLOG drivers (only one should be enabled)
ifeq ($(CONFIG_SYSLOG),y)
# System logging to a character device (or file)
ifeq ($(CONFIG_SYSLOG_CHAR),y)
CSRCS += syslog_device.c
endif
# (Add other SYSLOG drivers here)