Initial commit

This commit is contained in:
Your Name
2026-04-23 17:07:55 +08:00
commit b7e39e063b
16725 changed files with 1625565 additions and 0 deletions
@@ -0,0 +1,3 @@
SOCKET_ID=default
MODE=stream
STREAM_DST=/run/rsyslog/console/cpu
@@ -0,0 +1,3 @@
SOCKET_ID=ttyS1
MODE=stream
STREAM_DST=/run/rsyslog/console/mpro0
@@ -0,0 +1,3 @@
SOCKET_ID=ttyS2
MODE=stream
STREAM_DST=/run/rsyslog/console/atf
@@ -0,0 +1,3 @@
SOCKET_ID=ttyS3
MODE=stream
STREAM_DST=/run/rsyslog/console/secpro0
@@ -0,0 +1,3 @@
SOCKET_ID=ttyS7
MODE=stream
STREAM_DST=/run/rsyslog/console/mpro1
@@ -0,0 +1,3 @@
SOCKET_ID=ttyS8
MODE=stream
STREAM_DST=/run/rsyslog/console/secpro1
@@ -0,0 +1,20 @@
FILESEXTRAPATHS:prepend := "${THISDIR}/${PN}:"
SRC_URI:append = " \
file://ttyS0.conf \
file://ttyS1.conf \
file://ttyS2.conf \
file://ttyS3.conf \
file://ttyS7.conf \
file://ttyS8.conf \
"
do_install:append() {
# Install the configurations
install -m 0755 -d ${D}${sysconfdir}/${BPN}
install -m 0644 ${WORKDIR}/*.conf ${D}${sysconfdir}/${BPN}/
# Remove upstream-provided default configuration
rm -f ${D}${sysconfdir}/${BPN}/ttyVUART0.conf
}