blob: 65a1a92e3edc1e8fb5a19a10d3aef0e03e139ee0 [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)
4 help
5 Utilites for building a targeting binary image
6
7config BR2_OPENPOWER_PNOR_XML_LAYOUT_FILENAME
8 string "Name of Openpower pnor xml layout file"
9 help
10 String used to define hw specific make config file
11
12config BR2_OPENPOWER_CONFIG_NAME
13 string "Name of configuration"
14 help
15 String used to define configuration name
16
Brian Silver015b5912014-08-07 15:50:15 -050017config BR2_OPENPOWER_XML_PACKAGE
18 string "Name of xml/targeting package"
19 help
20 String defines the xml/targeting package used
21
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050022config BR2_OPENPOWER_PNOR_FILENAME
23 string "Name of pnor file to be created"
24 help
25 String used to define pnor filename to be created
26
Brian Horton06c2a882015-04-09 13:32:55 -050027config BR2_OPENPOWER_PNOR_UPDATE_FILENAME
28 string "Name of pnor file to be created for updates, if needed"
29 help
30 String used to define pnor filename to be created for updates, if needed
31
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050032config BR2_SKIBOOT_LID_NAME
33 string "Name of skiboot lid name to be used"
34 default "skiboot.lid"
35 help
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050036 String used to define skiboot lid filename
37
38config BR2_TARGET_SKIBOOT_XZ
39 boolean "Compress the skiboot image with XZ"
Elizabeth Liner5a8e6fa2016-07-14 15:46:49 -050040 default y
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050041
42config BR2_SKIBOOT_LID_XZ_NAME
43 string "Name of compressed skiboot lid"
44 default "skiboot.lid" if !BR2_TARGET_SKIBOOT_XZ
45 default "skiboot.lid.xz" if BR2_TARGET_SKIBOOT_XZ
46 help
47 String used to define compressed skiboot lid filename
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050048
49config BR2_HOSTBOOT_BINARY_SBE_FILENAME
50 string "Name of sbe hostboot binary"
51 help
52 String used to define name of sbe hostboot binary file
53
54
55config BR2_HOSTBOOT_BINARY_SBEC_FILENAME
56 string "Name of sbec hostboot binary"
57 help
58 String used to define name of sbec hostboot binary file
59
Matt Ploetzaf3f64e2015-05-14 14:49:55 -050060config BR2_HOSTBOOT_BINARY_WINK_FILENAME
61 string "Name of winkle hostboot binary"
62 help
63 String used to define name of winkle hostboot binary file
64
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050065config BR2_OPENPOWER_TARGETING_BIN_FILENAME
66 string "Name of openpower binary targeting file"
67 help
68 String used to define name of openpower targeting binary file
Brian Silver015b5912014-08-07 15:50:15 -050069
70config BR2_OPENPOWER_TARGETING_ECC_FILENAME
71 string "Name of openpower binary targeting file"
72 help
73 String used to define name of openpower targeting binary file, ecc protected
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050074
75config BR2_OPENPOWER_PNOR_XZ_ENABLED
76 string "False if we are not compressing with XZ anywhere"
77 default "false" if !BR2_TARGET_SKIBOOT_XZ
78 default "true" if BR2_TARGET_SKIBOOT_XZ