39 lines
1004 B
Plaintext
39 lines
1004 B
Plaintext
# SWUpdate configuration file
|
|
#
|
|
# SPDX-FileCopyrightText: 2014-2021 Stefano Babic <sbabic@denx.de>
|
|
# SPDX-License-Identifier: CC0-1.0
|
|
#
|
|
# This is responsible to pass configuration and parameters
|
|
# to SWUpdate. Most of configuration can be overwritten
|
|
# with command line parameters.
|
|
#
|
|
|
|
globals : {
|
|
verbose = false;
|
|
loglevel = 3;
|
|
syslog = true;
|
|
#mtd-blacklist
|
|
#public-key-file
|
|
};
|
|
|
|
# logcolors : set colors for output to stdout / stderr
|
|
# color is set indivisually for each level
|
|
# each entry is in the format
|
|
# loglevel = color:attribute
|
|
# where loglevel is one of:
|
|
# "error","warning", "info", "debug", "trace"
|
|
# and color is one of:
|
|
# "black", "red", "green", "yellow", "blue", "magenta", "cyan", "white"
|
|
# and attribute is one of:
|
|
# "normal", "bright", "dim", "underline", "blink", "reverse", "hidden"
|
|
#
|
|
# Example :
|
|
# error = "red";
|
|
#
|
|
logcolors : {
|
|
error = "red:blink";
|
|
trace = "green:normal";
|
|
debug = "magenta:normal";
|
|
warning = "yellow:underline";
|
|
};
|