Bump buidlroot version to 2018.02.6

This commit is contained in:
jbnadal
2018-10-22 14:55:59 +02:00
parent 222960cedb
commit bec94fdb63
6150 changed files with 84803 additions and 117446 deletions

View File

@@ -0,0 +1,11 @@
[Unit]
Description=Kernel Log Daemon
[Service]
ExecStart=/usr/sbin/klogd -n
StandardOutput=null
Restart=on-failure
[Install]
WantedBy=multi-user.target
WantedBy=syslogd.service

View File

@@ -6,7 +6,7 @@
SYSKLOGD_VERSION = 1.5.1
SYSKLOGD_SITE = http://www.infodrom.org/projects/sysklogd/download
SYSKLOGD_LICENSE = GPLv2+
SYSKLOGD_LICENSE = GPL-2.0+
SYSKLOGD_LICENSE_FILES = COPYING
# Override BusyBox implementations if BusyBox is enabled.
@@ -32,4 +32,16 @@ define SYSKLOGD_INSTALL_INIT_SYSV
$(TARGET_DIR)/etc/init.d/S01logging
endef
define SYSKLOGD_INSTALL_INIT_SYSTEMD
$(INSTALL) -D -m 644 $(SYSKLOGD_PKGDIR)/syslogd.service \
$(TARGET_DIR)/usr/lib/systemd/system/syslogd.service
$(INSTALL) -D -m 644 $(SYSKLOGD_PKGDIR)/klogd.service \
$(TARGET_DIR)/usr/lib/systemd/system/klogd.service
mkdir -p $(TARGET_DIR)/etc/systemd/system/multi-user.target.wants
ln -sf ../../../../usr/lib/systemd/system/syslogd.service \
$(TARGET_DIR)/etc/systemd/system/multi-user.target.wants/syslogd.service
ln -sf ../../../usr/lib/systemd/system/syslogd.service \
$(TARGET_DIR)/etc/systemd/system/syslog.service
endef
$(eval $(generic-package))

View File

@@ -0,0 +1,13 @@
[Unit]
Description=System Logging Service
Requires=syslog.socket
Wants=klogd.service
[Service]
ExecStart=/usr/sbin/syslogd -m 0 -n
StandardOutput=null
Restart=on-failure
[Install]
WantedBy=multi-user.target
Alias=syslog.service