Stewart Smith | 1168cb4 | 2015-10-27 10:44:33 +1100 | [diff] [blame] | 1 | menu "Skiboot" |
Jeremy Kerr | fb3f016 | 2015-03-27 10:14:50 +0800 | [diff] [blame] | 2 | |
Stewart Smith | 898245e | 2016-03-30 15:26:23 +1100 | [diff] [blame^] | 3 | config BR2_PACKAGE_SKIBOOT |
Jeremy Kerr | fb3f016 | 2015-03-27 10:14:50 +0800 | [diff] [blame] | 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 | |
Stewart Smith | 898245e | 2016-03-30 15:26:23 +1100 | [diff] [blame^] | 10 | if BR2_PACKAGE_SKIBOOT |
Jeremy Kerr | fb3f016 | 2015-03-27 10:14:50 +0800 | [diff] [blame] | 11 | |
Stewart Smith | 898245e | 2016-03-30 15:26:23 +1100 | [diff] [blame^] | 12 | config BR2_PACKAGE_SKIBOOT_EMBED_PAYLOAD |
Jeremy Kerr | fb3f016 | 2015-03-27 10:14:50 +0800 | [diff] [blame] | 13 | bool "Embed kernel payload in skiboot image" |
| 14 | depends on BR2_LINUX_KERNEL_ZIMAGE_EPAPR |
| 15 | |
Stewart Smith | 1168cb4 | 2015-10-27 10:44:33 +1100 | [diff] [blame] | 16 | choice |
| 17 | prompt "Skiboot version" |
| 18 | default BR2_SKIBOOT_LATEST_VERSION |
| 19 | |
| 20 | config BR2_SKIBOOT_LATEST_VERSION |
| 21 | bool "Use skiboot stable" |
| 22 | |
| 23 | config BR2_SKIBOOT_CUSTOM_VERSION |
| 24 | bool "Custom version" |
| 25 | |
| 26 | endchoice |
| 27 | |
| 28 | config BR2_SKIBOOT_CUSTOM_VERSION_VALUE |
| 29 | string "skiboot version" |
| 30 | depends on BR2_SKIBOOT_CUSTOM_VERSION |
| 31 | |
| 32 | config BR2_SKIBOOT_VERSION |
| 33 | string |
Stewart Smith | 419a4e8 | 2016-03-23 18:09:24 +1100 | [diff] [blame] | 34 | default "skiboot-5.2.0" if BR2_SKIBOOT_LATEST_VERSION |
Stewart Smith | 1168cb4 | 2015-10-27 10:44:33 +1100 | [diff] [blame] | 35 | default BR2_SKIBOOT_CUSTOM_VERSION_VALUE \ |
| 36 | if BR2_SKIBOOT_CUSTOM_VERSION |
| 37 | |
Jeremy Kerr | fb3f016 | 2015-03-27 10:14:50 +0800 | [diff] [blame] | 38 | endif |
Stewart Smith | 1168cb4 | 2015-10-27 10:44:33 +1100 | [diff] [blame] | 39 | |
| 40 | endmenu |