2014-07-05 18:11:41 +00:00
|
|
|
# Copyright (C) 2012 Nils Schneider <nils at nilsschneider.net>
|
|
|
|
# This is free software, licensed under the Apache 2.0 license.
|
|
|
|
|
|
|
|
include $(TOPDIR)/rules.mk
|
|
|
|
|
|
|
|
PKG_NAME:=gluon-setup-mode
|
|
|
|
PKG_VERSION:=1
|
|
|
|
|
|
|
|
PKG_BUILD_DIR := $(BUILD_DIR)/$(PKG_NAME)
|
|
|
|
|
|
|
|
include $(GLUONDIR)/include/package.mk
|
|
|
|
|
|
|
|
define Package/gluon-setup-mode
|
|
|
|
SECTION:=gluon
|
|
|
|
CATEGORY:=Gluon
|
|
|
|
TITLE:=Setup mode
|
2014-07-10 21:44:06 +00:00
|
|
|
DEPENDS:=+gluon-core +uhttpd +dnsmasq +ip
|
2014-07-05 18:11:41 +00:00
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-setup-mode/description
|
|
|
|
Offline mode to perform basic setup in a secure manner.
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Prepare
|
|
|
|
mkdir -p $(PKG_BUILD_DIR)
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Configure
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Build/Compile
|
|
|
|
endef
|
|
|
|
|
|
|
|
define Package/gluon-setup-mode/install
|
|
|
|
$(CP) ./files/* $(1)/
|
|
|
|
endef
|
|
|
|
|
|
|
|
$(eval $(call BuildPackage,gluon-setup-mode))
|