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