blob: cb08bfb98899453e888d23e77288301293ed7f73 [file] [log] [blame]
Bill Hoffa5f93f1d2014-06-26 21:02:48 -05001config BR2_PACKAGE_HOSTBOOT
2 bool "hostboot"
Stewart Smith03671c02017-02-17 14:57:57 +11003 default y if (BR2_OPENPOWER_POWER9)
Bill Hoffa5f93f1d2014-06-26 21:02:48 -05004 select BR2_CPP
5 help
6 Project to build the hostboot firmware codebase
7
Stewart Smith03671c02017-02-17 14:57:57 +11008if BR2_PACKAGE_HOSTBOOT
Bill Hoffa5f93f1d2014-06-26 21:02:48 -05009
Stewart Smith6eb78b12018-04-26 17:05:41 +100010choice
11 prompt "Hostboot version"
Bill Hoffaad3a2192018-05-31 21:52:52 -050012 default BR2_HOSTBOOT_STABLE_VERSION
Stewart Smith6eb78b12018-04-26 17:05:41 +100013
Stewart Smith6eb78b12018-04-26 17:05:41 +100014config BR2_HOSTBOOT_LATEST_VERSION
15 bool "Use latest Hostboot master"
16
Bill Hoffaad3a2192018-05-31 21:52:52 -050017config BR2_HOSTBOOT_STABLE_VERSION
18 bool "Use stable Hostboot version"
19
Stewart Smith6eb78b12018-04-26 17:05:41 +100020config BR2_HOSTBOOT_CUSTOM_VERSION
21 bool "Custom version"
22
23endchoice
24
25config BR2_HOSTBOOT_CUSTOM_VERSION_VALUE
26 string "hostboot version"
27 depends on BR2_HOSTBOOT_CUSTOM_VERSION
28
29config BR2_HOSTBOOT_VERSION
30 string
hostboot8a39c472019-01-21 01:26:03 -060031 default "868b68df85eb7aeed7eba3392303fa3be854e2a6" if BR2_HOSTBOOT_LATEST_VERSION
Bill Hoffa71ff3472018-11-21 12:45:07 -060032 default "3f1f2186bb80322594a3cc81241c390119d69552" if BR2_HOSTBOOT_STABLE_VERSION
Stewart Smith6eb78b12018-04-26 17:05:41 +100033 default BR2_HOSTBOOT_CUSTOM_VERSION_VALUE \
34 if BR2_HOSTBOOT_CUSTOM_VERSION
35
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050036config 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 Smith03671c02017-02-17 14:57:57 +110041
42endif
43