67abcff944
Change references to use bullseye instead of buster Why I did it Almost all daemons in 202211 and master uses bullseye, and NAT seems easy to migrate. How I did it Replaced the references, built with 202211 branch. How to verify it Not sure, it builds and tests pass as far as I can tell but I don't use the feature myself. Signed-off-by: Christian Svensson <blue@cmd.nu>
27 lines
973 B
Makefile
27 lines
973 B
Makefile
# iptables package
|
|
|
|
IPTABLES_VERSION = 1.8.7
|
|
IPTABLES_VERSION_SUFFIX = 1
|
|
IPTABLES_VERSION_FULL = $(IPTABLES_VERSION)-$(IPTABLES_VERSION_SUFFIX)
|
|
|
|
IPTABLES = iptables_$(IPTABLES_VERSION_FULL)_$(CONFIGURED_ARCH).deb
|
|
$(IPTABLES)_SRC_PATH = $(SRC_PATH)/iptables
|
|
SONIC_MAKE_DEBS += $(IPTABLES)
|
|
|
|
IPTABLESIP4TC = libip4tc2_$(IPTABLES_VERSION_FULL)_$(CONFIGURED_ARCH).deb
|
|
$(eval $(call add_derived_package,$(IPTABLES),$(IPTABLESIP4TC)))
|
|
|
|
IPTABLESIP6TC = libip6tc2_$(IPTABLES_VERSION_FULL)_$(CONFIGURED_ARCH).deb
|
|
$(eval $(call add_derived_package,$(IPTABLES),$(IPTABLESIP6TC)))
|
|
|
|
IPTABLESIPTC = libiptc0_$(IPTABLES_VERSION_FULL)_$(CONFIGURED_ARCH).deb
|
|
$(eval $(call add_derived_package,$(IPTABLES),$(IPTABLESIPTC)))
|
|
|
|
IPXTABLES12 = libxtables12_$(IPTABLES_VERSION_FULL)_$(CONFIGURED_ARCH).deb
|
|
$(eval $(call add_derived_package,$(IPTABLES),$(IPXTABLES12)))
|
|
|
|
# Export these variables so they can be used in a sub-make
|
|
export IPTABLES_VERSION
|
|
export IPTABLES_VERSION_FULL
|
|
export IPTABLES
|