Skip to content
Snippets Groups Projects
Select Git revision
  • 49aa2a3d692482c9191c69e3c27e99c718e6f500
  • experimental default protected
  • v2023.2.5-ffs
  • nrb/ex400-remove-wps
  • nrb/airmax-test
  • v2023.2.4-ffs
  • nrb/ar9344-reset-sequence
  • autinerd/experimental-openwrt-24.10
  • v2023.2.3-ffs
  • v2023.2.2-ffs
  • v2023.2-ffs
  • v2023.1-ffs
  • v2022.1.4-ffs
  • feature/addMikrotikwAP
  • v2022.1.3-ffs
  • v2021.1.2-ffs
  • v2022.1.1-ffs
  • master protected
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • experimental-2025-10-23
  • experimental-2025-10-23-base
  • experimental-2025-10-22
  • experimental-2025-10-22-base
  • experimental-2025-10-19
  • experimental-2025-10-19-base
  • experimental-2025-10-15
  • experimental-2025-10-15-base
  • experimental-2025-10-12
  • experimental-2025-10-12-base
  • experimental-2025-10-06
  • experimental-2025-10-06-base
  • experimental-2025-10-02
  • experimental-2025-10-02-base
  • experimental-2025-09-19
  • experimental-2025-09-19-base
  • experimental-2025-09-15
  • experimental-2025-09-15-base
  • experimental-2025-09-12
  • experimental-2025-09-12-base
41 results

Makefile

Blame
  • user avatar
    Matthias Schiffer authored
    This removes PKG_VERSION and PKG_RELEASE from most Makefiles, as the
    value was never useful for Gluon packages; instead, PKG_VERSION is set
    to 1 in gluon.mk.
    
    It also removes two other weird definitions:
    
    - gluon-iptables-clamp-mss-to-pmtu replicating the old PKG_VERSION logic
      from gluon-core, but without the fixed PKG_BUILD_DIR to prevent
      unnessary rebuilds
    - gluon-hoodselector set GLUON_VERSION=3
    f419db58
    History
    Makefile 511 B
    include $(TOPDIR)/rules.mk
    
    PKG_NAME:=gluon-ebtables-source-filter
    
    include ../gluon.mk
    
    define Package/gluon-ebtables-source-filter
      TITLE:=Ebtables rules to filter unreasonable L2 traffic.
      DEPENDS:=+gluon-core +gluon-ebtables gluon-mesh-batman-adv
    endef
    
    define Package/gluon-ebtables-source-filter/description
    	This package adds an additional layer-2 filter-ruleset to prevent unreasonable
    	traffic entering the network via the nodes.
    endef
    
    $(eval $(call BuildPackageGluon,gluon-ebtables-source-filter))