Bill Hoffa | 5f93f1d | 2014-06-26 21:02:48 -0500 | [diff] [blame] | 1 | config BR2_PACKAGE_HOSTBOOT_BINARIES |
| 2 | bool "hostboot_binaries" |
Matt Ploetz | 3a184dd | 2016-08-26 17:21:06 -0500 | [diff] [blame] | 3 | default y if (BR2_OPENPOWER_PLATFORM) |
Bill Hoffa | 5f93f1d | 2014-06-26 21:02:48 -0500 | [diff] [blame] | 4 | help |
| 5 | Project to stage hostboot binary images |
Stewart Smith | 062ec2d | 2018-04-29 20:24:20 -0500 | [diff] [blame] | 6 | |
| 7 | if BR2_PACKAGE_HOSTBOOT_BINARIES |
| 8 | |
| 9 | choice |
| 10 | prompt "Hostboot-binaries version" |
Stewart Smith | d68fc1f | 2018-05-16 21:11:31 -0500 | [diff] [blame^] | 11 | default BR2_HOSTBOOT_BINARIES_LATEST_VERSION |
Stewart Smith | 062ec2d | 2018-04-29 20:24:20 -0500 | [diff] [blame] | 12 | |
| 13 | config BR2_HOSTBOOT_BINARIES_OP920_VERSION |
| 14 | bool "Use latest HOSTBOOT_BINARIES stable version (OP920)" |
| 15 | |
| 16 | config BR2_HOSTBOOT_BINARIES_LATEST_VERSION |
| 17 | bool "Use latest HOSTBOOT_BINARIES master" |
| 18 | |
| 19 | config BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION |
| 20 | bool "Custom HOSTBOOT_BINARIES version" |
| 21 | |
| 22 | endchoice |
| 23 | |
| 24 | config BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION_VALUE |
| 25 | string "HOSTBOOT_BINARIES version" |
| 26 | depends on BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION |
| 27 | |
| 28 | config BR2_HOSTBOOT_BINARIES_VERSION |
| 29 | string |
Stewart Smith | d4a96f6 | 2018-05-16 21:06:03 -0500 | [diff] [blame] | 30 | default "hw051618a.920" if BR2_HOSTBOOT_BINARIES_LATEST_VERSION |
Stewart Smith | 32fc632 | 2018-05-11 14:02:58 -0500 | [diff] [blame] | 31 | default "20119f08687783a87862cee268df1260f914c01e" if BR2_HOSTBOOT_BINARIES_OP920_VERSION |
Stewart Smith | 062ec2d | 2018-04-29 20:24:20 -0500 | [diff] [blame] | 32 | default BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION_VALUE \ |
| 33 | if BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION |
| 34 | |
| 35 | endif |