mirror of
https://github.com/hak5/wifipineapple-openwrt.git
synced 2025-10-29 16:57:19 +00:00
Update the MD5 of the firmware for Raspberry Pi to enable build on the Chaos Calmer / 15.05.1 target again. The checksum changed due to changes of the Github Tar Handling as described here: raspberrypi/firmware#873 After that change, builds for RPi on 15.05.1 succeed again. Signed-off-by: Nico Maas <mail@nico-maas.de>
54 lines
1.4 KiB
Makefile
54 lines
1.4 KiB
Makefile
#
|
|
# Copyright (C) 2012-2015 OpenWrt.org
|
|
#
|
|
# This is free software, licensed under the GNU General Public License v2.
|
|
# See /LICENSE for more information.
|
|
#
|
|
include $(TOPDIR)/rules.mk
|
|
include $(INCLUDE_DIR)/kernel.mk
|
|
|
|
PKG_NAME:=brcm2708-gpu-fw
|
|
PKG_REV:=38aa676b044f8de46aedb4bd972538a7ad6a3ce1
|
|
PKG_VERSION:=20150210
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_REV).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/Hexxeh/rpi-firmware/archive/
|
|
PKG_MD5SUM:=edefa7a1684d5b0a2b11acd058adceff
|
|
|
|
PKG_BUILD_DIR:=$(KERNEL_BUILD_DIR)/$(PKG_NAME)/rpi-firmware-$(PKG_REV)
|
|
|
|
include $(INCLUDE_DIR)/package.mk
|
|
|
|
define Package/brcm2708-gpu-fw
|
|
SECTION:=boot
|
|
CATEGORY:=Boot Loaders
|
|
DEPENDS:=@TARGET_brcm2708
|
|
TITLE:=brcm2708-gpu-fw
|
|
DEFAULT:=y if TARGET_brcm2708
|
|
endef
|
|
|
|
define Package/brcm2708-gpu-fw/description
|
|
GPU and kernel boot firmware for brcm2708.
|
|
endef
|
|
|
|
define Build/Compile
|
|
true
|
|
endef
|
|
|
|
define Package/brcm2708-gpu-fw/install
|
|
true
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(CP) $(PKG_BUILD_DIR)/bootcode.bin $(KERNEL_BUILD_DIR)
|
|
$(CP) $(PKG_BUILD_DIR)/COPYING.linux $(KERNEL_BUILD_DIR)
|
|
$(CP) $(PKG_BUILD_DIR)/LICENCE.broadcom $(KERNEL_BUILD_DIR)
|
|
$(CP) $(PKG_BUILD_DIR)/start.elf $(KERNEL_BUILD_DIR)
|
|
$(CP) $(PKG_BUILD_DIR)/start_cd.elf $(KERNEL_BUILD_DIR)
|
|
$(CP) $(PKG_BUILD_DIR)/fixup.dat $(KERNEL_BUILD_DIR)
|
|
$(CP) $(PKG_BUILD_DIR)/fixup_cd.dat $(KERNEL_BUILD_DIR)
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,brcm2708-gpu-fw))
|