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 | |
Stewart Smith | 062ec2d | 2018-04-29 20:24:20 -0500 | [diff] [blame] | 13 | config BR2_HOSTBOOT_BINARIES_LATEST_VERSION |
| 14 | bool "Use latest HOSTBOOT_BINARIES master" |
| 15 | |
| 16 | config BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION |
| 17 | bool "Custom HOSTBOOT_BINARIES version" |
| 18 | |
| 19 | endchoice |
| 20 | |
| 21 | config BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION_VALUE |
| 22 | string "HOSTBOOT_BINARIES version" |
| 23 | depends on BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION |
| 24 | |
| 25 | config BR2_HOSTBOOT_BINARIES_VERSION |
| 26 | string |
hostboot | 3bd16c4 | 2023-03-21 01:44:00 -0500 | [diff] [blame] | 27 | default "hw032023a.opmst10" if BR2_HOSTBOOT_BINARIES_LATEST_VERSION |
Stewart Smith | 062ec2d | 2018-04-29 20:24:20 -0500 | [diff] [blame] | 28 | default BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION_VALUE \ |
| 29 | if BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION |
| 30 | |
| 31 | endif |