summaryrefslogtreecommitdiff
path: root/package/bcm2835-bootloader/Makefile
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@uclibc-ng.org>2015-01-03 16:24:45 +0100
committerWaldemar Brodkorb <wbx@uclibc-ng.org>2015-01-03 16:24:45 +0100
commit7c49ec073b4edbe32867d1d395fd3cf9c7bffda7 (patch)
treed9e89bda88dd86c7e0266efdfdc2344c6613e91a /package/bcm2835-bootloader/Makefile
parent1bf8ef30bfa79bd0816fd97f3d1b31f7950d3c4e (diff)
convert to git downloader. allow to choose which version of the bootloader.
Diffstat (limited to 'package/bcm2835-bootloader/Makefile')
-rw-r--r--package/bcm2835-bootloader/Makefile37
1 files changed, 25 insertions, 12 deletions
diff --git a/package/bcm2835-bootloader/Makefile b/package/bcm2835-bootloader/Makefile
index df9d2c65c..40b39fb35 100644
--- a/package/bcm2835-bootloader/Makefile
+++ b/package/bcm2835-bootloader/Makefile
@@ -1,33 +1,46 @@
# This file is part of the OpenADK project. OpenADK is copyrighted
# material, please see the LICENCE file in the top-level directory.
-include ${ADK_TOPDIR}/rules.mk
+include $(ADK_TOPDIR)/rules.mk
PKG_NAME:= bcm2835-bootloader
-# actually git checkout from 21.09.2014
-# 53162d55fa557e60453c0652aa00fa3daf4ed618
-PKG_VERSION:= 1.2
+PKG_VERSION:= 393dcc0e76f18f6ac1b67ba45d36058410670034
PKG_RELEASE:= 1
-PKG_HASH:= 20f15e1e2fd4245e59b5b3223df8bdca6b8a54baeff113f74e3aed56d57f0be8
+PKG_HASH:= 44723adf99a06e6a21df7e9ee20ff29c6235323e38e1d055ea087d29a7597c81
PKG_DESCR:= bootloader for raspberry pi
PKG_SECTION:= base/boot
PKG_URL:= https://github.com/raspberrypi/firmware
-PKG_SITES:= http://openadk.org/distfiles/
+PKG_SITES:= https://github.com/raspberrypi/firmware.git
PKG_SYSTEM_DEPENDS:= raspberry-pi
+PKG_CHOICES_BCM2835_BOOTLOADER:= DEFAULT EXTRA CUTDOWN
+PKGCD_DEFAULT:= default bootloader
+PKGCD_EXTRA:= bootloader with extra features and codecs
+PKGCD_CUTDOWN:= cut down bootloader
-include ${ADK_TOPDIR}/mk/package.mk
+include $(ADK_TOPDIR)/mk/package.mk
-$(eval $(call PKG_template,BCM2835_BOOTLOADER,bcm2835-bootloader,${PKG_VERSION}-${PKG_RELEASE},${PKG_DEPENDS},${PKG_DESCR},${PKG_SECTION}))
+$(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/
+ $(INSTALL_DIR) $(IDIR_BCM2835_BOOTLOADER)/boot
+ $(CP) $(WRKBUILD)/boot/bootcode.bin $(IDIR_BCM2835_BOOTLOADER)/boot/
+ifeq ($(ADK_PACKAGE_BCM2835_BOOTLOADER_DEFAULT),y)
+ $(CP) $(WRKBUILD)/boot/{start.elf,fixup.dat} $(IDIR_BCM2835_BOOTLOADER)/boot/
+endif
+ifeq ($(ADK_PACKAGE_BCM2835_BOOTLOADER_EXTRA),y)
+ $(CP) $(WRKBUILD)/boot/{start_x.elf,fixup_x.dat} $(IDIR_BCM2835_BOOTLOADER)/boot/
+ printf "start_x=1\n" >> $(IDIR_BCM2835_BOOTLOADER)/boot/config.txt
+endif
+ifeq ($(ADK_PACKAGE_BCM2835_BOOTLOADER_CUTDOWN),y)
+ $(CP) $(WRKBUILD)/boot/{start_cd.elf,fixup_cd.dat} $(IDIR_BCM2835_BOOTLOADER)/boot/
+ printf "start_cd=1\n" >> $(IDIR_BCM2835_BOOTLOADER)/boot/config.txt
+endif
printf "gpu_mem=$(ADK_TARGET_GPU_MEM)\n" >> \
- ${IDIR_BCM2835_BOOTLOADER}/boot/config.txt
+ $(IDIR_BCM2835_BOOTLOADER)/boot/config.txt
-include ${ADK_TOPDIR}/mk/pkg-bottom.mk
+include $(ADK_TOPDIR)/mk/pkg-bottom.mk