blob: 796a5135a4ee09f3ac58e4d3cf7ab92f4fdc5271 [file] [log] [blame]
Stewart Smith1168cb42015-10-27 10:44:33 +11001menu "Skiboot"
Jeremy Kerrfb3f0162015-03-27 10:14:50 +08002
3config BR2_TARGET_SKIBOOT
4 bool "skiboot"
5 depends on BR2_powerpc64 || BR2_powerpc64le
6 default y if (BR2_OPENPOWER_PLATFORM && BR2_powerpc_power8)
7 help
8 Build skiboot POWER8 firmware
9
10if BR2_TARGET_SKIBOOT
11
12config BR2_TARGET_SKIBOOT_EMBED_PAYLOAD
13 bool "Embed kernel payload in skiboot image"
14 depends on BR2_LINUX_KERNEL_ZIMAGE_EPAPR
15
Stewart Smith1168cb42015-10-27 10:44:33 +110016choice
17 prompt "Skiboot version"
18 default BR2_SKIBOOT_LATEST_VERSION
19
20config BR2_SKIBOOT_LATEST_VERSION
21 bool "Use skiboot stable"
22
23config BR2_SKIBOOT_CUSTOM_VERSION
24 bool "Custom version"
25
26endchoice
27
28config BR2_SKIBOOT_CUSTOM_VERSION_VALUE
29 string "skiboot version"
30 depends on BR2_SKIBOOT_CUSTOM_VERSION
31
32config BR2_SKIBOOT_VERSION
33 string
Stewart Smithd0039502016-03-16 18:01:50 +110034 default "skiboot-5.1.15" if BR2_SKIBOOT_LATEST_VERSION
Stewart Smith1168cb42015-10-27 10:44:33 +110035 default BR2_SKIBOOT_CUSTOM_VERSION_VALUE \
36 if BR2_SKIBOOT_CUSTOM_VERSION
37
Jeremy Kerrfb3f0162015-03-27 10:14:50 +080038endif
Stewart Smith1168cb42015-10-27 10:44:33 +110039
40endmenu