Add openpower/package/everest-xml package
Add the Everest MRW package.
Signed-off-by: Klaus Heinrich Kiwi <klaus@linux.vnet.ibm.com>
diff --git a/openpower/package/everest-xml/Config.in b/openpower/package/everest-xml/Config.in
new file mode 100644
index 0000000..8b8cccb
--- /dev/null
+++ b/openpower/package/everest-xml/Config.in
@@ -0,0 +1,86 @@
+menu "Everest XML (MRW)"
+
+config BR2_PACKAGE_EVEREST_XML
+ bool "everest_xml"
+
+if BR2_PACKAGE_EVEREST_XML
+
+choice
+ prompt "Everest XML location"
+
+config BR2_EVEREST_XML_GITHUB_PROJECT
+ bool "OpenPOWER Github project name"
+
+config BR2_EVEREST_XML_CUSTOM_GIT
+ bool "Custom URL of Everest xml repository"
+
+endchoice
+
+config BR2_EVEREST_XML_FILTER_UNWANTED_ATTRIBUTES
+ bool "Filter Unwanted Attributes"
+ default y
+
+config BR2_EVEREST_XML_OPPOWERVM_ATTRIBUTES
+ bool "OPPOWERVM Attributes/Target"
+ default y
+
+config BR2_EVEREST_XML_TARGET_TYPES_OPENPOWER_XML
+ bool "Include target_types_openpower.xml"
+ default y
+
+config BR2_EVEREST_XML_CUSTOM_GIT_VALUE
+ string "URL of Everest xml repository"
+ depends on BR2_EVEREST_XML_CUSTOM_GIT
+
+config BR2_EVEREST_XML_GITHUB_PROJECT_VALUE
+ string "The Github project name (e.g. everest-xml)"
+ default "everest-xml"
+ depends on BR2_EVEREST_XML_GITHUB_PROJECT
+
+config BR2_EVEREST_XML_VERSION
+ string "Version of Everest XML"
+
+config BR2_EVEREST_XML_FILENAME
+ string "Everest XML filename (e.g. Everest-MRW.xml)"
+ default "Everest-MRW.xml"
+ help
+ The name of the MRW XML file. Note that this file MUST
+ come with the '.xml' prefix (all lowercase)
+
+config BR2_EVEREST_XML_SYSTEM_FILENAME
+ string "Targeting Everest system xml filename"
+ default ""
+ help
+ Defines the name of the system XML filename
+ to be used when creating targeting binary image
+
+config BR2_EVEREST_XML_TARGETING_FILENAME
+ string "Targeting Everest mrw xml filename"
+ default ""
+ help
+ Defines the name of the mrw XML filename
+ to be used when creating targeting binary image
+
+config BR2_EVEREST_XML_BIOS_FILENAME
+ string "BIOS Everest metadata XML filename"
+ default "Everest-MRW_bios.xml"
+ help
+ Defines the name of the BIOS XML filename
+ to parse when generating BIOS metadata
+
+config BR2_EVEREST_XML_TARGETING_BIN_FILENAME
+ string "Name of the openpower binary targeting file"
+ default "Everest-MRW.targeting.bin"
+ help
+ String used to define name of openpower targeting binary file
+
+config BR2_EVEREST_XML_TARGETING_ECC_FILENAME
+ string "Name of the openpower binary targeting ecc file"
+ default "Everest-MRW.targeting.bin.ecc"
+ help
+ String used to define name of openpower
+ targeting binary file, ecc protected
+
+endif
+
+endmenu