blob: 6d4193bb08bad3baa7008a425e96d08355267f55 [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"
Elizabeth Liner5a8e6fa2016-07-14 15:46:49 -050051 default y
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050052
53config BR2_SKIBOOT_LID_XZ_NAME
54 string "Name of compressed skiboot lid"
55 default "skiboot.lid" if !BR2_TARGET_SKIBOOT_XZ
56 default "skiboot.lid.xz" if BR2_TARGET_SKIBOOT_XZ
57 help
58 String used to define compressed skiboot lid filename
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050059
60config BR2_HOSTBOOT_BINARY_SBE_FILENAME
61 string "Name of sbe hostboot binary"
62 help
63 String used to define name of sbe hostboot binary file
64
65
66config BR2_HOSTBOOT_BINARY_SBEC_FILENAME
67 string "Name of sbec hostboot binary"
68 help
69 String used to define name of sbec hostboot binary file
70
Matt Ploetzaf3f64e2015-05-14 14:49:55 -050071config BR2_HOSTBOOT_BINARY_WINK_FILENAME
72 string "Name of winkle hostboot binary"
73 help
74 String used to define name of winkle hostboot binary file
75
Bill Hoffa5f93f1d2014-06-26 21:02:48 -050076config BR2_OPENPOWER_TARGETING_BIN_FILENAME
77 string "Name of openpower binary targeting file"
78 help
79 String used to define name of openpower targeting binary file
Brian Silver015b5912014-08-07 15:50:15 -050080
81config BR2_OPENPOWER_TARGETING_ECC_FILENAME
82 string "Name of openpower binary targeting file"
83 help
84 String used to define name of openpower targeting binary file, ecc protected
Elizabeth Linerfbd6c452016-03-31 10:38:17 -050085
86config BR2_OPENPOWER_PNOR_XZ_ENABLED
87 string "False if we are not compressing with XZ anywhere"
88 default "false" if !BR2_TARGET_SKIBOOT_XZ
89 default "true" if BR2_TARGET_SKIBOOT_XZ