Skip to content

Commit 10f62f6

Browse files
authored
Merge pull request #1000 from kernelkit/logging-fixes
Misc. fixes related to logging found in -rc1
2 parents 2902dcc + fa4f7c6 commit 10f62f6

File tree

37 files changed

+1016
-1956
lines changed

37 files changed

+1016
-1956
lines changed

board/common/rootfs/usr/libexec/infix/init.d/05-product

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,8 +39,10 @@ fi
3939
# init scripts to prevent select services from starting.
4040
initctl -nbq cond set led
4141

42-
note "Calling runparts $PRODUCT_INIT/S[0-9]+.* start"
43-
/usr/libexec/finit/runparts -bsp "$PRODUCT_INIT"
42+
if [ -d "$PRODUCT_INIT" ]; then
43+
note "Calling runparts $PRODUCT_INIT/S[0-9]+.* start"
44+
/usr/libexec/finit/runparts -bsp "$PRODUCT_INIT"
45+
fi
4446

4547
# Product specific init done.
4648
initctl -nbq cond set product

doc/ChangeLog.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,12 @@ All notable changes to the project are documented in this file.
2121
- Fix #990: web console, ttyd service, stopped working after upgrade to
2222
Buildroot 2025.02, caused by new (missing) option `--writable`
2323
- Fix TCAM memory corruption in `mvpp2` Ethernet controller
24+
- Fix annoying (but harmless) usage message from the logger tool when
25+
`startup-config` fails to load and the system reverts to failure mode
26+
- Fix harmless log warning for product specific init when no product
27+
specific init scripts are found
28+
- Backport fixes for sysklogd, affecting hostname filtering and periods
29+
in TAG names, pending official backport in Buildroot
2430

2531

2632
[v25.02.0][] - 2025-03-04

package/confd/confd.conf

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ run name:startup log:prio:user.notice norestart <pid/confd> env:/etc/default/con
1717
-- Loading startup-config
1818

1919
# Run if loading startup-config fails for some reason
20-
run name:failure log:prio:user.critical norestart env:/etc/default/confd \
20+
run name:failure log:prio:user.crit norestart env:/etc/default/confd \
2121
if:<run/startup/failure> \
2222
[S] <pid/confd> /usr/libexec/confd/load -t $CONFD_TIMEOUT failure-config \
2323
-- Loading failure-config

patches/sysklogd/2.5.2/0001-Fix-72-loss-of-raw-kernel-log-messages-to-console.patch

Lines changed: 0 additions & 117 deletions
This file was deleted.

patches/sysklogd/2.5.2/0002-Fix-80-add-global-log-rotation-options-to-.conf-file.patch

Lines changed: 0 additions & 177 deletions
This file was deleted.

0 commit comments

Comments
 (0)