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 | 9d050bf | 2023-01-06 00:59:29 -0600 | [diff] [blame^] | 28 | default "62f7efb8aca512543c4de9b93d6516c5e7adb06c" 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 | |
Stewart Smith | 03671c0 | 2017-02-17 14:57:57 +1100 | [diff] [blame] | 38 | |
Klaus Heinrich Kiwi | 3e6e835 | 2020-04-14 16:06:01 -0300 | [diff] [blame] | 39 | config BR2_HOSTBOOT_USE_ALTERNATE_GCC |
| 40 | bool "use Alternate GCC to build hostboot" |
| 41 | default n |
| 42 | select BR2_PACKAGE_ALTERNATE_GCC |
| 43 | help |
| 44 | Select to enable using an alternate version of GCC |
| 45 | to build hostboot. |
| 46 | |
| 47 | endif |