summaryrefslogtreecommitdiffstats
path: root/common/log_syslog.c
diff options
context:
space:
mode:
authorSimon Glass <sjg@chromium.org>2020-09-12 12:28:50 -0600
committerTom Rini <trini@konsulko.com>2020-10-10 16:50:11 -0400
commitc7f5b850344b1bb620f603ab7df3ee92e1fa26cf (patch)
tree967c6fd2d471c0eecae714b243bd1fdfb1bfa1e3 /common/log_syslog.c
parent3d03ab6361a4a2b60e84da46c547b8ace01a60eb (diff)
downloadu-boot-c7f5b850344b1bb620f603ab7df3ee92e1fa26cf.tar.gz
u-boot-c7f5b850344b1bb620f603ab7df3ee92e1fa26cf.tar.xz
u-boot-c7f5b850344b1bb620f603ab7df3ee92e1fa26cf.zip
log: Disable the syslog driver by default
This driver interferes with other sandbox tests since it causes log output to be interspersed with "No ethernet found." messages. Disable this driver by default. Enable it for the syslog tests so that they still pass. Signed-off-by: Simon Glass <sjg@chromium.org>
Diffstat (limited to 'common/log_syslog.c')
-rw-r--r--common/log_syslog.c1
1 files changed, 0 insertions, 1 deletions
diff --git a/common/log_syslog.c b/common/log_syslog.c
index 8276883780..2ae703fed7 100644
--- a/common/log_syslog.c
+++ b/common/log_syslog.c
@@ -107,5 +107,4 @@ out:
LOG_DRIVER(syslog) = {
.name = "syslog",
.emit = log_syslog_emit,
- .flags = LOGDF_ENABLE,
};