summaryrefslogtreecommitdiffstats
path: root/configs/platform-mips/run
diff options
context:
space:
mode:
authorRoland Hieber <rhi@pengutronix.de>2023-06-23 14:47:42 +0200
committerRobert Schwebel <r.schwebel@pengutronix.de>2023-08-15 09:58:58 +0200
commite0d4408ef8d07546d778e7d2988951445174d4ba (patch)
tree11ddd42ea94db0b4bba7081da82869522e6c39ff /configs/platform-mips/run
parenta96a739eee17f6994c38f3621cc25980e229e507 (diff)
downloadDistroKit-e0d4408ef8d07546d778e7d2988951445174d4ba.tar.gz
DistroKit-e0d4408ef8d07546d778e7d2988951445174d4ba.tar.xz
platforms: revert to default systemd loglevel
By decreasing the systemd loglevel to "warning", the journal no longer contains useful lines like which units were started and stopped and when, which is quite sparse information for debugging. Remove the systemd.log_level from the kernel command line so systemd defaults to loglevel "info" (same level as loglevel=5 for the kernel). Keep the systemd.show_status setting on "auto" so that systemd only produces actual console output when the boot takes a significant amount of time, or produces error messages; so this change only changes the verbosity of the journal, not the console, on normal boots. Signed-off-by: Roland Hieber <rhi@pengutronix.de> Link: https://lore.barebox.org/20230623124755.2292833-2-rhi@pengutronix.de [remove meanwile eliminated special environment for rock3a, see 8ed4f77e790a24bd8c0d4fb15f95731eb1490be6 for reference] Signed-off-by: Robert Schwebel <r.schwebel@pengutronix.de>
Diffstat (limited to 'configs/platform-mips/run')
-rwxr-xr-xconfigs/platform-mips/run2
1 files changed, 1 insertions, 1 deletions
diff --git a/configs/platform-mips/run b/configs/platform-mips/run
index edfce51..cf8a535 100755
--- a/configs/platform-mips/run
+++ b/configs/platform-mips/run
@@ -65,7 +65,7 @@ if [ -z "${QEMU_NET}" ]; then
QEMU_NET=(-netdev user,id=net1,hostfwd=tcp:127.0.0.1:${TELNET_EXTERNAL_PORT}-:${TELNET_INTERNAL_PORT},hostfwd=tcp:127.0.0.1:${SSH_EXTERNAL_PORT}-:${SSH_INTERNAL_PORT} )
fi
-BASE_CMDLINE="console=ttyS0,115200 loglevel=5 systemd.log_level=warning systemd.show_status=auto"
+BASE_CMDLINE="console=ttyS0,115200 loglevel=5 systemd.show_status=auto"
# Machine to emulate
QEMU_ARGS=( -M malta -m 256 -serial stdio -monitor null -device qemu-xhci,id=xhci)