1menu "ARM architecture" 2 depends on ARM 3 4config SYS_ARCH 5 default "arm" 6 7config ARM64 8 bool 9 10config HAS_VBAR 11 bool 12 13config CPU_ARM720T 14 bool 15 16config CPU_ARM920T 17 bool 18 19config CPU_ARM926EJS 20 bool 21 22config CPU_ARM946ES 23 bool 24 25config CPU_ARM1136 26 bool 27 28config CPU_ARM1176 29 bool 30 select HAS_VBAR 31 32config CPU_V7 33 bool 34 select HAS_VBAR 35 36config CPU_V7M 37 bool 38 39config CPU_PXA 40 bool 41 42config CPU_SA1100 43 bool 44 45config SYS_CPU 46 default "arm720t" if CPU_ARM720T 47 default "arm920t" if CPU_ARM920T 48 default "arm926ejs" if CPU_ARM926EJS 49 default "arm946es" if CPU_ARM946ES 50 default "arm1136" if CPU_ARM1136 51 default "arm1176" if CPU_ARM1176 52 default "armv7" if CPU_V7 53 default "armv7m" if CPU_V7M 54 default "pxa" if CPU_PXA 55 default "sa1100" if CPU_SA1100 56 default "armv8" if ARM64 57 58config SEMIHOSTING 59 bool "support boot from semihosting" 60 help 61 In emulated environments, semihosting is a way for 62 the hosted environment to call out to the emulator to 63 retrieve files from the host machine. 64 65choice 66 prompt "Target select" 67 68config TARGET_INTEGRATORAP_CM720T 69 bool "Support integratorap_cm720t" 70 select CPU_ARM720T 71 72config TARGET_INTEGRATORAP_CM920T 73 bool "Support integratorap_cm920t" 74 select CPU_ARM920T 75 76config TARGET_INTEGRATORCP_CM920T 77 bool "Support integratorcp_cm920t" 78 select CPU_ARM920T 79 80config ARCH_AT91 81 bool "Atmel AT91" 82 83config TARGET_EDB93XX 84 bool "Support edb93xx" 85 select CPU_ARM920T 86 87config TARGET_SCB9328 88 bool "Support scb9328" 89 select CPU_ARM920T 90 91config TARGET_VCMA9 92 bool "Support VCMA9" 93 select CPU_ARM920T 94 95config TARGET_SMDK2410 96 bool "Support smdk2410" 97 select CPU_ARM920T 98 99config TARGET_INTEGRATORAP_CM926EJS 100 bool "Support integratorap_cm926ejs" 101 select CPU_ARM926EJS 102 103config TARGET_INTEGRATORCP_CM926EJS 104 bool "Support integratorcp_cm926ejs" 105 select CPU_ARM926EJS 106 107config TARGET_ASPENITE 108 bool "Support aspenite" 109 select CPU_ARM926EJS 110 111config TARGET_GPLUGD 112 bool "Support gplugd" 113 select CPU_ARM926EJS 114 115config ARCH_DAVINCI 116 bool "TI DaVinci" 117 select CPU_ARM926EJS 118 help 119 Support for TI's DaVinci platform. 120 121config KIRKWOOD 122 bool "Marvell Kirkwood" 123 select CPU_ARM926EJS 124 125config TARGET_DB_MV784MP_GP 126 bool "Support db-mv784mp-gp" 127 select CPU_V7 128 select SUPPORT_SPL 129 130config TARGET_MAXBCM 131 bool "Support maxbcm" 132 select CPU_V7 133 select SUPPORT_SPL 134 135config TARGET_DEVKIT3250 136 bool "Support devkit3250" 137 select CPU_ARM926EJS 138 139config TARGET_WORK_92105 140 bool "Support work_92105" 141 select CPU_ARM926EJS 142 select SUPPORT_SPL 143 144config TARGET_MX25PDK 145 bool "Support mx25pdk" 146 select CPU_ARM926EJS 147 148config TARGET_TX25 149 bool "Support tx25" 150 select CPU_ARM926EJS 151 select SUPPORT_SPL 152 153config TARGET_ZMX25 154 bool "Support zmx25" 155 select CPU_ARM926EJS 156 157config TARGET_APF27 158 bool "Support apf27" 159 select CPU_ARM926EJS 160 select SUPPORT_SPL 161 162config TARGET_IMX27LITE 163 bool "Support imx27lite" 164 select CPU_ARM926EJS 165 166config TARGET_MAGNESIUM 167 bool "Support magnesium" 168 select CPU_ARM926EJS 169 170config TARGET_APX4DEVKIT 171 bool "Support apx4devkit" 172 select CPU_ARM926EJS 173 select SUPPORT_SPL 174 175config TARGET_XFI3 176 bool "Support xfi3" 177 select CPU_ARM926EJS 178 select SUPPORT_SPL 179 180config TARGET_M28EVK 181 bool "Support m28evk" 182 select CPU_ARM926EJS 183 select SUPPORT_SPL 184 185config TARGET_MX23EVK 186 bool "Support mx23evk" 187 select CPU_ARM926EJS 188 select SUPPORT_SPL 189 190config TARGET_MX28EVK 191 bool "Support mx28evk" 192 select CPU_ARM926EJS 193 select SUPPORT_SPL 194 195config TARGET_MX23_OLINUXINO 196 bool "Support mx23_olinuxino" 197 select CPU_ARM926EJS 198 select SUPPORT_SPL 199 200config TARGET_BG0900 201 bool "Support bg0900" 202 select CPU_ARM926EJS 203 select SUPPORT_SPL 204 205config TARGET_SANSA_FUZE_PLUS 206 bool "Support sansa_fuze_plus" 207 select CPU_ARM926EJS 208 select SUPPORT_SPL 209 210config TARGET_SC_SPS_1 211 bool "Support sc_sps_1" 212 select CPU_ARM926EJS 213 select SUPPORT_SPL 214 215config ARCH_NOMADIK 216 bool "ST-Ericsson Nomadik" 217 select CPU_ARM926EJS 218 219config ORION5X 220 bool "Marvell Orion" 221 select CPU_ARM926EJS 222 223config TARGET_SPEAR300 224 bool "Support spear300" 225 select CPU_ARM926EJS 226 227config TARGET_SPEAR310 228 bool "Support spear310" 229 select CPU_ARM926EJS 230 231config TARGET_SPEAR320 232 bool "Support spear320" 233 select CPU_ARM926EJS 234 235config TARGET_SPEAR600 236 bool "Support spear600" 237 select CPU_ARM926EJS 238 239config TARGET_STV0991 240 bool "Support stv0991" 241 select CPU_V7 242 select DM 243 select DM_SERIAL 244 245config TARGET_X600 246 bool "Support x600" 247 select CPU_ARM926EJS 248 select SUPPORT_SPL 249 250config ARCH_VERSATILE 251 bool "ARM Ltd. Versatile family" 252 select CPU_ARM926EJS 253 254config TARGET_INTEGRATORCP_CM1136 255 bool "Support integratorcp_cm1136" 256 select CPU_ARM1136 257 258config TARGET_IMX31_PHYCORE 259 bool "Support imx31_phycore" 260 select CPU_ARM1136 261 262config TARGET_QONG 263 bool "Support qong" 264 select CPU_ARM1136 265 266config TARGET_MX31ADS 267 bool "Support mx31ads" 268 select CPU_ARM1136 269 270config TARGET_MX31PDK 271 bool "Support mx31pdk" 272 select CPU_ARM1136 273 select SUPPORT_SPL 274 275config TARGET_TT01 276 bool "Support tt01" 277 select CPU_ARM1136 278 279config TARGET_IMX31_LITEKIT 280 bool "Support imx31_litekit" 281 select CPU_ARM1136 282 283config TARGET_WOODBURN 284 bool "Support woodburn" 285 select CPU_ARM1136 286 287config TARGET_WOODBURN_SD 288 bool "Support woodburn_sd" 289 select CPU_ARM1136 290 select SUPPORT_SPL 291 292config TARGET_FLEA3 293 bool "Support flea3" 294 select CPU_ARM1136 295 296config TARGET_MX35PDK 297 bool "Support mx35pdk" 298 select CPU_ARM1136 299 300config ARCH_BCM283X 301 bool "Broadcom BCM283X family" 302 select DM 303 select DM_SERIAL 304 select DM_GPIO 305 306config TARGET_INTEGRATORAP_CM946ES 307 bool "Support integratorap_cm946es" 308 select CPU_ARM946ES 309 310config TARGET_INTEGRATORCP_CM946ES 311 bool "Support integratorcp_cm946es" 312 select CPU_ARM946ES 313 314config TARGET_VEXPRESS_CA15_TC2 315 bool "Support vexpress_ca15_tc2" 316 select CPU_V7 317 select CPU_V7_HAS_NONSEC 318 select CPU_V7_HAS_VIRT 319 320config TARGET_VEXPRESS_CA5X2 321 bool "Support vexpress_ca5x2" 322 select CPU_V7 323 324config TARGET_VEXPRESS_CA9X4 325 bool "Support vexpress_ca9x4" 326 select CPU_V7 327 328config TARGET_KWB 329 bool "Support kwb" 330 select CPU_V7 331 select SUPPORT_SPL 332 333config TARGET_TSERIES 334 bool "Support tseries" 335 select CPU_V7 336 select SUPPORT_SPL 337 338config TARGET_CM_T335 339 bool "Support cm_t335" 340 select CPU_V7 341 select SUPPORT_SPL 342 select DM 343 select DM_SERIAL 344 select DM_GPIO 345 346config TARGET_PEPPER 347 bool "Support pepper" 348 select CPU_V7 349 select SUPPORT_SPL 350 select DM 351 select DM_SERIAL 352 select DM_GPIO 353 354config TARGET_AM335X_IGEP0033 355 bool "Support am335x_igep0033" 356 select CPU_V7 357 select SUPPORT_SPL 358 select DM 359 select DM_SERIAL 360 select DM_GPIO 361 362config TARGET_PCM051 363 bool "Support pcm051" 364 select CPU_V7 365 select SUPPORT_SPL 366 select DM 367 select DM_SERIAL 368 select DM_GPIO 369 370config TARGET_DRACO 371 bool "Support draco" 372 select CPU_V7 373 select SUPPORT_SPL 374 375config TARGET_DXR2 376 bool "Support dxr2" 377 select CPU_V7 378 select SUPPORT_SPL 379 380config TARGET_PXM2 381 bool "Support pxm2" 382 select CPU_V7 383 select SUPPORT_SPL 384 385config TARGET_RUT 386 bool "Support rut" 387 select CPU_V7 388 select SUPPORT_SPL 389 390config TARGET_PENGWYN 391 bool "Support pengwyn" 392 select CPU_V7 393 select SUPPORT_SPL 394 select DM 395 select DM_SERIAL 396 select DM_GPIO 397 398config TARGET_AM335X_EVM 399 bool "Support am335x_evm" 400 select CPU_V7 401 select SUPPORT_SPL 402 select DM 403 select DM_SERIAL 404 select DM_GPIO 405 406config TARGET_AM43XX_EVM 407 bool "Support am43xx_evm" 408 select CPU_V7 409 select SUPPORT_SPL 410 411config TARGET_BAV335X 412 bool "Support bav335x" 413 select CPU_V7 414 select SUPPORT_SPL 415 select DM 416 select DM_SERIAL 417 help 418 The BAV335x OEM Network Processor integrates all the functions of an 419 embedded network computer in a small, easy to use SODIMM module which 420 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8 421 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit 422 ethernet with simple connection to external connectors. 423 424 For more information, visit: http://birdland.com/oem 425 426config TARGET_TI814X_EVM 427 bool "Support ti814x_evm" 428 select CPU_V7 429 select SUPPORT_SPL 430 431config TARGET_TI816X_EVM 432 bool "Support ti816x_evm" 433 select CPU_V7 434 select SUPPORT_SPL 435 436config TARGET_BCM28155_AP 437 bool "Support bcm28155_ap" 438 select CPU_V7 439 440config TARGET_BCMCYGNUS 441 bool "Support bcmcygnus" 442 select CPU_V7 443 444config TARGET_BCMNSP 445 bool "Support bcmnsp" 446 select CPU_V7 447 448config ARCH_EXYNOS 449 bool "Samsung EXYNOS" 450 select CPU_V7 451 select DM 452 select DM_SPI_FLASH 453 select DM_SERIAL 454 select DM_SPI 455 select DM_GPIO 456 457config ARCH_S5PC1XX 458 bool "Samsung S5PC1XX" 459 select CPU_V7 460 select DM 461 select DM_SERIAL 462 select DM_GPIO 463 464config ARCH_HIGHBANK 465 bool "Calxeda Highbank" 466 select CPU_V7 467 468config ARCH_KEYSTONE 469 bool "TI Keystone" 470 select CPU_V7 471 select SUPPORT_SPL 472 473config ARCH_MX6 474 bool "Freescale MX6" 475 select CPU_V7 476 477config ARCH_MX5 478 bool "Freescale MX5" 479 select CPU_V7 480 481config TARGET_M53EVK 482 bool "Support m53evk" 483 select CPU_V7 484 select SUPPORT_SPL 485 486config TARGET_IMA3_MX53 487 bool "Support ima3-mx53" 488 select CPU_V7 489 490config TARGET_MX51EVK 491 bool "Support mx51evk" 492 select CPU_V7 493 494config TARGET_MX53ARD 495 bool "Support mx53ard" 496 select CPU_V7 497 498config TARGET_MX53EVK 499 bool "Support mx53evk" 500 select CPU_V7 501 502config TARGET_MX53LOCO 503 bool "Support mx53loco" 504 select CPU_V7 505 506config TARGET_MX53SMD 507 bool "Support mx53smd" 508 select CPU_V7 509 510config TARGET_MX51_EFIKAMX 511 bool "Support mx51_efikamx" 512 select CPU_V7 513 514config TARGET_VISION2 515 bool "Support vision2" 516 select CPU_V7 517 518config TARGET_UDOO 519 bool "Support udoo" 520 select CPU_V7 521 522config TARGET_WANDBOARD 523 bool "Support wandboard" 524 select CPU_V7 525 526config TARGET_WARP 527 bool "Support WaRP" 528 select CPU_V7 529 530config TARGET_TITANIUM 531 bool "Support titanium" 532 select CPU_V7 533 534config TARGET_NITROGEN6X 535 bool "Support nitrogen6x" 536 select CPU_V7 537 538config TARGET_CGTQMX6EVAL 539 bool "Support cgtqmx6eval" 540 select CPU_V7 541 542config TARGET_EMBESTMX6BOARDS 543 bool "Support embestmx6boards" 544 select CPU_V7 545 546config TARGET_ARISTAINETOS 547 bool "Support aristainetos" 548 select CPU_V7 549 550config TARGET_MX6QARM2 551 bool "Support mx6qarm2" 552 select CPU_V7 553 554config TARGET_MX6QSABREAUTO 555 bool "Support mx6qsabreauto" 556 select CPU_V7 557 select DM 558 select DM_THERMAL 559 560config TARGET_MX6SABRESD 561 bool "Support mx6sabresd" 562 select CPU_V7 563 select SUPPORT_SPL 564 select DM 565 select DM_THERMAL 566 567config TARGET_MX6SLEVK 568 bool "Support mx6slevk" 569 select CPU_V7 570 571config TARGET_MX6SXSABRESD 572 bool "Support mx6sxsabresd" 573 select CPU_V7 574 select SUPPORT_SPL 575 select DM 576 select DM_THERMAL 577 578config TARGET_GW_VENTANA 579 bool "Support gw_ventana" 580 select CPU_V7 581 select SUPPORT_SPL 582 583config TARGET_HUMMINGBOARD 584 bool "Support hummingboard" 585 select CPU_V7 586 587config TARGET_KOSAGI_NOVENA 588 bool "Support Kosagi Novena" 589 select CPU_V7 590 select SUPPORT_SPL 591 592config TARGET_TBS2910 593 bool "Support tbs2910" 594 select CPU_V7 595 596config TARGET_TQMA6 597 bool "TQ Systems TQMa6 board" 598 select CPU_V7 599 600config TARGET_OT1200 601 bool "Bachmann OT1200" 602 select CPU_V7 603 select SUPPORT_SPL 604 605config TARGET_PLATINUM_PICON 606 bool "Support platinum-picon" 607 select CPU_V7 608 select SUPPORT_SPL 609 610config TARGET_PLATINUM_TITANIUM 611 bool "Support platinum-titanium" 612 select CPU_V7 613 select SUPPORT_SPL 614 615config OMAP34XX 616 bool "OMAP34XX SoC" 617 select CPU_V7 618 619config OMAP44XX 620 bool "OMAP44XX SoC" 621 select CPU_V7 622 select SUPPORT_SPL 623 624config OMAP54XX 625 bool "OMAP54XX SoC" 626 select CPU_V7 627 select SUPPORT_SPL 628 629config RMOBILE 630 bool "Renesas ARM SoCs" 631 select CPU_V7 632 633config TARGET_CM_FX6 634 bool "Support cm_fx6" 635 select CPU_V7 636 select SUPPORT_SPL 637 select DM 638 select DM_SERIAL 639 select DM_GPIO 640 641config TARGET_SOCFPGA_ARRIA5 642 bool "Support socfpga_arria5" 643 select CPU_V7 644 select SUPPORT_SPL 645 select DM 646 select DM_SPI_FLASH 647 select DM_SPI 648 649config TARGET_SOCFPGA_CYCLONE5 650 bool "Support socfpga_cyclone5" 651 select CPU_V7 652 select SUPPORT_SPL 653 select DM 654 select DM_SPI_FLASH 655 select DM_SPI 656 657config ARCH_SUNXI 658 bool "Support sunxi (Allwinner) SoCs" 659 660config TARGET_SNOWBALL 661 bool "Support snowball" 662 select CPU_V7 663 664config TARGET_U8500_HREF 665 bool "Support u8500_href" 666 select CPU_V7 667 668config TARGET_VF610TWR 669 bool "Support vf610twr" 670 select CPU_V7 671 672config ZYNQ 673 bool "Xilinx Zynq Platform" 674 select CPU_V7 675 select SUPPORT_SPL 676 select DM 677 678config TARGET_XILINX_ZYNQMP 679 bool "Support Xilinx ZynqMP Platform" 680 select ARM64 681 682config TEGRA 683 bool "NVIDIA Tegra" 684 select SUPPORT_SPL 685 select SPL 686 select OF_CONTROL 687 select CPU_V7 688 select DM 689 select DM_SPI_FLASH 690 select DM_SERIAL 691 select DM_I2C 692 select DM_SPI 693 select DM_GPIO 694 695config TARGET_VEXPRESS64_AEMV8A 696 bool "Support vexpress_aemv8a" 697 select ARM64 698 699config TARGET_VEXPRESS64_BASE_FVP 700 bool "Support Versatile Express ARMv8a FVP BASE model" 701 select ARM64 702 select SEMIHOSTING 703 704config TARGET_VEXPRESS64_JUNO 705 bool "Support Versatile Express Juno Development Platform" 706 select ARM64 707 708config TARGET_LS2085A_EMU 709 bool "Support ls2085a_emu" 710 select ARM64 711 select ARMV8_MULTIENTRY 712 713config TARGET_LS2085A_SIMU 714 bool "Support ls2085a_simu" 715 select ARM64 716 select ARMV8_MULTIENTRY 717 718config TARGET_LS1021AQDS 719 bool "Support ls1021aqds" 720 select CPU_V7 721 select SUPPORT_SPL 722 723config TARGET_LS1021ATWR 724 bool "Support ls1021atwr" 725 select CPU_V7 726 select SUPPORT_SPL 727 728config TARGET_BALLOON3 729 bool "Support balloon3" 730 select CPU_PXA 731 732config TARGET_H2200 733 bool "Support h2200" 734 select CPU_PXA 735 736config TARGET_PALMLD 737 bool "Support palmld" 738 select CPU_PXA 739 740config TARGET_PALMTC 741 bool "Support palmtc" 742 select CPU_PXA 743 744config TARGET_PALMTREO680 745 bool "Support palmtreo680" 746 select CPU_PXA 747 select SUPPORT_SPL 748 749config TARGET_PXA255_IDP 750 bool "Support pxa255_idp" 751 select CPU_PXA 752 753config TARGET_TRIZEPSIV 754 bool "Support trizepsiv" 755 select CPU_PXA 756 757config TARGET_VPAC270 758 bool "Support vpac270" 759 select CPU_PXA 760 select SUPPORT_SPL 761 762config TARGET_XAENIAX 763 bool "Support xaeniax" 764 select CPU_PXA 765 766config TARGET_ZIPITZ2 767 bool "Support zipitz2" 768 select CPU_PXA 769 770config TARGET_LP8X4X 771 bool "Support lp8x4x" 772 select CPU_PXA 773 774config TARGET_COLIBRI_PXA270 775 bool "Support colibri_pxa270" 776 select CPU_PXA 777 778config TARGET_JORNADA 779 bool "Support jornada" 780 select CPU_SA1100 781 782config ARCH_UNIPHIER 783 bool "Panasonic UniPhier platform" 784 select CPU_V7 785 select SUPPORT_SPL 786 select SPL 787 select OF_CONTROL 788 select DM 789 select DM_SERIAL 790 select DM_I2C 791 792config TARGET_STM32F429_DISCOVERY 793 bool "Support STM32F429 Discovery" 794 select CPU_V7M 795 796endchoice 797 798source "arch/arm/mach-at91/Kconfig" 799 800source "arch/arm/mach-bcm283x/Kconfig" 801 802source "arch/arm/mach-davinci/Kconfig" 803 804source "arch/arm/cpu/armv7/exynos/Kconfig" 805 806source "arch/arm/mach-highbank/Kconfig" 807 808source "arch/arm/mach-keystone/Kconfig" 809 810source "arch/arm/mach-kirkwood/Kconfig" 811 812source "arch/arm/cpu/armv7/mx6/Kconfig" 813 814source "arch/arm/cpu/armv7/mx5/Kconfig" 815 816source "arch/arm/mach-nomadik/Kconfig" 817 818source "arch/arm/cpu/armv7/omap3/Kconfig" 819 820source "arch/arm/cpu/armv7/omap4/Kconfig" 821 822source "arch/arm/cpu/armv7/omap5/Kconfig" 823 824source "arch/arm/mach-orion5x/Kconfig" 825 826source "arch/arm/cpu/armv7/rmobile/Kconfig" 827 828source "arch/arm/cpu/armv7/s5pc1xx/Kconfig" 829 830source "arch/arm/mach-tegra/Kconfig" 831 832source "arch/arm/mach-uniphier/Kconfig" 833 834source "arch/arm/mach-versatile/Kconfig" 835 836source "arch/arm/cpu/armv7/zynq/Kconfig" 837 838source "arch/arm/cpu/armv7/Kconfig" 839 840source "arch/arm/cpu/armv8/Kconfig" 841 842source "arch/arm/imx-common/Kconfig" 843 844source "board/aristainetos/Kconfig" 845source "board/BuR/kwb/Kconfig" 846source "board/BuR/tseries/Kconfig" 847source "board/CarMediaLab/flea3/Kconfig" 848source "board/Marvell/aspenite/Kconfig" 849source "board/Marvell/db-mv784mp-gp/Kconfig" 850source "board/Marvell/gplugd/Kconfig" 851source "board/altera/socfpga/Kconfig" 852source "board/armadeus/apf27/Kconfig" 853source "board/armltd/integrator/Kconfig" 854source "board/armltd/vexpress/Kconfig" 855source "board/armltd/vexpress64/Kconfig" 856source "board/bachmann/ot1200/Kconfig" 857source "board/balloon3/Kconfig" 858source "board/barco/platinum/Kconfig" 859source "board/barco/titanium/Kconfig" 860source "board/bluegiga/apx4devkit/Kconfig" 861source "board/boundary/nitrogen6x/Kconfig" 862source "board/broadcom/bcm28155_ap/Kconfig" 863source "board/broadcom/bcmcygnus/Kconfig" 864source "board/broadcom/bcmnsp/Kconfig" 865source "board/cirrus/edb93xx/Kconfig" 866source "board/compulab/cm_t335/Kconfig" 867source "board/compulab/cm_fx6/Kconfig" 868source "board/congatec/cgtqmx6eval/Kconfig" 869source "board/creative/xfi3/Kconfig" 870source "board/davedenx/qong/Kconfig" 871source "board/denx/m28evk/Kconfig" 872source "board/denx/m53evk/Kconfig" 873source "board/embest/mx6boards/Kconfig" 874source "board/esg/ima3-mx53/Kconfig" 875source "board/freescale/ls2085a/Kconfig" 876source "board/freescale/ls1021aqds/Kconfig" 877source "board/freescale/ls1021atwr/Kconfig" 878source "board/freescale/mx23evk/Kconfig" 879source "board/freescale/mx25pdk/Kconfig" 880source "board/freescale/mx28evk/Kconfig" 881source "board/freescale/mx31ads/Kconfig" 882source "board/freescale/mx31pdk/Kconfig" 883source "board/freescale/mx35pdk/Kconfig" 884source "board/freescale/mx51evk/Kconfig" 885source "board/freescale/mx53ard/Kconfig" 886source "board/freescale/mx53evk/Kconfig" 887source "board/freescale/mx53loco/Kconfig" 888source "board/freescale/mx53smd/Kconfig" 889source "board/freescale/mx6qarm2/Kconfig" 890source "board/freescale/mx6qsabreauto/Kconfig" 891source "board/freescale/mx6sabresd/Kconfig" 892source "board/freescale/mx6slevk/Kconfig" 893source "board/freescale/mx6sxsabresd/Kconfig" 894source "board/freescale/vf610twr/Kconfig" 895source "board/gateworks/gw_ventana/Kconfig" 896source "board/genesi/mx51_efikamx/Kconfig" 897source "board/gumstix/pepper/Kconfig" 898source "board/h2200/Kconfig" 899source "board/hale/tt01/Kconfig" 900source "board/icpdas/lp8x4x/Kconfig" 901source "board/imx31_phycore/Kconfig" 902source "board/isee/igep0033/Kconfig" 903source "board/jornada/Kconfig" 904source "board/karo/tx25/Kconfig" 905source "board/kosagi/novena/Kconfig" 906source "board/logicpd/imx27lite/Kconfig" 907source "board/logicpd/imx31_litekit/Kconfig" 908source "board/maxbcm/Kconfig" 909source "board/mpl/vcma9/Kconfig" 910source "board/olimex/mx23_olinuxino/Kconfig" 911source "board/palmld/Kconfig" 912source "board/palmtc/Kconfig" 913source "board/palmtreo680/Kconfig" 914source "board/phytec/pcm051/Kconfig" 915source "board/ppcag/bg0900/Kconfig" 916source "board/pxa255_idp/Kconfig" 917source "board/samsung/smdk2410/Kconfig" 918source "board/sandisk/sansa_fuze_plus/Kconfig" 919source "board/scb9328/Kconfig" 920source "board/schulercontrol/sc_sps_1/Kconfig" 921source "board/siemens/draco/Kconfig" 922source "board/siemens/pxm2/Kconfig" 923source "board/siemens/rut/Kconfig" 924source "board/silica/pengwyn/Kconfig" 925source "board/solidrun/hummingboard/Kconfig" 926source "board/spear/spear300/Kconfig" 927source "board/spear/spear310/Kconfig" 928source "board/spear/spear320/Kconfig" 929source "board/spear/spear600/Kconfig" 930source "board/spear/x600/Kconfig" 931source "board/st-ericsson/snowball/Kconfig" 932source "board/st-ericsson/u8500/Kconfig" 933source "board/st/stm32f429-discovery/Kconfig" 934source "board/st/stv0991/Kconfig" 935source "board/sunxi/Kconfig" 936source "board/syteco/zmx25/Kconfig" 937source "board/tbs/tbs2910/Kconfig" 938source "board/ti/am335x/Kconfig" 939source "board/ti/am43xx/Kconfig" 940source "board/birdland/bav335x/Kconfig" 941source "board/ti/ti814x/Kconfig" 942source "board/ti/ti816x/Kconfig" 943source "board/timll/devkit3250/Kconfig" 944source "board/toradex/colibri_pxa270/Kconfig" 945source "board/tqc/tqma6/Kconfig" 946source "board/trizepsiv/Kconfig" 947source "board/ttcontrol/vision2/Kconfig" 948source "board/udoo/Kconfig" 949source "board/vpac270/Kconfig" 950source "board/wandboard/Kconfig" 951source "board/warp/Kconfig" 952source "board/woodburn/Kconfig" 953source "board/work-microwave/work_92105/Kconfig" 954source "board/xaeniax/Kconfig" 955source "board/xilinx/zynqmp/Kconfig" 956source "board/zipitz2/Kconfig" 957 958source "arch/arm/Kconfig.debug" 959 960endmenu 961