Skip to content
Snippets Groups Projects
Select Git revision
  • fdb7303292512cdad495b65914c9d91501fb4f4a
  • v2018.2.x default
  • experimental
  • master
  • v2021.1.2-ffs
  • v2021.1.1-ffs
  • nrb/gluon-master-cpe510
  • v2021.1-ffs
  • v2020.2.3-ffs
  • nrbffs/fastd-remove-delay
  • v2020.2.2-ffs
  • v2020.2.1-ffs
  • v2020.2-ffs
  • v2020.2.x
  • v2020.1.3-ffs
  • v2020.1.1-ffs
  • v2020.1-ffs
  • v2019.1.2-ffs
  • v2019.1.1-ffs
  • nrb/test-radv-filter
  • v2019.1-ffs
  • nrbffs/netgear-ex6120
  • v2021.1.2-ffs0.2
  • v2021.1.2-ffs0.1
  • v2021.1.1-ffs0.4
  • v2021.1.1-ffs0.3
  • v2021.1.1-ffs0.2
  • v2021.1.1-ffs0.1
  • v2021.1-ffs0.1
  • v2020.2.3-ffs0.3
  • v2020.2.3-ffs0.2
  • v2020.2.3-ffs0.1
  • v2020.2.2-ffs0.1
  • v2020.2.1-ffs0.1
  • v2020.2-ffs0.1
  • v2020.2
  • v2020.2.x-ffs0.1
  • v2020.1.3-ffs0.1
  • v2020.1.1-ffs0.1
  • v2020.1-ffs0.1
  • v2019.1.2-ffs0.1
  • v2019.1.1-ffs0.1
42 results

0006-ar71xx-define-wmac-reset-function-for-QCA955x.patch

Blame
  • Forked from firmware / FFS Gluon
    Source project has a limited visibility.
    Makefile 1.01 KiB
    include $(TOPDIR)/rules.mk
    
    PKG_NAME:=gluon-core
    
    GLUON_VERSION = $(shell git describe --always --dirty=+ 2>/dev/null || echo unknown)
    PKG_VERSION:=$(if $(DUMP),x,$(GLUON_VERSION))
    
    
    PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
    
    include ../gluon.mk
    
    
    define Package/gluon-core
      SECTION:=gluon
      CATEGORY:=Gluon
      TITLE:=Base files of Gluon
      DEPENDS:= \
    	+gluon-site +libgluonutil +lua-platform-info +lua-simple-uci +lua-hash +lua-jsonc +luci-lib-nixio \
    	+vxlan +odhcp6c +firewall +pretty-hostname
    endef
    
    define Package/gluon-core/description
    	Gluon community wifi mesh firmware framework: core
    endef
    
    define Build/Configure
    endef
    
    define Build/Compile
    	$(call GluonSrcDiet,./luasrc,$(PKG_BUILD_DIR)/luadest/)
    endef
    
    define Package/gluon-core/install
    	$(CP) ./files/* $(1)/
    	$(CP) $(PKG_BUILD_DIR)/luadest/* $(1)/
    
    	$(INSTALL_DIR) $(1)/lib/gluon
    	echo '$(GLUON_VERSION)' > $(1)/lib/gluon/gluon-version
    endef
    
    define Package/gluon-core/postinst
    #!/bin/sh
    $(call GluonCheckSite,check_site.lua)
    endef
    
    $(eval $(call BuildPackage,gluon-core))