The batctl v2013.4 build was removed from the batman-adv-legacy package as the current, upstream batctl releases work with batman-adv-legacy, too. As a replacement we need to add the upstream batctl dependency to gluon-mesh-batman-adv-14 to have a batctl available again here. Signed-off-by: Linus Lüssing <linus.luessing@c0d3.blue>
		
			
				
	
	
		
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
			
		
		
	
	
			55 lines
		
	
	
		
			1.3 KiB
		
	
	
	
		
			Makefile
		
	
	
	
	
	
include $(TOPDIR)/rules.mk
 | 
						|
 | 
						|
PKG_NAME:=gluon-mesh-batman-adv
 | 
						|
PKG_VERSION:=1
 | 
						|
 | 
						|
include ../gluon.mk
 | 
						|
 | 
						|
define Package/gluon-mesh-batman-adv/common
 | 
						|
  PROVIDES:=gluon-mesh-batman-adv
 | 
						|
  DEPENDS:= \
 | 
						|
	+gluon-core \
 | 
						|
	+libgluonutil \
 | 
						|
	+gluon-client-bridge \
 | 
						|
	+gluon-ebtables \
 | 
						|
	+firewall \
 | 
						|
	+libiwinfo \
 | 
						|
	+kmod-dummy \
 | 
						|
	+libnl-tiny \
 | 
						|
	+libbatadv \
 | 
						|
	+batctl \
 | 
						|
	+@GLUON_SPECIALIZE_KERNEL:KERNEL_DUMMY \
 | 
						|
	+@GLUON_SPECIALIZE_KERNEL:KERNEL_CRC16 \
 | 
						|
	+@GLUON_SPECIALIZE_KERNEL:KERNEL_LIBCRC32C
 | 
						|
endef
 | 
						|
 | 
						|
define Package/gluon-mesh-batman-adv-14
 | 
						|
$(Package/gluon-mesh-batman-adv/common)
 | 
						|
  TITLE:=Support for batman-adv meshing (compat level 14)
 | 
						|
  CONFLICTS:=gluon-mesh-batman-adv-15
 | 
						|
  DEPENDS+=+kmod-batman-adv-legacy
 | 
						|
endef
 | 
						|
 | 
						|
define Package/gluon-mesh-batman-adv-15
 | 
						|
$(Package/gluon-mesh-batman-adv/common)
 | 
						|
  TITLE:=Support for batman-adv meshing (compat level 15)
 | 
						|
  DEPENDS+=+kmod-batman-adv
 | 
						|
endef
 | 
						|
 | 
						|
define Package/gluon-mesh-batman-adv-14/install
 | 
						|
	$(Gluon/Build/Install)
 | 
						|
 | 
						|
	$(INSTALL_DIR) $(1)/lib/gluon/mesh-batman-adv
 | 
						|
	echo 14 > $(1)/lib/gluon/mesh-batman-adv/compat
 | 
						|
endef
 | 
						|
 | 
						|
define Package/gluon-mesh-batman-adv-15/install
 | 
						|
	$(Gluon/Build/Install)
 | 
						|
 | 
						|
	$(INSTALL_DIR) $(1)/lib/gluon/mesh-batman-adv
 | 
						|
	echo 15 > $(1)/lib/gluon/mesh-batman-adv/compat
 | 
						|
endef
 | 
						|
 | 
						|
$(eval $(call BuildPackageGluon,gluon-mesh-batman-adv-14))
 | 
						|
$(eval $(call BuildPackageGluon,gluon-mesh-batman-adv-15))
 |