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
+86
View File
@@ -0,0 +1,86 @@
config BR2_PACKAGE_BIRD
bool "bird"
depends on !BR2_nios2 # relocations don't fit
depends on BR2_USE_MMU # fork()
help
BIRD Internet Routing Daemon
The BIRD project aims to develop a dynamic IP routing daemon
with full support of all modern routing protocols, easy to
use configuration interface and powerful route filtering
language
http://bird.network.cz/
if BR2_PACKAGE_BIRD
config BR2_PACKAGE_BIRD_CLIENT
bool "birdc"
select BR2_PACKAGE_NCURSES
select BR2_PACKAGE_READLINE
help
Enable the BIRD client
comment "protocol support"
config BR2_PACKAGE_BIRD_BABEL
bool "babel"
help
Enable Babel protocol.
config BR2_PACKAGE_BIRD_BFD
bool "bfd"
depends on BR2_TOOLCHAIN_HAS_THREADS_NPTL
help
Enable BFD protocol.
comment "BFD protocol needs a toolchain w/ NPTL"
depends on !BR2_TOOLCHAIN_HAS_THREADS_NPTL
config BR2_PACKAGE_BIRD_BGP
bool "bgp"
default y
help
Enable BGP protocol.
config BR2_PACKAGE_BIRD_MRT
bool "mrt"
help
Enable MRT protocol.
config BR2_PACKAGE_BIRD_OSPF
bool "ospf"
help
Enable OSPFv2 and OSPFv3 protocol.
config BR2_PACKAGE_BIRD_PERF
bool "perf"
help
Enable Perf protocol.
config BR2_PACKAGE_BIRD_PIPE
bool "pipe"
help
Enable Pipe protocol.
config BR2_PACKAGE_BIRD_RADV
bool "radv"
help
Enable RAdv protocol.
config BR2_PACKAGE_BIRD_RIP
bool "rip"
help
Enable RIP protocol.
config BR2_PACKAGE_BIRD_RPKI
bool "rpki"
help
Enable RPKI protocol.
config BR2_PACKAGE_BIRD_STATIC
bool "static"
help
Enable Static protocol.
endif
+2
View File
@@ -0,0 +1,2 @@
sha256 19d2de83ee25a307b9e5b9e58797dd68766d439bcee33e3ac617ed502370e7f6 bird-2.0.8.tar.gz
sha256 94c53c84320078920ac1f0d49c81a4e9004512f534521a58bdf145acbcbc2cd2 README
+45
View File
@@ -0,0 +1,45 @@
################################################################################
#
# bird
#
################################################################################
BIRD_VERSION = 2.0.8
BIRD_SITE = ftp://bird.network.cz/pub/bird
BIRD_LICENSE = GPL-2.0+
BIRD_LICENSE_FILES = README
BIRD_CPE_ID_VENDOR = nic
BIRD_SELINUX_MODULES = bird
BIRD_DEPENDENCIES = host-flex host-bison
BIRD_AUTORECONF = YES
ifeq ($(BR2_PACKAGE_BIRD_CLIENT),y)
BIRD_CONF_OPTS += --enable-client
BIRD_DEPENDENCIES += ncurses readline
else
BIRD_CONF_OPTS += --disable-client
endif
ifeq ($(BR2_PACKAGE_LIBSSH),y)
BIRD_CONF_OPTS += --enable-libssh
BIRD_DEPENDENCIES += libssh
else
BIRD_CONF_OPTS += --disable-libssh
endif
BIRD_PROTOCOLS = \
$(if $(BR2_PACKAGE_BIRD_BFD),bfd) \
$(if $(BR2_PACKAGE_BIRD_BABEL),babel) \
$(if $(BR2_PACKAGE_BIRD_BGP),bgp) \
$(if $(BR2_PACKAGE_BIRD_MRT),mrt) \
$(if $(BR2_PACKAGE_BIRD_OSPF),ospf) \
$(if $(BR2_PACKAGE_BIRD_PERF),perf) \
$(if $(BR2_PACKAGE_BIRD_PIPE),pipe) \
$(if $(BR2_PACKAGE_BIRD_RADV),radv) \
$(if $(BR2_PACKAGE_BIRD_RIP),rip) \
$(if $(BR2_PACKAGE_BIRD_RPKI),rpki) \
$(if $(BR2_PACKAGE_BIRD_STATIC),static)
BIRD_CONF_OPTS += --with-protocols=$(subst $(space),$(comma),$(strip $(BIRD_PROTOCOLS)))
$(eval $(autotools-package))