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