blob: 4226659e6a61e43a6d9bbb7fe57aea6c39c1e139 [file] [log] [blame]
Stewart Smith1168cb42015-10-27 10:44:33 +11001menu "Skiboot"
Jeremy Kerrfb3f0162015-03-27 10:14:50 +08002
Stewart Smith898245e2016-03-30 15:26:23 +11003config BR2_PACKAGE_SKIBOOT
Jeremy Kerrfb3f0162015-03-27 10:14:50 +08004 bool "skiboot"
5 depends on BR2_powerpc64 || BR2_powerpc64le
Matt Ploetz3a184dd2016-08-26 17:21:06 -05006 default y if (BR2_OPENPOWER_PLATFORM)
Jeremy Kerrfb3f0162015-03-27 10:14:50 +08007 help
Matt Ploetz3a184dd2016-08-26 17:21:06 -05008 Build skiboot POWER firmware
Jeremy Kerrfb3f0162015-03-27 10:14:50 +08009
Stewart Smith898245e2016-03-30 15:26:23 +110010if BR2_PACKAGE_SKIBOOT
Jeremy Kerrfb3f0162015-03-27 10:14:50 +080011
Stewart Smith898245e2016-03-30 15:26:23 +110012config BR2_PACKAGE_SKIBOOT_EMBED_PAYLOAD
Jeremy Kerrfb3f0162015-03-27 10:14:50 +080013 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
Ilya Smirnova6465292021-06-24 15:44:52 -050034 default "v6.6-85-gabe4c4799" 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
Reza Arbab9e1c47b2018-11-21 21:07:56 -060038config BR2_SKIBOOT_CUSTOM_GIT
39 bool "Custom git repository"
Klaus Heinrich Kiwid6cf8472020-10-06 10:51:36 -030040 default y
Reza Arbab9e1c47b2018-11-21 21:07:56 -060041
42config BR2_SKIBOOT_CUSTOM_REPO_URL
43 string "URL of custom repository"
Ilya Smirnova6465292021-06-24 15:44:52 -050044 default "git@github.com:open-power/skiboot.git"
Reza Arbab9e1c47b2018-11-21 21:07:56 -060045 depends on BR2_SKIBOOT_CUSTOM_GIT
46
Reza Arbab92f08be2019-02-20 16:42:09 -060047config BR2_SKIBOOT_DEVICETREE
48 bool "Build device trees"
49
Jeremy Kerrfb3f0162015-03-27 10:14:50 +080050endif
Stewart Smith1168cb42015-10-27 10:44:33 +110051
52endmenu