blob: 8b8cccb9d1b209f0d76972d8392f1bc24cb951c4 [file] [log] [blame]
Klaus Heinrich Kiwi0ef707a2020-11-24 15:49:39 -03001menu "Everest XML (MRW)"
2
3config BR2_PACKAGE_EVEREST_XML
4 bool "everest_xml"
5
6if BR2_PACKAGE_EVEREST_XML
7
8choice
9 prompt "Everest XML location"
10
11config BR2_EVEREST_XML_GITHUB_PROJECT
12 bool "OpenPOWER Github project name"
13
14config BR2_EVEREST_XML_CUSTOM_GIT
15 bool "Custom URL of Everest xml repository"
16
17endchoice
18
19config BR2_EVEREST_XML_FILTER_UNWANTED_ATTRIBUTES
20 bool "Filter Unwanted Attributes"
21 default y
22
23config BR2_EVEREST_XML_OPPOWERVM_ATTRIBUTES
24 bool "OPPOWERVM Attributes/Target"
25 default y
26
27config BR2_EVEREST_XML_TARGET_TYPES_OPENPOWER_XML
28 bool "Include target_types_openpower.xml"
29 default y
30
31config BR2_EVEREST_XML_CUSTOM_GIT_VALUE
32 string "URL of Everest xml repository"
33 depends on BR2_EVEREST_XML_CUSTOM_GIT
34
35config BR2_EVEREST_XML_GITHUB_PROJECT_VALUE
36 string "The Github project name (e.g. everest-xml)"
37 default "everest-xml"
38 depends on BR2_EVEREST_XML_GITHUB_PROJECT
39
40config BR2_EVEREST_XML_VERSION
41 string "Version of Everest XML"
42
43config BR2_EVEREST_XML_FILENAME
44 string "Everest XML filename (e.g. Everest-MRW.xml)"
45 default "Everest-MRW.xml"
46 help
47 The name of the MRW XML file. Note that this file MUST
48 come with the '.xml' prefix (all lowercase)
49
50config BR2_EVEREST_XML_SYSTEM_FILENAME
51 string "Targeting Everest system xml filename"
52 default ""
53 help
54 Defines the name of the system XML filename
55 to be used when creating targeting binary image
56
57config BR2_EVEREST_XML_TARGETING_FILENAME
58 string "Targeting Everest mrw xml filename"
59 default ""
60 help
61 Defines the name of the mrw XML filename
62 to be used when creating targeting binary image
63
64config BR2_EVEREST_XML_BIOS_FILENAME
65 string "BIOS Everest metadata XML filename"
66 default "Everest-MRW_bios.xml"
67 help
68 Defines the name of the BIOS XML filename
69 to parse when generating BIOS metadata
70
71config BR2_EVEREST_XML_TARGETING_BIN_FILENAME
72 string "Name of the openpower binary targeting file"
73 default "Everest-MRW.targeting.bin"
74 help
75 String used to define name of openpower targeting binary file
76
77config BR2_EVEREST_XML_TARGETING_ECC_FILENAME
78 string "Name of the openpower binary targeting ecc file"
79 default "Everest-MRW.targeting.bin.ecc"
80 help
81 String used to define name of openpower
82 targeting binary file, ecc protected
83
84endif
85
86endmenu