Makefile 640 B

123456789101112131415161718192021222324252627282930313233
  1. #
  2. # Copyright (C) 2025 OpenWrt.org
  3. #
  4. # This is free software, licensed under the GNU General Public License v2.
  5. # See /LICENSE for more information.
  6. #
  7. include $(TOPDIR)/rules.mk
  8. PKG_NAME:=provision
  9. PKG_RELEASE:=$(AUTORELEASE)
  10. PKG_LICENSE:=GPL-2.0
  11. PKG_MAINTAINER:=Felix Fietkau <[email protected]>
  12. include $(INCLUDE_DIR)/package.mk
  13. define Package/provision
  14. SECTION:=utils
  15. CATEGORY:=Utilities
  16. TITLE:=Utility for managing device provisioning data
  17. DEPENDS:=+ucode +ucode-mod-fs +ucode-mod-struct
  18. endef
  19. define Build/Compile
  20. :
  21. endef
  22. define Package/provision/install
  23. $(CP) ./files/* $(1)/
  24. endef
  25. $(eval $(call BuildPackage,provision))