Bill Hoffa | 5f93f1d | 2014-06-26 21:02:48 -0500 | [diff] [blame] | 1 | config BR2_PACKAGE_HOSTBOOT |
| 2 | bool "hostboot" |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 3 | default y if (BR2_OPENPOWER_POWER9) |
Bill Hoffa | 5f93f1d | 2014-06-26 21:02:48 -0500 | [diff] [blame] | 4 | select BR2_CPP |
| 5 | help |
| 6 | Project to build the hostboot firmware codebase |
| 7 | |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 8 | if BR2_PACKAGE_HOSTBOOT |
Bill Hoffa | 5f93f1d | 2014-06-26 21:02:48 -0500 | [diff] [blame] | 9 | |
Stewart Smith | 6eb78b1 | 2018-04-26 17:05:41 +1000 | [diff] [blame] | 10 | choice |
| 11 | prompt "Hostboot version" |
| 12 | default BR2_HOSTBOOT_OP920_VERSION |
| 13 | |
| 14 | config BR2_HOSTBOOT_OP920_VERSION |
| 15 | bool "Use latest Hostboot stable version (OP920)" |
| 16 | |
| 17 | config BR2_HOSTBOOT_LATEST_VERSION |
| 18 | bool "Use latest Hostboot master" |
| 19 | |
| 20 | config BR2_HOSTBOOT_CUSTOM_VERSION |
| 21 | bool "Custom version" |
| 22 | |
| 23 | endchoice |
| 24 | |
| 25 | config BR2_HOSTBOOT_CUSTOM_VERSION_VALUE |
| 26 | string "hostboot version" |
| 27 | depends on BR2_HOSTBOOT_CUSTOM_VERSION |
| 28 | |
| 29 | config BR2_HOSTBOOT_VERSION |
| 30 | string |
Stewart Smith | fceaa76 | 2018-05-16 21:02:04 -0500 | [diff] [blame^] | 31 | default "c4b9c94600ccc933ccb2dcb7563a6e5423d30153" if BR2_HOSTBOOT_LATEST_VERSION |
Stewart Smith | 608b644 | 2018-05-15 09:49:44 -0500 | [diff] [blame] | 32 | default "8e05a4399bf567a49f91cfee8ad24b3896e96982" if BR2_HOSTBOOT_OP920_VERSION |
Stewart Smith | 6eb78b1 | 2018-04-26 17:05:41 +1000 | [diff] [blame] | 33 | default BR2_HOSTBOOT_CUSTOM_VERSION_VALUE \ |
| 34 | if BR2_HOSTBOOT_CUSTOM_VERSION |
| 35 | |
Bill Hoffa | 5f93f1d | 2014-06-26 21:02:48 -0500 | [diff] [blame] | 36 | config BR2_HOSTBOOT_CONFIG_FILE |
| 37 | string "Hostboot configuration file for compilation" |
| 38 | default default |
| 39 | help |
| 40 | String used to define hw specific make config file |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 41 | |
| 42 | endif |
| 43 | |