diff options
author | Waldemar Brodkorb <wbx@openadk.org> | 2017-02-05 17:18:11 +0100 |
---|---|---|
committer | Waldemar Brodkorb <wbx@openadk.org> | 2017-02-05 17:18:11 +0100 |
commit | 0906d4acb286d0584a8f1c15bb1c3077502b0f6d (patch) | |
tree | f3320f6b92084cea98d55dcd8ea97fd9a7d9a03a /package/fwinstall/Makefile | |
parent | 0a2f1543c97632205564085c7931c85c287ba7b1 (diff) |
add new section base/adk, rename adkinstall into fwinstall
Diffstat (limited to 'package/fwinstall/Makefile')
-rw-r--r-- | package/fwinstall/Makefile | 29 |
1 files changed, 29 insertions, 0 deletions
diff --git a/package/fwinstall/Makefile b/package/fwinstall/Makefile new file mode 100644 index 000000000..fab528148 --- /dev/null +++ b/package/fwinstall/Makefile @@ -0,0 +1,29 @@ +# 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:= fwinstall +PKG_VERSION:= 1.0 +PKG_RELEASE:= 1 +PKG_DESCR:= disk/flash installer +PKG_SECTION:= base/adk +PKG_DEPENDS:= mke2fs parted sfdisk dosfstools mksh +PKG_DEPENDS+= grub grub-tools +PKG_KDEPENDS:= ext4-fs + +NO_DISTFILES:= 1 + +include ${ADK_TOPDIR}/mk/package.mk + +$(eval $(call PKG_template,FWINSTALL,fwinstall,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION})) + +CONFIG_STYLE:= manual +BUILD_STYLE:= manual +INSTALL_STYLE:= manual + +fwinstall-install: + $(INSTALL_DIR) $(IDIR_FWINSTALL)/usr/sbin + $(INSTALL_BIN) $(WRKBUILD)/fwinstall $(IDIR_FWINSTALL)/usr/sbin + +include ${ADK_TOPDIR}/mk/pkg-bottom.mk |