The cirros image was rebuilt against the 3.13.0-83 kernel, drivers e1000e, igbvf...
[packages/trusty/cirros-testvm.git] / cirros-testvm / src-cirros / buildroot-2015.05 / package / rpi-firmware / Config.in
1 config BR2_PACKAGE_RPI_FIRMWARE
2         bool "rpi-firmware"
3         depends on BR2_arm
4         help
5           RaspberryPi Firmware
6           Pre-compiled binaries of the current bootloader and GPU firmware
7
8           https://github.com/raspberrypi/firmware
9
10 if BR2_PACKAGE_RPI_FIRMWARE
11
12 choice
13         bool "Firmware to boot"
14         default BR2_PACKAGE_RPI_FIRMWARE_DEFAULT
15         help
16           There are three different firmware files:
17             - the default firmware, that enables standard GPU features;
18             - the extended firmware, that enables additional GPU features
19               (eg. more audio/video codecs);
20             - the cut-down firmware, for emergency situations, with only
21               features required to boot a Linux kernel.
22
23 config BR2_PACKAGE_RPI_FIRMWARE_DEFAULT
24         bool "default"
25         help
26           The default firmware, that enables standard GPU features.
27
28 config BR2_PACKAGE_RPI_FIRMWARE_X
29         bool "extended ('x', more codecs)"
30         help
31           The extended firmware, that enables additional GPU features
32           (eg. more audio/video codecs).
33
34 config BR2_PACKAGE_RPI_FIRMWARE_CD
35         bool "cut-down ('cd', emergency)"
36         help
37           The cut-down firmware, for emergency situations, with only
38           features required to boot a Linux kernel.
39
40 endchoice
41
42 config BR2_PACKAGE_RPI_FIRMWARE_BOOT
43         string
44         default ""      if BR2_PACKAGE_RPI_FIRMWARE_DEFAULT
45         default "_x"    if BR2_PACKAGE_RPI_FIRMWARE_X
46         default "_cd"   if BR2_PACKAGE_RPI_FIRMWARE_CD
47
48 endif # BR2_PACKAGE_RPI_FIRMWARE