blob: a94f72c9ee4ff9505378792c51fe94c203cd1d1a [file] [log] [blame]
Bill Hoffa5f93f1d2014-06-26 21:02:48 -05001config BR2_PACKAGE_OPENPOWER_PNOR
2 bool "openpower_pnor"
Matt Ploetz3a184dd2016-08-26 17:21:06 -05003 default y if (BR2_OPENPOWER_PLATFORM)
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
William A. Kennington IIIc3ab3ce2017-03-17 12:58:05 -070010 select BR2_PACKAGE_IMA_CATALOG
Stewart Smithcd986e42017-05-15 12:14:59 +100011 select BR2_PACKAGE_MACHINE_XML
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050012 help
13 Utilites for building a targeting binary image
14
15config BR2_OPENPOWER_PNOR_XML_LAYOUT_FILENAME
16 string "Name of Openpower pnor xml layout file"
17 help
18 String used to define hw specific make config file
19
20config BR2_OPENPOWER_CONFIG_NAME
21 string "Name of configuration"
22 help
23 String used to define configuration name
24
25config BR2_OPENPOWER_PNOR_FILENAME
26 string "Name of pnor file to be created"
27 help
28 String used to define pnor filename to be created
29
Brian Horton06c2a882015-04-09 13:32:55 -050030config BR2_OPENPOWER_PNOR_UPDATE_FILENAME
31 string "Name of pnor file to be created for updates, if needed"
32 help
33 String used to define pnor filename to be created for updates, if needed
34
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050035config BR2_SKIBOOT_LID_NAME
36 string "Name of skiboot lid name to be used"
37 default "skiboot.lid"
38 help
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050039 String used to define skiboot lid filename
40
41config BR2_TARGET_SKIBOOT_XZ
42 boolean "Compress the skiboot image with XZ"
Jeremy Kerr1a70aff2016-07-22 14:03:30 +080043 select BR2_OPENPOWER_PNOR_XZ_ENABLED
Elizabeth Liner5a8e6fa2016-07-14 15:46:49 -050044 default y
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050045
46config BR2_SKIBOOT_LID_XZ_NAME
47 string "Name of compressed skiboot lid"
48 default "skiboot.lid" if !BR2_TARGET_SKIBOOT_XZ
49 default "skiboot.lid.xz" if BR2_TARGET_SKIBOOT_XZ
50 help
51 String used to define compressed skiboot lid filename
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050052
53config BR2_HOSTBOOT_BINARY_SBE_FILENAME
54 string "Name of sbe hostboot binary"
55 help
56 String used to define name of sbe hostboot binary file
57
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050058config BR2_HOSTBOOT_BINARY_SBEC_FILENAME
59 string "Name of sbec hostboot binary"
60 help
61 String used to define name of sbec hostboot binary file
62
Matt Ploetzaf3f64e2015-05-14 14:49:55 -050063config BR2_HOSTBOOT_BINARY_WINK_FILENAME
64 string "Name of winkle hostboot binary"
65 help
66 String used to define name of winkle hostboot binary file
67
Matt Ploetz02aa69d2016-09-12 18:17:15 -050068config BR2_IMA_CATALOG_FILENAME
69 string "Name of IMA catalog binary"
70 help
71 String used to define name of IMA catalog binary file
72
73config BR2_IMA_CATALOG_ECC_FILENAME
74 string "Name of IMA catalog binary"
75 help
76 String used to define name of IMA catalog binary file, ecc protected
77
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050078config BR2_OPENPOWER_TARGETING_BIN_FILENAME
79 string "Name of openpower binary targeting file"
80 help
81 String used to define name of openpower targeting binary file
Brian Silver015b5912014-08-07 15:50:15 -050082
83config BR2_OPENPOWER_TARGETING_ECC_FILENAME
84 string "Name of openpower binary targeting file"
85 help
86 String used to define name of openpower targeting binary file, ecc protected
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050087
88config BR2_OPENPOWER_PNOR_XZ_ENABLED
Jeremy Kerr4c5e6e22016-07-22 13:59:47 +080089 bool "Enable xz compression in PNOR payloads"
Jeremy Kerr1a70aff2016-07-22 14:03:30 +080090 default n