initial buildroot for linux 5.15

This commit is contained in:
Huan.Feng
2021-12-06 14:12:13 +08:00
parent d7767d594e
commit 7b6fc358fa
12736 changed files with 508822 additions and 0 deletions
+8
View File
@@ -0,0 +1,8 @@
config BR2_PACKAGE_LIBLOGGING
bool "liblogging"
help
Liblogging is an easy to use library for
logging. It offers an enhanced replacement
for the syslog() call, but retains its ease of use.
https://www.rsyslog.com/liblogging/
+5
View File
@@ -0,0 +1,5 @@
# From http://www.liblogging.org/
sha256 338c6174e5c8652eaa34f956be3451f7491a4416ab489aef63151f802b00bf93 liblogging-1.0.6.tar.gz
# Hash for license file:
sha256 a5626f700d3ee92513673b5f43733af5b651d9e7a9157d4bd81ceb9c89ec04b0 COPYING
+22
View File
@@ -0,0 +1,22 @@
################################################################################
#
# liblogging
#
################################################################################
LIBLOGGING_VERSION = 1.0.6
LIBLOGGING_SITE = http://download.rsyslog.com/liblogging
LIBLOGGING_LICENSE = BSD-2-Clause
LIBLOGGING_LICENSE_FILES = COPYING
LIBLOGGING_CPE_ID_VENDOR = adiscon
LIBLOGGING_INSTALL_STAGING = YES
LIBLOGGING_CONF_OPTS = --enable-cached-man-pages
ifeq ($(BR2_INIT_SYSTEMD),y)
LIBLOGGING_CONF_OPTS += --enable-journal
LIBLOGGING_DEPENDENCIES += systemd
else
LIBLOGGING_CONF_OPTS += --disable-journal
endif
$(eval $(autotools-package))