be92f003ba
Of utmost importance, this bump allows to overclock the RPi to even higher frequencies: ARM > 1200MHz, core > 600MHz, RAM > 600MHz. :-) To be used with caution, of course! :-) Fixes and enhancements for: - clocks : allow higher overclocks - audio : PCM channel expansion/conversion - video : stutter on streams without b-frames, choice of scaling /kernel/ - camera : padding-removal, new YUV and BGR modes - decoder: timestamps fixes, frames interval tracking - encoder: misc jpeg encoding fixes, save inline motion vectors - display: don't require EDID on HDMI Signed-off-by: "Yann E. MORIN" <yann.morin.1998@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
21 lines
993 B
Makefile
21 lines
993 B
Makefile
################################################################################
|
|
#
|
|
# rpi-firmware
|
|
#
|
|
################################################################################
|
|
|
|
RPI_FIRMWARE_VERSION = 04ba1c03780ae708c9289bce14f56933e55e9c20
|
|
RPI_FIRMWARE_SITE = $(call github,raspberrypi,firmware,$(RPI_FIRMWARE_VERSION))
|
|
RPI_FIRMWARE_LICENSE = BSD-3c
|
|
RPI_FIRMWARE_LICENSE_FILES = boot/LICENCE.broadcom
|
|
|
|
define RPI_FIRMWARE_INSTALL_TARGET_CMDS
|
|
$(INSTALL) -D -m 0644 $(@D)/boot/bootcode.bin $(BINARIES_DIR)/rpi-firmware/bootcode.bin
|
|
$(INSTALL) -D -m 0644 $(@D)/boot/start$(BR2_PACKAGE_RPI_FIRMWARE_BOOT).elf $(BINARIES_DIR)/rpi-firmware/start.elf
|
|
$(INSTALL) -D -m 0644 $(@D)/boot/fixup$(BR2_PACKAGE_RPI_FIRMWARE_BOOT).dat $(BINARIES_DIR)/rpi-firmware/fixup.dat
|
|
$(INSTALL) -D -m 0644 package/rpi-firmware/config.txt $(BINARIES_DIR)/rpi-firmware/config.txt
|
|
$(INSTALL) -D -m 0644 package/rpi-firmware/cmdline.txt $(BINARIES_DIR)/rpi-firmware/cmdline.txt
|
|
endef
|
|
|
|
$(eval $(generic-package))
|