Makefile 804 B

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