summaryrefslogtreecommitdiff
path: root/recipes-support/uxfp/uxfp-from-source/0002-uxfp-add-param-syslog.patch
blob: e562b592d0acd6384c08ab411f5ed16e035115fb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34

The patch allows to redirect all log messages from stdout to syslog.

diff -ruN git/uxfp/main.c git/uxfp/main.c
--- git/uxfp/main.c
+++ git/uxfp/main.c
@@ -47,6 +47,7 @@
     bool json;
     bool report;
     bool no_fastboot_driver;
+    bool syslog;
 } options = {0};
 
 flag_t flags [] = {
@@ -62,6 +63,7 @@
     {"--show-diag-ports", "-w", VALUE_TYPE_BOOLEAN, &options.show_connected_diag_ports, OPT, "only show connected diagnostic ports and exit"},
     {"--json", "-j", VALUE_TYPE_BOOLEAN, &options.json, OPT, "log in JSON format (automatically enable --report)"},
     {"--report", NULL, VALUE_TYPE_BOOLEAN, &options.report, OPT, "final JSON report (do not enable --json automatically)"},
+    {"--syslog", "-n", VALUE_TYPE_BOOLEAN, &options.syslog,   OPT, "all the logs redirected to syslog"},
     {NULL, NULL, VALUE_TYPE_UNKNOWN, NULL, OPT, NULL},
 };
 
@@ -139,6 +141,10 @@
     if (options.json) {
         options.report = true;
         core_log_set_pprint(CORE_LOG_PPRINT_JSON);
+    }
+
+    if (options.syslog) {
+        core_log_set_native(true);
     }
 
     print_version_string();