Merge pull request #5537 from mglae/le10_persistent_log

systemd/busybox: allow configuration of persistent logs and journal
This commit is contained in:
CvH 2021-08-09 11:29:21 +02:00 committed by GitHub
commit 918e82fa08
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 8 additions and 3 deletions

View File

@ -82,7 +82,7 @@ fi
cat_file "${LOG_FILE}" cat_file "${LOG_FILE}"
journalctl -a -o short-precise | cat_data "journalctl -a" journalctl -a -b -0 -o short-precise | cat_data "journalctl -a -b -0"
if [ "${LIBREELEC_PROJECT}" = "RPi" ]; then if [ "${LIBREELEC_PROJECT}" = "RPi" ]; then
vcgencmd bootloader_version | cat_data "Bootloader version" vcgencmd bootloader_version | cat_data "Bootloader version"

View File

@ -1,9 +1,10 @@
[Unit] [Unit]
Description=Create Persistent Log Directory on /storage Description=Create Persistent Log Directory on /storage and rotate large logs
DefaultDependencies=no DefaultDependencies=no
RequiresMountsFor=/storage RequiresMountsFor=/storage
[Service] [Service]
Type=oneshot Type=oneshot
RemainAfterExit=yes RemainAfterExit=yes
ExecStart=/bin/mkdir -p /storage/.cache/log/journal ExecStart=/bin/mkdir -p /storage/.cache/log/journal /storage/.cache/journald.conf.d ; \
/usr/bin/find /storage/.cache/log/ -maxdepth 1 -type f -size +512k ! -name '*.old' -exec mv {} {}.old \;

View File

@ -6,6 +6,7 @@ After=storage-log.service
ConditionKernelCommandLine=!installer ConditionKernelCommandLine=!installer
ConditionKernelCommandLine=|debugging ConditionKernelCommandLine=|debugging
ConditionPathExists=|/storage/.cache/debug.libreelec ConditionPathExists=|/storage/.cache/debug.libreelec
ConditionPathExists=|/storage/.cache/journald.conf.d/00_settings.conf
[Mount] [Mount]
What=/storage/.cache/log What=/storage/.cache/log

View File

@ -250,6 +250,9 @@ post_makeinstall_target() {
ln -sf /storage/.config/hwdb.d ${INSTALL}/etc/udev/hwdb.d ln -sf /storage/.config/hwdb.d ${INSTALL}/etc/udev/hwdb.d
safe_remove ${INSTALL}/etc/udev/rules.d safe_remove ${INSTALL}/etc/udev/rules.d
ln -sf /storage/.config/udev.rules.d ${INSTALL}/etc/udev/rules.d ln -sf /storage/.config/udev.rules.d ${INSTALL}/etc/udev/rules.d
# journald
ln -sf /storage/.cache/journald.conf.d ${INSTALL}/usr/lib/systemd/journald.conf.d
} }
post_install() { post_install() {