Klaus Heinrich Kiwi | 0ef707a | 2020-11-24 15:49:39 -0300 | [diff] [blame] | 1 | menu "Everest XML (MRW)" |
| 2 | |
| 3 | config BR2_PACKAGE_EVEREST_XML |
| 4 | bool "everest_xml" |
| 5 | |
| 6 | if BR2_PACKAGE_EVEREST_XML |
| 7 | |
| 8 | choice |
| 9 | prompt "Everest XML location" |
| 10 | |
| 11 | config BR2_EVEREST_XML_GITHUB_PROJECT |
| 12 | bool "OpenPOWER Github project name" |
| 13 | |
| 14 | config BR2_EVEREST_XML_CUSTOM_GIT |
| 15 | bool "Custom URL of Everest xml repository" |
| 16 | |
| 17 | endchoice |
| 18 | |
| 19 | config BR2_EVEREST_XML_FILTER_UNWANTED_ATTRIBUTES |
| 20 | bool "Filter Unwanted Attributes" |
| 21 | default y |
| 22 | |
| 23 | config BR2_EVEREST_XML_OPPOWERVM_ATTRIBUTES |
| 24 | bool "OPPOWERVM Attributes/Target" |
| 25 | default y |
| 26 | |
| 27 | config BR2_EVEREST_XML_TARGET_TYPES_OPENPOWER_XML |
| 28 | bool "Include target_types_openpower.xml" |
| 29 | default y |
| 30 | |
| 31 | config BR2_EVEREST_XML_CUSTOM_GIT_VALUE |
| 32 | string "URL of Everest xml repository" |
| 33 | depends on BR2_EVEREST_XML_CUSTOM_GIT |
| 34 | |
| 35 | config 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 | |
| 40 | config BR2_EVEREST_XML_VERSION |
| 41 | string "Version of Everest XML" |
| 42 | |
| 43 | config 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 | |
| 50 | config 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 | |
| 57 | config 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 | |
| 64 | config 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 | |
| 71 | config 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 | |
| 77 | config 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 | |
| 84 | endif |
| 85 | |
| 86 | endmenu |