2013-09-29 20:38:12 +00:00
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
2013-09-29 22:12:45 +00:00
|
|
|
PKG_NAME:=gluon-autoupdater
|
2013-10-02 11:33:47 +00:00
|
|
|
PKG_VERSION:=0.1
|
2014-01-04 08:19:13 +00:00
|
|
|
PKG_RELEASE:=1.$(GLUON_CONFIG_VERSION)
|
2013-09-29 20:38:12 +00:00
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
|
2013-09-29 22:12:45 +00:00
|
|
|
define Package/gluon-autoupdater
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
2014-01-20 00:59:10 +00:00
|
|
|
DEPENDS:=+gluon-core +gluon-cron +ecdsautils
|
2013-09-29 20:38:12 +00:00
|
|
|
TITLE:=Automatically update firmware
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
2013-10-02 11:33:47 +00:00
|
|
|
$(GLUON_CONFIGURE) invariant.pl > $(PKG_BUILD_DIR)/invariant.sh
|
2013-09-29 20:38:12 +00:00
|
|
|
endef
|
|
|
|
|
2013-09-29 22:12:45 +00:00
|
|
|
define Package/gluon-autoupdater/install
|
2013-09-29 20:38:12 +00:00
|
|
|
$(CP) ./files/* $(1)/
|
2013-10-02 11:33:47 +00:00
|
|
|
$(INSTALL_DIR) $(1)/lib/gluon/upgrade/autoupdater/invariant
|
|
|
|
$(INSTALL_BIN) $(PKG_BUILD_DIR)/invariant.sh $(1)/lib/gluon/upgrade/autoupdater/invariant/010-autoupdater
|
2013-09-29 20:38:12 +00:00
|
|
|
endef
|
|
|
|
|
2013-09-29 22:12:45 +00:00
|
|
|
$(eval $(call BuildPackage,gluon-autoupdater))
|