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" |
Bill Hoffa | ad3a219 | 2018-05-31 21:52:52 -0500 | [diff] [blame] | 12 | default BR2_HOSTBOOT_STABLE_VERSION |
Stewart Smith | 6eb78b1 | 2018-04-26 17:05:41 +1000 | [diff] [blame] | 13 | |
Stewart Smith | 6eb78b1 | 2018-04-26 17:05:41 +1000 | [diff] [blame] | 14 | config BR2_HOSTBOOT_LATEST_VERSION |
| 15 | bool "Use latest Hostboot master" |
| 16 | |
Bill Hoffa | ad3a219 | 2018-05-31 21:52:52 -0500 | [diff] [blame] | 17 | config BR2_HOSTBOOT_STABLE_VERSION |
| 18 | bool "Use stable Hostboot version" |
| 19 | |
Stewart Smith | 6eb78b1 | 2018-04-26 17:05:41 +1000 | [diff] [blame] | 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 |
hostboot | 20ec92e | 2019-02-07 02:50:55 -0600 | [diff] [blame^] | 31 | default "610ca55e285e2f0d7cabed6235deef82ee271627" if BR2_HOSTBOOT_LATEST_VERSION |
| 32 | default "610ca55e285e2f0d7cabed6235deef82ee271627" if BR2_HOSTBOOT_STABLE_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 | |