blob: 7719eda68c5095fd61e6ef9f0518ce7c5a74d624 [file] [log] [blame]
Bill Hoffa5f93f1d2014-06-26 21:02:48 -05001config BR2_PACKAGE_OPENPOWER_PNOR
2 bool "openpower_pnor"
3 default y if (BR2_OPENPOWER_PLATFORM && BR2_powerpc_power8)
Jeremy Kerr5e1f7b42016-07-22 13:09:38 +08004 select BR2_PACKAGE_HOSTBOOT
5 select BR2_PACKAGE_HOSTBOOT_BINARIES
6 select BR2_PACKAGE_SKIBOOT
7 select BR2_PACKAGE_OPENPOWER_FFS
8 select BR2_PACKAGE_OCC
9 select BR2_PACKAGE_CAPP_UCODE
10 select BR2_PACKAGE_BARRELEYE_XML if (BR2_OPENPOWER_XML_PACKAGE = "barreleye-xml")
11 select BR2_PACKAGE_FIRESTONE_XML if (BR2_OPENPOWER_XML_PACKAGE = "firestone-xml")
12 select BR2_PACKAGE_GARRISON_XML if (BR2_OPENPOWER_XML_PACKAGE = "garrison-xml")
13 select BR2_PACKAGE_HABANERO_XML if (BR2_OPENPOWER_XML_PACKAGE = "habanero-xml")
14 select BR2_PACKAGE_PALMETTO_XML if (BR2_OPENPOWER_XML_PACKAGE = "palmetto-xml")
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050015 help
16 Utilites for building a targeting binary image
17
18config BR2_OPENPOWER_PNOR_XML_LAYOUT_FILENAME
19 string "Name of Openpower pnor xml layout file"
20 help
21 String used to define hw specific make config file
22
23config BR2_OPENPOWER_CONFIG_NAME
24 string "Name of configuration"
25 help
26 String used to define configuration name
27
Brian Silver015b5912014-08-07 15:50:15 -050028config BR2_OPENPOWER_XML_PACKAGE
29 string "Name of xml/targeting package"
30 help
31 String defines the xml/targeting package used
32
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050033config BR2_OPENPOWER_PNOR_FILENAME
34 string "Name of pnor file to be created"
35 help
36 String used to define pnor filename to be created
37
Brian Horton06c2a882015-04-09 13:32:55 -050038config BR2_OPENPOWER_PNOR_UPDATE_FILENAME
39 string "Name of pnor file to be created for updates, if needed"
40 help
41 String used to define pnor filename to be created for updates, if needed
42
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050043config BR2_SKIBOOT_LID_NAME
44 string "Name of skiboot lid name to be used"
45 default "skiboot.lid"
46 help
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050047 String used to define skiboot lid filename
48
49config BR2_TARGET_SKIBOOT_XZ
50 boolean "Compress the skiboot image with XZ"
Jeremy Kerr1a70aff2016-07-22 14:03:30 +080051 select BR2_OPENPOWER_PNOR_XZ_ENABLED
Elizabeth Liner5a8e6fa2016-07-14 15:46:49 -050052 default y
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050053
54config BR2_SKIBOOT_LID_XZ_NAME
55 string "Name of compressed skiboot lid"
56 default "skiboot.lid" if !BR2_TARGET_SKIBOOT_XZ
57 default "skiboot.lid.xz" if BR2_TARGET_SKIBOOT_XZ
58 help
59 String used to define compressed skiboot lid filename
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050060
61config BR2_HOSTBOOT_BINARY_SBE_FILENAME
62 string "Name of sbe hostboot binary"
63 help
64 String used to define name of sbe hostboot binary file
65
66
67config BR2_HOSTBOOT_BINARY_SBEC_FILENAME
68 string "Name of sbec hostboot binary"
69 help
70 String used to define name of sbec hostboot binary file
71
Matt Ploetzaf3f64e2015-05-14 14:49:55 -050072config BR2_HOSTBOOT_BINARY_WINK_FILENAME
73 string "Name of winkle hostboot binary"
74 help
75 String used to define name of winkle hostboot binary file
76
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050077config BR2_OPENPOWER_TARGETING_BIN_FILENAME
78 string "Name of openpower binary targeting file"
79 help
80 String used to define name of openpower targeting binary file
Brian Silver015b5912014-08-07 15:50:15 -050081
82config BR2_OPENPOWER_TARGETING_ECC_FILENAME
83 string "Name of openpower binary targeting file"
84 help
85 String used to define name of openpower targeting binary file, ecc protected
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050086
87config BR2_OPENPOWER_PNOR_XZ_ENABLED
Jeremy Kerr4c5e6e22016-07-22 13:59:47 +080088 bool "Enable xz compression in PNOR payloads"
Jeremy Kerr1a70aff2016-07-22 14:03:30 +080089 default n