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" |
Stewart Smith | 382af98 | 2019-03-07 16:01:32 +1100 | [diff] [blame] | 12 | default BR2_HOSTBOOT_LATEST_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 | |
| 17 | config BR2_HOSTBOOT_CUSTOM_VERSION |
| 18 | bool "Custom version" |
| 19 | |
| 20 | endchoice |
| 21 | |
| 22 | config BR2_HOSTBOOT_CUSTOM_VERSION_VALUE |
| 23 | string "hostboot version" |
| 24 | depends on BR2_HOSTBOOT_CUSTOM_VERSION |
| 25 | |
| 26 | config BR2_HOSTBOOT_VERSION |
| 27 | string |
hostboot | a276d15 | 2019-10-23 10:05:35 -0500 | [diff] [blame] | 28 | default "35cc764a1ae94d5f88370090e517e1572b475811" if BR2_HOSTBOOT_LATEST_VERSION |
Stewart Smith | 6eb78b1 | 2018-04-26 17:05:41 +1000 | [diff] [blame] | 29 | default BR2_HOSTBOOT_CUSTOM_VERSION_VALUE \ |
| 30 | if BR2_HOSTBOOT_CUSTOM_VERSION |
| 31 | |
Bill Hoffa | 5f93f1d | 2014-06-26 21:02:48 -0500 | [diff] [blame] | 32 | config BR2_HOSTBOOT_CONFIG_FILE |
| 33 | string "Hostboot configuration file for compilation" |
| 34 | default default |
| 35 | help |
| 36 | String used to define hw specific make config file |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 37 | |
| 38 | endif |
| 39 | |