Makefile 839 B

12345678910111213141516171819202122232425262728
  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-firmware
  5. PKG_VERSION:= 0.3
  6. PKG_RELEASE:= 1
  7. PKG_MD5SUM:= c05d3ceac71e884a95d7731cc2b5f39f
  8. PKG_DESCR:= firmware for raspberry pi (bcm2835)
  9. PKG_SECTION:= base
  10. PKG_SITES:= http://openadk.org/distfiles/
  11. PKG_SYSTEM_DEPENDS:= raspberry-pi
  12. include ${TOPDIR}/mk/package.mk
  13. $(eval $(call PKG_template,BCM2835_FIRMWARE,bcm2835-firmware,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
  14. CONFIG_STYLE:= manual
  15. BUILD_STYLE:= manual
  16. INSTALL_STYLE:= manual
  17. do-install:
  18. ${INSTALL_DIR} ${IDIR_BCM2835_FIRMWARE}/boot
  19. ${CP} ${WRKBUILD}/boot/* ${IDIR_BCM2835_FIRMWARE}/boot/
  20. include ${TOPDIR}/mk/pkg-bottom.mk