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
+16
View File
@@ -0,0 +1,16 @@
config BR2_PACKAGE_OPEN_LLDP
bool "open-lldp"
depends on !BR2_STATIC_LIBS # dlfcn.h
depends on BR2_TOOLCHAIN_HAS_THREADS # libnl
select BR2_PACKAGE_LIBCONFIG
select BR2_PACKAGE_LIBNL
select BR2_PACKAGE_READLINE
help
This package contains the Linux user space daemon and
configuration tool for Intel LLDP Agent with Enhanced Ethernet
support for the Data Center.
https://github.com/intel/openlldp/
comment "open-lldp needs a toolchain w/ dynamic library, threads"
depends on BR2_STATIC_LIBS || !BR2_TOOLCHAIN_HAS_THREADS
+3
View File
@@ -0,0 +1,3 @@
# Locally computed
sha256 13e0890527192a6289e6dac82056c447a1e2624ff93b0b6bbd8a42d15b2cbc8c open-lldp-1.1.tar.gz
sha256 67af5abeb092213cd9c53781503320f635ba28b641e0c3f24d367e8e93a9839b COPYING
+21
View File
@@ -0,0 +1,21 @@
################################################################################
#
# open-lldp
#
################################################################################
OPEN_LLDP_VERSION = 1.1
OPEN_LLDP_SITE = $(call github,intel,openlldp,v$(OPEN_LLDP_VERSION))
OPEN_LLDP_DEPENDENCIES = readline libnl libconfig host-pkgconf
OPEN_LLDP_LICENSE = GPL-2.0
OPEN_LLDP_LICENSE_FILES = COPYING
# Fetching from git
OPEN_LLDP_AUTORECONF = YES
ifeq ($(BR2_INIT_SYSTEMD),y)
OPEN_LLDP_DEPENDENCIES += systemd
OPEN_LLDP_CONF_OPTS += --with-systemdsystemunitdir=/usr/lib/systemd/system
endif
$(eval $(autotools-package))