blob: 956220f3e2687113bfc9a6c767d057d8a6993b89 [file] [log] [blame]
Bill Hoffa5f93f1d2014-06-26 21:02:48 -05001config BR2_PACKAGE_HOSTBOOT_BINARIES
2 bool "hostboot_binaries"
Matt Ploetz3a184dd2016-08-26 17:21:06 -05003 default y if (BR2_OPENPOWER_PLATFORM)
Bill Hoffa5f93f1d2014-06-26 21:02:48 -05004 help
5 Project to stage hostboot binary images
Stewart Smith062ec2d2018-04-29 20:24:20 -05006
7if BR2_PACKAGE_HOSTBOOT_BINARIES
8
9choice
10 prompt "Hostboot-binaries version"
Stewart Smithd68fc1f2018-05-16 21:11:31 -050011 default BR2_HOSTBOOT_BINARIES_LATEST_VERSION
Stewart Smith062ec2d2018-04-29 20:24:20 -050012
Stewart Smith062ec2d2018-04-29 20:24:20 -050013config BR2_HOSTBOOT_BINARIES_LATEST_VERSION
14 bool "Use latest HOSTBOOT_BINARIES master"
15
16config BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION
17 bool "Custom HOSTBOOT_BINARIES version"
18
19endchoice
20
21config BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION_VALUE
22 string "HOSTBOOT_BINARIES version"
23 depends on BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION
24
25config BR2_HOSTBOOT_BINARIES_VERSION
26 string
hostboot3bd16c42023-03-21 01:44:00 -050027 default "hw032023a.opmst10" if BR2_HOSTBOOT_BINARIES_LATEST_VERSION
Stewart Smith062ec2d2018-04-29 20:24:20 -050028 default BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION_VALUE \
29 if BR2_HOSTBOOT_BINARIES_CUSTOM_VERSION
30
31endif