Makefile 961 B

123456789101112131415161718192021222324252627282930
  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:= bcm2835-bootloader
  5. # actually 9953ce0847c04b587b694c79c5b5a4ac63f5c369 from 25.03.2014
  6. # https://github.com/raspberrypi/firmware
  7. PKG_VERSION:= 0.7
  8. PKG_RELEASE:= 1
  9. PKG_MD5SUM:= 7ad7e5d3ad311d88d1e82fc729042d87
  10. PKG_DESCR:= bootloader for raspberry pi (bcm2835)
  11. PKG_SECTION:= boot
  12. PKG_SITES:= http://openadk.org/distfiles/
  13. PKG_SYSTEM_DEPENDS:= raspberry-pi
  14. include ${TOPDIR}/mk/package.mk
  15. $(eval $(call PKG_template,BCM2835_BOOTLOADER,bcm2835-bootloader,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  16. CONFIG_STYLE:= manual
  17. BUILD_STYLE:= manual
  18. INSTALL_STYLE:= manual
  19. do-install:
  20. ${INSTALL_DIR} ${IDIR_BCM2835_BOOTLOADER}/boot
  21. ${CP} ${WRKBUILD}/boot/* ${IDIR_BCM2835_BOOTLOADER}/boot/
  22. include ${TOPDIR}/mk/pkg-bottom.mk