b751b5893c
* update the bootcode.bin to the newest version - gpu/cpu mem split is now configured through config.txt, so no need to create more than one sd card image (just edit the config.txt) - bootcode.bin now supports the never revision 2 raspberry pis * add a commented prepopulated config.txt for easier config changes Taken from <https://github.com/Evilpaul/RPi-config> Signed-off-by: Jonas Gorski <jogo@openwrt.org> SVN-Revision: 36668
44 lines
1 KiB
Makefile
44 lines
1 KiB
Makefile
#
|
|
# Copyright (C) 2012 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:=d5b05be2147bf5dc0137798837af24b0bbbe398d
|
|
PKG_VERSION:=20130517
|
|
PKG_RELEASE:=1
|
|
|
|
PKG_SOURCE:=$(PKG_REV).tar.gz
|
|
PKG_SOURCE_URL:=https://github.com/Hexxeh/rpi-firmware/archive/
|
|
PKG_MD5SUM:=9b0ce0a530e237f4c6fe43a36ccf57c3
|
|
|
|
PKG_BUILD_DIR:=$(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
|
|
endef
|
|
|
|
define Build/InstallDev
|
|
$(INSTALL_DIR) $(BUILD_DIR)/brcm2708-gpu-fw-boot
|
|
$(CP) $(PKG_BUILD_DIR)/* $(BUILD_DIR)/brcm2708-gpu-fw-boot
|
|
endef
|
|
|
|
$(eval $(call BuildPackage,brcm2708-gpu-fw))
|
|
|