123456789101112131415161718192021222324252627282930 |
- # This file is part of the OpenADK project. OpenADK is copyrighted
- # material, please see the LICENCE file in the top-level directory.
- include ${TOPDIR}/rules.mk
- PKG_NAME:= bcm2835-bootloader
- # actually f46e6d9cb9a6bf419fe2a428a8a586239e93aa2d from 07.01.2014
- # https://github.com/raspberrypi/firmware
- PKG_VERSION:= 0.6
- PKG_RELEASE:= 1
- PKG_MD5SUM:= dba84ce20fc8a8c1bf473758d9350e19
- PKG_DESCR:= bootloader for raspberry pi (bcm2835)
- PKG_SECTION:= boot
- PKG_SITES:= http://openadk.org/distfiles/
- PKG_SYSTEM_DEPENDS:= raspberry-pi
- include ${TOPDIR}/mk/package.mk
- $(eval $(call PKG_template,BCM2835_BOOTLOADER,bcm2835-bootloader,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
- CONFIG_STYLE:= manual
- BUILD_STYLE:= manual
- INSTALL_STYLE:= manual
- do-install:
- ${INSTALL_DIR} ${IDIR_BCM2835_BOOTLOADER}/boot
- ${CP} ${WRKBUILD}/boot/* ${IDIR_BCM2835_BOOTLOADER}/boot/
- include ${TOPDIR}/mk/pkg-bottom.mk
|