hc
2024-08-19 eb6b9ee90f50f13c5abb885ce483802d6262f2b5
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
################################################################################
#
# frr
#
################################################################################
 
FRR_VERSION = 7.5.1
FRR_SITE = $(call github,FRRouting,frr,frr-$(FRR_VERSION))
FRR_LICENSE = GPL-2.0
FRR_LICENSE_FILES = COPYING
FRR_CPE_ID_VENDOR = linuxfoundation
FRR_CPE_ID_PRODUCT = free_range_routing
FRR_AUTORECONF = YES
 
FRR_DEPENDENCIES = host-frr readline json-c \
   libyang libnl c-ares
 
HOST_FRR_DEPENDENCIES = host-flex host-bison host-python3
 
FRR_CONF_OPTS = --with-clippy=$(HOST_DIR)/bin/clippy \
   --sysconfdir=/etc/frr \
   --localstatedir=/var/run/frr \
   --with-moduledir=/usr/lib/frr/modules \
   --enable-configfile-mask=0640 \
   --enable-logfile-mask=0640 \
   --enable-multipath=256 \
   --disable-ospfclient \
   --enable-shell-access \
   --enable-user=frr \
   --enable-group=frr \
   --enable-vty-group=frrvty \
   --disable-capabilities \
   --enable-fpm
 
HOST_FRR_CONF_OPTS = --enable-clippy-only
 
ifeq ($(BR2_TOOLCHAIN_HAS_LIBATOMIC),y)
FRR_CONF_ENV += LIBS=-latomic
endif
 
define HOST_FRR_INSTALL_CMDS
   $(INSTALL) -D -m 0755 $(@D)/lib/clippy $(HOST_DIR)/bin/clippy
endef
 
define FRR_INSTALL_CONFIG_FILES
   $(foreach f,daemons daemons.conf frr.conf vtysh.conf support_bundle_commands.conf,\
       $(INSTALL) -D -m 0640 $(@D)/tools/etc/frr/$(f) \
           $(TARGET_DIR)/etc/frr/$(f)
   )
   $(RM) $(TARGET_DIR)/etc/frr/*.sample
endef
FRR_POST_INSTALL_TARGET_HOOKS += FRR_INSTALL_CONFIG_FILES
 
define FRR_PERMISSIONS
   /etc/frr/daemons f 640 frr frr - - - - -
   /etc/frr/daemons.conf f 640 frr frr - - - - -
   /etc/frr/frr.conf f 640 frr frr - - - - -
   /etc/frr/vtysh.conf f 640 frr frrvty - - - - -
   /etc/frr/support_bundle_commands.conf f 640 frr frr
endef
 
define FRR_USERS
   frr -1 frr -1 * /var/run/frr - frrvty FRR user priv
endef
 
define FRR_INSTALL_INIT_SYSV
   $(INSTALL) -D -m 755 $(FRR_PKGDIR)/S50frr \
       $(TARGET_DIR)/etc/init.d/S50frr
endef
 
$(eval $(autotools-package))
$(eval $(host-autotools-package))