mirror of
https://git.busybox.net/buildroot.git
synced 2024-11-25 14:33:29 +08:00
ebtables: new package
[Peter: add ipv6 dependency] Signed-off-by: Baruch Siach <baruch@tkos.co.il> Signed-off-by: Peter Korsgaard <jacmet@sunsite.dk>
This commit is contained in:
parent
fc71f7e6f2
commit
a8041c0973
@ -394,6 +394,7 @@ endif
|
||||
source "package/dhcpdump/Config.in"
|
||||
source "package/dnsmasq/Config.in"
|
||||
source "package/dropbear/Config.in"
|
||||
source "package/ebtables/Config.in"
|
||||
source "package/ethtool/Config.in"
|
||||
source "package/hostapd/Config.in"
|
||||
source "package/ifplugd/Config.in"
|
||||
|
10
package/ebtables/Config.in
Normal file
10
package/ebtables/Config.in
Normal file
@ -0,0 +1,10 @@
|
||||
config BR2_PACKAGE_EBTABLES
|
||||
bool "ebtables"
|
||||
depends on BR2_INET_IPV6
|
||||
help
|
||||
Ethernet bridge frame table administration
|
||||
|
||||
http://ebtables.sourceforge.net
|
||||
|
||||
comment "ebtables requires a toolchain with IPv6 support"
|
||||
depends on !BR2_INET_IPV6
|
30
package/ebtables/ebtables.mk
Normal file
30
package/ebtables/ebtables.mk
Normal file
@ -0,0 +1,30 @@
|
||||
#############################################################
|
||||
#
|
||||
# ebtables
|
||||
#
|
||||
#############################################################
|
||||
EBTABLES_VERSION = 2.0.10-1
|
||||
EBTABLES_SOURCE = ebtables-v$(EBTABLES_VERSION).tar.gz
|
||||
EBTABLES_SITE = http://$(BR2_SOURCEFORGE_MIRROR).dl.sourceforge.net/sourceforge/ebtables
|
||||
|
||||
define EBTABLES_BUILD_CMDS
|
||||
$(MAKE) $(TARGET_CONFIGURE_OPTS) LIBDIR=/lib/ebtables -C $(@D)
|
||||
endef
|
||||
|
||||
define EBTABLES_INSTALL_TARGET_CMDS
|
||||
for so in $(@D)/$(EBTABLES_SUBDIR)/*.so \
|
||||
$(@D)/$(EBTABLES_SUBDIR)/extensions/*.so; \
|
||||
do \
|
||||
$(INSTALL) -m 0755 -D $${so} \
|
||||
$(TARGET_DIR)/lib/ebtables/`basename $${so}`; \
|
||||
done
|
||||
$(INSTALL) -m 0755 -D $(@D)/$(EBTABLES_SUBDIR)/ebtables \
|
||||
$(TARGET_DIR)/sbin/ebtables
|
||||
endef
|
||||
|
||||
define EBTABLES_UNINSTALL_TARGET_CMDS
|
||||
rm -rf $(TARGET_DIR)/lib/ebtables
|
||||
rm -f $(TARGET_DIR)/sbin/ebtables
|
||||
endef
|
||||
|
||||
$(eval $(call GENTARGETS,package,ebtables))
|
Loading…
Reference in New Issue
Block a user