- Dashboard with status cards: device, TFTP, tokens, clones - Quick actions: Build Image, Start/Stop TFTP, Token generation - Clone images table with size and TFTP-ready status - Token management with auto-approve option - U-Boot flash commands display when TFTP is running - RPCD handler with 10 methods for full cloner management Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
33 lines
1.0 KiB
Makefile
33 lines
1.0 KiB
Makefile
include $(TOPDIR)/rules.mk
|
|
|
|
LUCI_TITLE:=LuCI Cloning Station Dashboard
|
|
LUCI_DESCRIPTION:=SecuBox cloning station for building and deploying clone images
|
|
LUCI_DEPENDS:=+luci-base +rpcd +secubox-core
|
|
LUCI_PKGARCH:=all
|
|
|
|
PKG_NAME:=luci-app-cloner
|
|
PKG_VERSION:=1.0.0
|
|
PKG_RELEASE:=1
|
|
PKG_MAINTAINER:=SecuBox Team
|
|
|
|
include $(TOPDIR)/feeds/luci/luci.mk
|
|
|
|
define Package/$(PKG_NAME)/conffiles
|
|
endef
|
|
|
|
define Package/$(PKG_NAME)/install
|
|
$(INSTALL_DIR) $(1)/usr/share/luci/menu.d
|
|
$(INSTALL_DATA) ./root/usr/share/luci/menu.d/luci-app-cloner.json $(1)/usr/share/luci/menu.d/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/share/rpcd/acl.d
|
|
$(INSTALL_DATA) ./root/usr/share/rpcd/acl.d/luci-app-cloner.json $(1)/usr/share/rpcd/acl.d/
|
|
|
|
$(INSTALL_DIR) $(1)/usr/libexec/rpcd
|
|
$(INSTALL_BIN) ./root/usr/libexec/rpcd/luci.cloner $(1)/usr/libexec/rpcd/
|
|
|
|
$(INSTALL_DIR) $(1)/www/luci-static/resources/view/cloner
|
|
$(INSTALL_DATA) ./htdocs/luci-static/resources/view/cloner/*.js $(1)/www/luci-static/resources/view/cloner/
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,$(PKG_NAME)))
|