mirror of
https://github.com/cmclark00/retro-imager.git
synced 2025-05-18 07:55:21 +01:00
49 lines
1.4 KiB
Text
49 lines
1.4 KiB
Text
|
config BR2_PACKAGE_RPI_FIRMWARE_CUSTOM
|
||
|
bool "rpi-firmware"
|
||
|
depends on BR2_arm
|
||
|
help
|
||
|
RaspberryPi Firmware
|
||
|
Pre-compiled binaries of the current bootloader and GPU firmware
|
||
|
|
||
|
https://github.com/raspberrypi/firmware
|
||
|
|
||
|
if BR2_PACKAGE_RPI_FIRMWARE_CUSTOM
|
||
|
|
||
|
choice
|
||
|
bool "Firmware to boot"
|
||
|
default BR2_PACKAGE_RPI_FIRMWARE_CUSTOM_DEFAULT
|
||
|
help
|
||
|
There are three different firmware files:
|
||
|
- the default firmware, that enables standard GPU features;
|
||
|
- the extended firmware, that enables additional GPU features
|
||
|
(eg. more audio/video codecs);
|
||
|
- the cut-down firmware, for emergency situations, with only
|
||
|
features required to boot a Linux kernel.
|
||
|
|
||
|
config BR2_PACKAGE_RPI_FIRMWARE_CUSTOM_DEFAULT
|
||
|
bool "default"
|
||
|
help
|
||
|
The default firmware, that enables standard GPU features.
|
||
|
|
||
|
config BR2_PACKAGE_RPI_FIRMWARE_CUSTOM_X
|
||
|
bool "extended ('x', more codecs)"
|
||
|
help
|
||
|
The extended firmware, that enables additional GPU features
|
||
|
(eg. more audio/video codecs).
|
||
|
|
||
|
config BR2_PACKAGE_RPI_FIRMWARE_CUSTOM_CD
|
||
|
bool "cut-down ('cd', emergency)"
|
||
|
help
|
||
|
The cut-down firmware, for emergency situations, with only
|
||
|
features required to boot a Linux kernel.
|
||
|
|
||
|
endchoice
|
||
|
|
||
|
config BR2_PACKAGE_RPI_FIRMWARE_CUSTOM_BOOT
|
||
|
string
|
||
|
default "" if BR2_PACKAGE_RPI_FIRMWARE_CUSTOM_DEFAULT
|
||
|
default "_x" if BR2_PACKAGE_RPI_FIRMWARE_CUSTOM_X
|
||
|
default "_cd" if BR2_PACKAGE_RPI_FIRMWARE_CUSTOM_CD
|
||
|
|
||
|
endif # BR2_PACKAGE_RPI_FIRMWARE_CUSTOM
|