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
+10
View File
@@ -0,0 +1,10 @@
config BR2_PACKAGE_LFT
bool "lft"
select BR2_PACKAGE_LIBPCAP
help
LFT, short for Layer Four Traceroute, is a sort of
'traceroute' that often works much faster (than the
commonly-used Van Jacobson method) and goes through many
configurations of packet-filters (firewalls).
http://pwhois.org/lft/
+5
View File
@@ -0,0 +1,5 @@
# From http://pwhois.org/lft/
md5 31b15aabc619707427a73657512560f8 lft-3.8.tar.gz
# Locally calculated
sha256 10f427e77b0f8207817329bd8ef0310078434612620073369264d15e6f97e990 lft-3.8.tar.gz
sha256 e3b7634630e6800eccca6ecafb5d40153d4f8f7a20e2b2399bf3c0ea92f44614 COPYING
+19
View File
@@ -0,0 +1,19 @@
################################################################################
#
# lft
#
################################################################################
LFT_VERSION = 3.8
LFT_SITE = http://pwhois.org/get
LFT_DEPENDENCIES = libpcap
LFT_LICENSE = VOSTROM Public License for Open Source
LFT_LICENSE_FILES = COPYING
LFT_CONF_OPTS = --with-pcap=$(STAGING_DIR)/usr
LFT_MAKE_ENV = STRIP=true
ifeq ($(BR2_STATIC_LIBS),y)
LFT_CONF_OPTS += LIBS="`$(STAGING_DIR)/usr/bin/pcap-config --static --additional-libs`"
endif
$(eval $(autotools-package))