1choice 2 prompt "SoC select" 3 4config TARGET_GXP 5 bool "GXP" 6 select DM 7 select SOC_GXP 8 imply CMD_DM 9 10config TARGET_GXP2 11 bool "GXP2" 12 select DM 13 select SOC_GXP 14 select GXP_ECC 15 imply CMD_DM 16 17endchoice 18 19choice 20 prompt "GXP VROM size" 21 default GXP_VROM_64MB 22 optional 23 24config GXP_VROM_64MB 25 bool "64MB" 26 27config GXP_VROM_32MB 28 bool "32MB" 29endchoice 30 31config GXP_ECC 32 bool "Enable memory ECC protected" 33 help 34 Use half of memory to enable ECC protected 35 36config SYS_BOARD 37 default "gxp" 38 39config SYS_VENDOR 40 default "hpe" 41 42config SYS_CONFIG_NAME 43 default "gxp" 44 45config TEXT_BASE 46 default 0x50000000 47