initial buildroot for linux 5.15
This commit is contained in:
@@ -0,0 +1,25 @@
|
||||
config BR2_PACKAGE_RSYSLOG
|
||||
bool "rsyslog"
|
||||
depends on BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_USE_MMU # fork()
|
||||
depends on !BR2_STATIC_LIBS # modules
|
||||
depends on !BR2_TOOLCHAIN_USES_MUSL # GLOB_BRACE
|
||||
# Propagate the exact same dependency from libfastjson,
|
||||
# even though rsyslog already depends on threads for itself:
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4 || BR2_TOOLCHAIN_HAS_THREADS
|
||||
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||
select BR2_PACKAGE_ZLIB
|
||||
select BR2_PACKAGE_LIBESTR
|
||||
select BR2_PACKAGE_LIBLOGGING
|
||||
select BR2_PACKAGE_LIBFASTJSON
|
||||
help
|
||||
Rsyslog is a powerful and flexible syslog implementation
|
||||
|
||||
http://www.rsyslog.com
|
||||
|
||||
comment "rsyslog needs a uClibc or glibc toolchain w/ threads, dynamic library"
|
||||
depends on BR2_USE_MMU
|
||||
depends on BR2_TOOLCHAIN_HAS_SYNC_4
|
||||
depends on !BR2_TOOLCHAIN_HAS_THREADS || BR2_STATIC_LIBS \
|
||||
|| BR2_TOOLCHAIN_USES_MUSL
|
||||
depends on BR2_PACKAGE_BUSYBOX_SHOW_OTHERS
|
||||
@@ -0,0 +1,53 @@
|
||||
#!/bin/sh
|
||||
|
||||
DAEMON="rsyslogd"
|
||||
PIDFILE="/var/run/$DAEMON.pid"
|
||||
|
||||
RSYSLOGD_ARGS=""
|
||||
|
||||
# shellcheck source=/dev/null
|
||||
[ -r "/etc/default/$DAEMON" ] && . "/etc/default/$DAEMON"
|
||||
|
||||
start() {
|
||||
printf 'Starting %s: ' "$DAEMON"
|
||||
# shellcheck disable=SC2086 # we need the word splitting
|
||||
start-stop-daemon -S -q -p "$PIDFILE" -x "/usr/sbin/$DAEMON" \
|
||||
-- $RSYSLOGD_ARGS
|
||||
status=$?
|
||||
if [ "$status" -eq 0 ]; then
|
||||
echo "OK"
|
||||
else
|
||||
echo "FAIL"
|
||||
fi
|
||||
return "$status"
|
||||
}
|
||||
|
||||
stop() {
|
||||
printf 'Stopping %s: ' "$DAEMON"
|
||||
start-stop-daemon -K -q -p "$PIDFILE"
|
||||
status=$?
|
||||
if [ "$status" -eq 0 ]; then
|
||||
echo "OK"
|
||||
else
|
||||
echo "FAIL"
|
||||
fi
|
||||
return "$status"
|
||||
}
|
||||
|
||||
restart() {
|
||||
stop
|
||||
sleep 1
|
||||
start
|
||||
}
|
||||
|
||||
case "$1" in
|
||||
start|stop|restart)
|
||||
"$1";;
|
||||
reload)
|
||||
# Restart, since there is no true "reload" feature (does not
|
||||
# reconfigure/restart on SIGHUP, just closes all open files).
|
||||
restart;;
|
||||
*)
|
||||
echo "Usage: $0 {start|stop|restart|reload}"
|
||||
exit 1
|
||||
esac
|
||||
@@ -0,0 +1,7 @@
|
||||
# From http://www.rsyslog.com/downloads/download-v8-stable/
|
||||
sha256 19b232f765c4ba7a35b91ef1f5f9af775f6ff78ef56bb7737a2ce79ccbb32b98 rsyslog-8.2010.0.tar.gz
|
||||
|
||||
# Locally calculated
|
||||
sha256 054b3a047d9232376a46b87356b19b0c0c2924cb5e6911ab96a01fc4b515f083 COPYING
|
||||
sha256 8743ad560dea1229d4f46cd603e10874db41a27f3c74f64e958ef123f3943fab COPYING.ASL20
|
||||
sha256 4038442ca5bde8ffd243cfc235cb4455e7d618d47558ea3d8284733f71d904ed COPYING.LESSER
|
||||
@@ -0,0 +1,126 @@
|
||||
################################################################################
|
||||
#
|
||||
# rsyslog
|
||||
#
|
||||
################################################################################
|
||||
|
||||
RSYSLOG_VERSION = 8.2010.0
|
||||
RSYSLOG_SITE = http://rsyslog.com/files/download/rsyslog
|
||||
RSYSLOG_LICENSE = GPL-3.0, LGPL-3.0, Apache-2.0
|
||||
RSYSLOG_LICENSE_FILES = COPYING COPYING.LESSER COPYING.ASL20
|
||||
RSYSLOG_CPE_ID_VENDOR = rsyslog
|
||||
# rsyslog uses weak permissions for generating log files.
|
||||
# Ignoring this CVE as Buildroot normally doesn't have local users and a build
|
||||
# could customize the rsyslog.conf to be more restrictive ($FileCreateMode 0640)
|
||||
RSYSLOG_IGNORE_CVES += CVE-2015-3243
|
||||
RSYSLOG_DEPENDENCIES = zlib libestr liblogging libfastjson host-pkgconf
|
||||
RSYSLOG_CONF_ENV = ac_cv_prog_cc_c99='-std=c99'
|
||||
RSYSLOG_PLUGINS = imdiag imfile impstats imptcp \
|
||||
mmanon mmaudit mmfields mmjsonparse mmpstrucdata mmsequence mmutf8fix \
|
||||
mail omprog omruleset omstdout omuxsock \
|
||||
pmaixforwardedfrom pmciscoios pmcisconames pmlastmsg pmsnare
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBRELP),y)
|
||||
RSYSLOG_DEPENDENCIES += librelp
|
||||
RSYSLOG_PLUGINS += relp
|
||||
endif
|
||||
|
||||
RSYSLOG_CONF_OPTS = --disable-generate-man-pages \
|
||||
$(foreach x,$(call qstrip,$(RSYSLOG_PLUGINS)),--enable-$(x))
|
||||
|
||||
# Disable items requiring libcurl
|
||||
RSYSLOG_CONF_OPTS += --disable-elasticsearch \
|
||||
--disable-clickhouse \
|
||||
--disable-omhttp \
|
||||
--disable-fmhttp \
|
||||
--disable-imdocker \
|
||||
--disable-omhttpfs \
|
||||
--disable-mmkubernetes
|
||||
|
||||
ifeq ($(BR2_PACKAGE_CIVETWEB_LIB),y)
|
||||
RSYSLOG_DEPENDENCIES += civetweb
|
||||
RSYSLOG_CONF_OPTS += --enable-imhttp
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-imhttp
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_GNUTLS),y)
|
||||
RSYSLOG_DEPENDENCIES += gnutls
|
||||
RSYSLOG_CONF_OPTS += --enable-gnutls
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-gnutls
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBEE),y)
|
||||
RSYSLOG_DEPENDENCIES += libee
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBGCRYPT),y)
|
||||
RSYSLOG_DEPENDENCIES += libgcrypt
|
||||
RSYSLOG_CONF_ENV += LIBGCRYPT_CONFIG=$(STAGING_DIR)/usr/bin/libgcrypt-config
|
||||
RSYSLOG_CONF_OPTS += --enable-libgcrypt
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-libgcrypt
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_LIBPCAP),y)
|
||||
RSYSLOG_DEPENDENCIES += libpcap
|
||||
RSYSLOG_CONF_OPTS += --enable-impcap
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-impcap
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_MYSQL),y)
|
||||
RSYSLOG_DEPENDENCIES += mysql
|
||||
RSYSLOG_CONF_OPTS += --enable-mysql
|
||||
RSYSLOG_CONF_ENV += ac_cv_prog_MYSQL_CONFIG=$(STAGING_DIR)/usr/bin/mysql_config
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-mysql
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_POSTGRESQL),y)
|
||||
RSYSLOG_DEPENDENCIES += postgresql
|
||||
RSYSLOG_CONF_OPTS += --enable-pgsql
|
||||
RSYSLOG_CONF_ENV += ac_cv_prog_PG_CONFIG=$(STAGING_DIR)/usr/bin/pg_config
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-pgsql
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_PACKAGE_UTIL_LINUX_LIBUUID),y)
|
||||
RSYSLOG_DEPENDENCIES += util-linux
|
||||
RSYSLOG_CONF_OPTS += --enable-uuid
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += --disable-uuid
|
||||
endif
|
||||
|
||||
ifeq ($(BR2_INIT_SYSTEMD),y)
|
||||
RSYSLOG_CONF_OPTS += \
|
||||
--enable-imjournal \
|
||||
--enable-omjournal \
|
||||
--with-systemdsystemunitdir=/usr/lib/systemd/system
|
||||
RSYSLOG_DEPENDENCIES += systemd
|
||||
else
|
||||
RSYSLOG_CONF_OPTS += \
|
||||
--disable-imjournal \
|
||||
--disable-omjournal
|
||||
endif
|
||||
|
||||
define RSYSLOG_INSTALL_INIT_SYSTEMD
|
||||
$(INSTALL) -m 0755 -D package/rsyslog/rsyslog.service \
|
||||
$(TARGET_DIR)/usr/lib/systemd/system/rsyslog.service
|
||||
endef
|
||||
|
||||
define RSYSLOG_INSTALL_INIT_SYSV
|
||||
$(INSTALL) -m 0755 -D package/rsyslog/S01rsyslogd \
|
||||
$(TARGET_DIR)/etc/init.d/S01rsyslogd
|
||||
endef
|
||||
|
||||
define RSYSLOG_INSTALL_CONF
|
||||
$(INSTALL) -m 0644 -D $(@D)/platform/redhat/rsyslog.conf \
|
||||
$(TARGET_DIR)/etc/rsyslog.conf
|
||||
mkdir -p $(TARGET_DIR)/etc/rsyslog.d
|
||||
endef
|
||||
|
||||
RSYSLOG_POST_INSTALL_TARGET_HOOKS += RSYSLOG_INSTALL_CONF
|
||||
|
||||
$(eval $(autotools-package))
|
||||
@@ -0,0 +1,19 @@
|
||||
[Unit]
|
||||
Description=System Logging Service
|
||||
Requires=syslog.socket
|
||||
Documentation=man:rsyslogd(8)
|
||||
Documentation=https://www.rsyslog.com/doc/
|
||||
|
||||
[Service]
|
||||
Type=notify
|
||||
ExecStart=/usr/sbin/rsyslogd -n -iNONE
|
||||
StandardOutput=null
|
||||
Restart=on-failure
|
||||
|
||||
# Increase the default a bit in order to allow many simultaneous
|
||||
# files to be monitored, we might need a lot of fds.
|
||||
LimitNOFILE=16384
|
||||
|
||||
[Install]
|
||||
WantedBy=multi-user.target
|
||||
Alias=syslog.service
|
||||
Reference in New Issue
Block a user