Makefile 869 B

1234567891011121314151617181920212223242526272829
  1. # This file is part of the OpenADK project. OpenADK is copyrighted
  2. # material, please see the LICENCE file in the top-level directory.
  3. include $(TOPDIR)/rules.mk
  4. PKG_NAME:= boot-wrapper-aarch64
  5. PKG_VERSION:= 0.1
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= 2ffdbf8c05854e3b855314d9ac21bbc4
  8. PKG_DESCR:= boot-wrapper for aarch64
  9. PKG_SECTION:= boot
  10. PKG_BUILDDEP:= autotool
  11. PKG_SITES:= http://www.openadk.org/distfiles/
  12. PKG_SYSTEM_DEPENDS:= arm-fm
  13. DISTFILES:= ${PKG_NAME}-${PKG_VERSION}.tar.xz
  14. include $(TOPDIR)/mk/package.mk
  15. $(eval $(call PKG_template,BOOT_WRAPPER_AARCH64,boot-wrapper-aarch64,$(PKG_VERSION)-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. AUTOTOOL_STYLE:= autoreconf
  17. CONFIGURE_ARGS+= --with-kernel-dir=${LINUX_DIR}
  18. boot-wrapper-aarch64-install:
  19. ${CP} ${WRKBUILD}/linux-system.axf ${LINUX_DIR}
  20. include ${TOPDIR}/mk/pkg-bottom.mk