summaryrefslogtreecommitdiff
path: root/package/fwupdate/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-02-05 14:48:23 +0100
committerWaldemar Brodkorb <wbx@openadk.org>2017-02-05 14:48:23 +0100
commitcd539adc4a30ce1aa659bf22490381be764de403 (patch)
tree247c421385d84191e7263c54a6ab5ea9d98cb857 /package/fwupdate/Makefile
parenta2de584c87368c0d966dd9250c212a8460158b3b (diff)
add initial fwupdate application
Diffstat (limited to 'package/fwupdate/Makefile')
-rw-r--r--package/fwupdate/Makefile28
1 files changed, 28 insertions, 0 deletions
diff --git a/package/fwupdate/Makefile b/package/fwupdate/Makefile
new file mode 100644
index 000000000..2677dc818
--- /dev/null
+++ b/package/fwupdate/Makefile
@@ -0,0 +1,28 @@
+# This file is part of the OpenADK project. OpenADK is copyrighted
+# material, please see the LICENCE file in the top-level directory.
+
+include $(ADK_TOPDIR)/rules.mk
+
+PKG_NAME:= fwupdate
+PKG_VERSION:= 1.0
+PKG_RELEASE:= 1
+PKG_DESCR:= update firmware
+PKG_SECTION:= sys/misc
+PKG_URL:= http://www.openadk.org
+
+NO_DISTFILES:= 1
+
+include $(ADK_TOPDIR)/mk/package.mk
+
+$(eval $(call PKG_template,FWUPDATE,fwupdate,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+
+CONFIG_STYLE:= manual
+BUILD_STYLE:= manual
+INSTALL_STYLE:= manual
+
+fwupdate-install:
+ $(INSTALL_DIR) $(IDIR_FWUPDATE)/usr/sbin
+ $(INSTALL_BIN) $(WRKBUILD)/fwupdate $(IDIR_FWUPDATE)/usr/sbin
+ $(INSTALL_BIN) $(WRKBUILD)/fwvalidate $(IDIR_FWUPDATE)/usr/sbin
+
+include ${ADK_TOPDIR}/mk/pkg-bottom.mk