blob: 8f4c61b569bf21eb91696cc4035f3c5715ece4c8 [file] [log] [blame]
Stewart Smith16803012018-04-26 17:32:50 +10001menu "Machine XML (MRW)"
2
Stewart Smithcd986e42017-05-15 12:14:59 +10003config BR2_PACKAGE_MACHINE_XML
4 bool "machine_xml"
5 default y if (BR2_OPENPOWER_PLATFORM)
Stewart Smithcd986e42017-05-15 12:14:59 +10006
7choice
8 prompt "Machine XML location"
9
10config BR2_OPENPOWER_MACHINE_XML_GITHUB_PROJECT
11 bool "OpenPOWER Github project name"
12
13config BR2_OPENPOWER_MACHINE_XML_CUSTOM_GIT
14 bool "Custom URL of machine xml repository"
15
16endchoice
17
18config BR2_OPENPOWER_MACHINE_XML_FILTER_UNWANTED_ATTRIBUTES
19 bool "Filter Unwanted Attributes"
20 default y if (BR2_OPENPOWER_POWER9)
21 default n
22
23config BR2_OPENPOWER_MACHINE_XML_OPPOWERVM_ATTRIBUTES
24 bool "OPPOWERVM Attributes/Target"
25 default y if (BR2_OPENPOWER_POWER9)
26 default n
27
28config BR2_OPENPOWER_MACHINE_XML_TARGET_TYPES_OPENPOWER_XML
29 bool "Include target_types_openpower.xml"
30 default y if (BR2_OPENPOWER_POWER9)
31 default n
32
33config BR2_OPENPOWER_MACHINE_XML_CUSTOM_GIT_VALUE
34 string "URL of machine xml repository"
35 depends on BR2_OPENPOWER_MACHINE_XML_CUSTOM_GIT
36
37config BR2_OPENPOWER_MACHINE_XML_GITHUB_PROJECT_VALUE
38 string "The Github project name (e.g. palmetto-xml)"
39 depends on BR2_OPENPOWER_MACHINE_XML_GITHUB_PROJECT
40
41config BR2_OPENPOWER_MACHINE_XML_VERSION
42 string "Version of Machine XML"
43
44config BR2_OPENPOWER_MACHINE_XML_FILENAME
45 string "Machine XML filename (e.g. habanero.xml)"
46
47config BR2_OPENPOWER_SYSTEM_XML_FILENAME
48 string "Targeting system xml filename"
49 default ""
50 help
51 Defines the name of the system XML filename to be used when creating targeting binary image
52
53config BR2_OPENPOWER_MRW_XML_FILENAME
54 string "Targeting mrw xml filename"
55 default ""
56 help
57 Defines the name of the mrw XML filename to be used when creating targeting binary image
58
59config BR2_OPENPOWER_BIOS_XML_FILENAME
60 string "BIOS metadata XML filename"
61 default ""
62 help
63 Defines the name of the BIOS XML filename to parse when generating BIOS metadata
Stewart Smith16803012018-04-26 17:32:50 +100064
65endmenu