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 HAS_THUMB2 14 bool 15 16config CPU_ARM720T 17 bool 18 19config CPU_ARM920T 20 bool 21 22config CPU_ARM926EJS 23 bool 24 25config CPU_ARM946ES 26 bool 27 28config CPU_ARM1136 29 bool 30 31config CPU_ARM1176 32 bool 33 select HAS_VBAR 34 35config CPU_V7 36 bool 37 select HAS_VBAR 38 select HAS_THUMB2 39 40config CPU_V7M 41 bool 42 select HAS_THUMB2 43 44config CPU_PXA 45 bool 46 47config CPU_SA1100 48 bool 49 50config SYS_CPU 51 default "arm720t" if CPU_ARM720T 52 default "arm920t" if CPU_ARM920T 53 default "arm926ejs" if CPU_ARM926EJS 54 default "arm946es" if CPU_ARM946ES 55 default "arm1136" if CPU_ARM1136 56 default "arm1176" if CPU_ARM1176 57 default "armv7" if CPU_V7 58 default "armv7m" if CPU_V7M 59 default "pxa" if CPU_PXA 60 default "sa1100" if CPU_SA1100 61 default "armv8" if ARM64 62 63config SEMIHOSTING 64 bool "support boot from semihosting" 65 help 66 In emulated environments, semihosting is a way for 67 the hosted environment to call out to the emulator to 68 retrieve files from the host machine. 69 70config SYS_L2CACHE_OFF 71 bool "L2cache off" 72 help 73 If SoC does not support L2CACHE or one do not want to enable 74 L2CACHE, choose this option. 75 76choice 77 prompt "Target select" 78 default TARGET_HIKEY 79 80config ARCH_AT91 81 bool "Atmel AT91" 82 83config TARGET_EDB93XX 84 bool "Support edb93xx" 85 select CPU_ARM920T 86 87config TARGET_VCMA9 88 bool "Support VCMA9" 89 select CPU_ARM920T 90 91config TARGET_SMDK2410 92 bool "Support smdk2410" 93 select CPU_ARM920T 94 95config TARGET_ASPENITE 96 bool "Support aspenite" 97 select CPU_ARM926EJS 98 99config TARGET_GPLUGD 100 bool "Support gplugd" 101 select CPU_ARM926EJS 102 103config ARCH_DAVINCI 104 bool "TI DaVinci" 105 select CPU_ARM926EJS 106 help 107 Support for TI's DaVinci platform. 108 109config KIRKWOOD 110 bool "Marvell Kirkwood" 111 select CPU_ARM926EJS 112 113config ARCH_MVEBU 114 bool "Marvell MVEBU family (Armada XP/38x)" 115 select CPU_V7 116 select SUPPORT_SPL 117 select OF_CONTROL 118 select OF_SEPARATE 119 select DM 120 select DM_SERIAL 121 select SPL_DM_SEQ_ALIAS 122 123config TARGET_DEVKIT3250 124 bool "Support devkit3250" 125 select CPU_ARM926EJS 126 select SUPPORT_SPL 127 128config TARGET_WORK_92105 129 bool "Support work_92105" 130 select CPU_ARM926EJS 131 select SUPPORT_SPL 132 133config TARGET_MX25PDK 134 bool "Support mx25pdk" 135 select CPU_ARM926EJS 136 137config TARGET_ZMX25 138 bool "Support zmx25" 139 select CPU_ARM926EJS 140 141config TARGET_APF27 142 bool "Support apf27" 143 select CPU_ARM926EJS 144 select SUPPORT_SPL 145 146config TARGET_APX4DEVKIT 147 bool "Support apx4devkit" 148 select CPU_ARM926EJS 149 select SUPPORT_SPL 150 151config TARGET_XFI3 152 bool "Support xfi3" 153 select CPU_ARM926EJS 154 select SUPPORT_SPL 155 156config TARGET_M28EVK 157 bool "Support m28evk" 158 select CPU_ARM926EJS 159 select SUPPORT_SPL 160 161config TARGET_MX23EVK 162 bool "Support mx23evk" 163 select CPU_ARM926EJS 164 select SUPPORT_SPL 165 166config TARGET_MX28EVK 167 bool "Support mx28evk" 168 select CPU_ARM926EJS 169 select SUPPORT_SPL 170 171config TARGET_MX23_OLINUXINO 172 bool "Support mx23_olinuxino" 173 select CPU_ARM926EJS 174 select SUPPORT_SPL 175 176config TARGET_BG0900 177 bool "Support bg0900" 178 select CPU_ARM926EJS 179 select SUPPORT_SPL 180 181config TARGET_SANSA_FUZE_PLUS 182 bool "Support sansa_fuze_plus" 183 select CPU_ARM926EJS 184 select SUPPORT_SPL 185 186config TARGET_SC_SPS_1 187 bool "Support sc_sps_1" 188 select CPU_ARM926EJS 189 select SUPPORT_SPL 190 191config ORION5X 192 bool "Marvell Orion" 193 select CPU_ARM926EJS 194 195config TARGET_SPEAR300 196 bool "Support spear300" 197 select CPU_ARM926EJS 198 199config TARGET_SPEAR310 200 bool "Support spear310" 201 select CPU_ARM926EJS 202 203config TARGET_SPEAR320 204 bool "Support spear320" 205 select CPU_ARM926EJS 206 207config TARGET_SPEAR600 208 bool "Support spear600" 209 select CPU_ARM926EJS 210 211config TARGET_STV0991 212 bool "Support stv0991" 213 select CPU_V7 214 select DM 215 select DM_SERIAL 216 select DM_SPI 217 select DM_SPI_FLASH 218 select SPI_FLASH 219 220config TARGET_X600 221 bool "Support x600" 222 select CPU_ARM926EJS 223 select SUPPORT_SPL 224 225config TARGET_IMX31_PHYCORE 226 bool "Support imx31_phycore" 227 select CPU_ARM1136 228 229config TARGET_MX31ADS 230 bool "Support mx31ads" 231 select CPU_ARM1136 232 233config TARGET_MX31PDK 234 bool "Support mx31pdk" 235 select CPU_ARM1136 236 select SUPPORT_SPL 237 238config TARGET_WOODBURN 239 bool "Support woodburn" 240 select CPU_ARM1136 241 242config TARGET_WOODBURN_SD 243 bool "Support woodburn_sd" 244 select CPU_ARM1136 245 select SUPPORT_SPL 246 247config TARGET_FLEA3 248 bool "Support flea3" 249 select CPU_ARM1136 250 251config TARGET_MX35PDK 252 bool "Support mx35pdk" 253 select CPU_ARM1136 254 255config ARCH_BCM283X 256 bool "Broadcom BCM283X family" 257 select DM 258 select DM_SERIAL 259 select DM_GPIO 260 261config TARGET_VEXPRESS_CA15_TC2 262 bool "Support vexpress_ca15_tc2" 263 select CPU_V7 264 select CPU_V7_HAS_NONSEC 265 select CPU_V7_HAS_VIRT 266 267config TARGET_VEXPRESS_CA5X2 268 bool "Support vexpress_ca5x2" 269 select CPU_V7 270 271config TARGET_VEXPRESS_CA9X4 272 bool "Support vexpress_ca9x4" 273 select CPU_V7 274 275config TARGET_KWB 276 bool "Support kwb" 277 select CPU_V7 278 select SUPPORT_SPL 279 280config TARGET_TSERIES 281 bool "Support tseries" 282 select CPU_V7 283 select SUPPORT_SPL 284 285config TARGET_CM_T335 286 bool "Support cm_t335" 287 select CPU_V7 288 select SUPPORT_SPL 289 select DM 290 select DM_SERIAL 291 select DM_GPIO 292 293config TARGET_PEPPER 294 bool "Support pepper" 295 select CPU_V7 296 select SUPPORT_SPL 297 select DM 298 select DM_SERIAL 299 select DM_GPIO 300 301config TARGET_AM335X_IGEP0033 302 bool "Support am335x_igep0033" 303 select CPU_V7 304 select SUPPORT_SPL 305 select DM 306 select DM_SERIAL 307 select DM_GPIO 308 309config TARGET_PCM051 310 bool "Support pcm051" 311 select CPU_V7 312 select SUPPORT_SPL 313 select DM 314 select DM_SERIAL 315 select DM_GPIO 316 317config TARGET_DRACO 318 bool "Support draco" 319 select CPU_V7 320 select SUPPORT_SPL 321 322config TARGET_THUBAN 323 bool "Support thuban" 324 select CPU_V7 325 select SUPPORT_SPL 326 327config TARGET_RASTABAN 328 bool "Support rastaban" 329 select CPU_V7 330 select SUPPORT_SPL 331 332config TARGET_PXM2 333 bool "Support pxm2" 334 select CPU_V7 335 select SUPPORT_SPL 336 337config TARGET_RUT 338 bool "Support rut" 339 select CPU_V7 340 select SUPPORT_SPL 341 342config TARGET_PENGWYN 343 bool "Support pengwyn" 344 select CPU_V7 345 select SUPPORT_SPL 346 select DM 347 select DM_SERIAL 348 select DM_GPIO 349 350config TARGET_AM335X_BALTOS 351 bool "Support am335x_baltos" 352 select CPU_V7 353 select SUPPORT_SPL 354 select DM 355 select DM_SERIAL 356 select DM_GPIO 357 358config TARGET_AM335X_EVM 359 bool "Support am335x_evm" 360 select CPU_V7 361 select SUPPORT_SPL 362 select DM 363 select DM_SERIAL 364 select DM_GPIO 365 366config TARGET_AM335X_SL50 367 bool "Support am335x_sl50" 368 select CPU_V7 369 select SUPPORT_SPL 370 select DM 371 select DM_SERIAL 372 373config TARGET_AM43XX_EVM 374 bool "Support am43xx_evm" 375 select CPU_V7 376 select SUPPORT_SPL 377 378config TARGET_BAV335X 379 bool "Support bav335x" 380 select CPU_V7 381 select SUPPORT_SPL 382 select DM 383 select DM_SERIAL 384 help 385 The BAV335x OEM Network Processor integrates all the functions of an 386 embedded network computer in a small, easy to use SODIMM module which 387 incorporates the popular Texas Instruments Sitara 32bit ARM Coretex-A8 388 processor, with fast DDR3 512MB SDRAM, 4GB of embedded MMC and a Gigabit 389 ethernet with simple connection to external connectors. 390 391 For more information, visit: http://birdland.com/oem 392 393config TARGET_TI814X_EVM 394 bool "Support ti814x_evm" 395 select CPU_V7 396 select SUPPORT_SPL 397 398config TARGET_TI816X_EVM 399 bool "Support ti816x_evm" 400 select CPU_V7 401 select SUPPORT_SPL 402 403config TARGET_BCM28155_AP 404 bool "Support bcm28155_ap" 405 select CPU_V7 406 407config TARGET_BCMCYGNUS 408 bool "Support bcmcygnus" 409 select CPU_V7 410 411config TARGET_BCMNSP 412 bool "Support bcmnsp" 413 select CPU_V7 414 415config ARCH_EXYNOS 416 bool "Samsung EXYNOS" 417 select CPU_V7 418 select DM 419 select DM_SPI_FLASH 420 select DM_SERIAL 421 select DM_SPI 422 select DM_GPIO 423 select DM_KEYBOARD 424 425config ARCH_S5PC1XX 426 bool "Samsung S5PC1XX" 427 select CPU_V7 428 select DM 429 select DM_SERIAL 430 select DM_GPIO 431 432config ARCH_HIGHBANK 433 bool "Calxeda Highbank" 434 select CPU_V7 435 436config ARCH_INTEGRATOR 437 bool "ARM Ltd. Integrator family" 438 select DM 439 select DM_SERIAL 440 441config ARCH_KEYSTONE 442 bool "TI Keystone" 443 select CPU_V7 444 select SUPPORT_SPL 445 446config ARCH_MX7 447 bool "Freescale MX7" 448 select CPU_V7 449 450config ARCH_MX6 451 bool "Freescale MX6" 452 select CPU_V7 453 454config ARCH_MX5 455 bool "Freescale MX5" 456 select CPU_V7 457 458config TARGET_M53EVK 459 bool "Support m53evk" 460 select CPU_V7 461 select SUPPORT_SPL 462 463config TARGET_MX51EVK 464 bool "Support mx51evk" 465 select CPU_V7 466 467config TARGET_MX53ARD 468 bool "Support mx53ard" 469 select CPU_V7 470 471config TARGET_MX53EVK 472 bool "Support mx53evk" 473 select CPU_V7 474 475config TARGET_MX53LOCO 476 bool "Support mx53loco" 477 select CPU_V7 478 479config TARGET_MX53SMD 480 bool "Support mx53smd" 481 select CPU_V7 482 483config OMAP34XX 484 bool "OMAP34XX SoC" 485 select CPU_V7 486 487config OMAP44XX 488 bool "OMAP44XX SoC" 489 select CPU_V7 490 select SUPPORT_SPL 491 492config OMAP54XX 493 bool "OMAP54XX SoC" 494 select CPU_V7 495 select SUPPORT_SPL 496 497config RMOBILE 498 bool "Renesas ARM SoCs" 499 select CPU_V7 500 501config ARCH_SOCFPGA 502 bool "Altera SOCFPGA family" 503 select CPU_V7 504 select SUPPORT_SPL 505 select OF_CONTROL 506 select SPL_OF_CONTROL 507 select DM 508 select DM_SPI_FLASH 509 select DM_SPI 510 511config TARGET_CM_T43 512 bool "Support cm_t43" 513 select CPU_V7 514 select SUPPORT_SPL 515 516config ARCH_SUNXI 517 bool "Support sunxi (Allwinner) SoCs" 518 select CMD_USB 519 select DM 520 select DM_ETH 521 select DM_GPIO 522 select DM_KEYBOARD 523 select DM_SERIAL 524 select DM_USB 525 select OF_CONTROL 526 select OF_SEPARATE 527 select SPL_STACK_R if !MACH_SUN9I 528 select SPL_SYS_MALLOC_SIMPLE if !MACH_SUN9I 529 select SYS_NS16550 530 select USB 531 select USB_STORAGE 532 select USB_KEYBOARD 533 534config TARGET_TS4800 535 bool "Support TS4800" 536 select CPU_V7 537 538config TARGET_VF610TWR 539 bool "Support vf610twr" 540 select CPU_V7 541 542config TARGET_COLIBRI_VF 543 bool "Support Colibri VF50/61" 544 select CPU_V7 545 546config TARGET_PCM052 547 bool "Support pcm-052" 548 select CPU_V7 549 550config ARCH_ZYNQ 551 bool "Xilinx Zynq Platform" 552 select CPU_V7 553 select SUPPORT_SPL 554 select OF_CONTROL 555 select SPL_OF_CONTROL 556 select DM 557 select DM_ETH 558 select SPL_DM 559 select DM_MMC 560 select DM_SPI 561 select DM_SERIAL 562 select DM_SPI_FLASH 563 select SPL_SEPARATE_BSS 564 565config ARCH_ZYNQMP 566 bool "Support Xilinx ZynqMP Platform" 567 select ARM64 568 select DM 569 select OF_CONTROL 570 select DM_ETH 571 select DM_MMC 572 select DM_SERIAL 573 574config TEGRA 575 bool "NVIDIA Tegra" 576 577config TARGET_VEXPRESS64_AEMV8A 578 bool "Support vexpress_aemv8a" 579 select ARM64 580 581config TARGET_VEXPRESS64_BASE_FVP 582 bool "Support Versatile Express ARMv8a FVP BASE model" 583 select ARM64 584 select SEMIHOSTING 585 586config TARGET_VEXPRESS64_BASE_FVP_DRAM 587 bool "Support Versatile Express ARMv8a FVP BASE model booting from DRAM" 588 select ARM64 589 help 590 This target is derived from TARGET_VEXPRESS64_BASE_FVP and over-rides 591 the default config to allow the user to load the images directly into 592 DRAM using model parameters rather than by using semi-hosting to load 593 the files from the host filesystem. 594 595config TARGET_VEXPRESS64_JUNO 596 bool "Support Versatile Express Juno Development Platform" 597 select ARM64 598 599config TARGET_LS2080A_EMU 600 bool "Support ls2080a_emu" 601 select ARM64 602 select ARMV8_MULTIENTRY 603 help 604 Support for Freescale LS2080A_EMU platform 605 The LS2080A Development System (EMULATOR) is a pre silicon 606 development platform that supports the QorIQ LS2080A 607 Layerscape Architecture processor. 608 609config TARGET_LS2080A_SIMU 610 bool "Support ls2080a_simu" 611 select ARM64 612 select ARMV8_MULTIENTRY 613 help 614 Support for Freescale LS2080A_SIMU platform 615 The LS2080A Development System (QDS) is a pre silicon 616 development platform that supports the QorIQ LS2080A 617 Layerscape Architecture processor. 618 619config TARGET_LS2080AQDS 620 bool "Support ls2080aqds" 621 select ARM64 622 select ARMV8_MULTIENTRY 623 select SUPPORT_SPL 624 help 625 Support for Freescale LS2080AQDS platform 626 The LS2080A Development System (QDS) is a high-performance 627 development platform that supports the QorIQ LS2080A 628 Layerscape Architecture processor. 629 630config TARGET_LS2080ARDB 631 bool "Support ls2080ardb" 632 select ARM64 633 select ARMV8_MULTIENTRY 634 select SUPPORT_SPL 635 help 636 Support for Freescale LS2080ARDB platform. 637 The LS2080A Reference design board (RDB) is a high-performance 638 development platform that supports the QorIQ LS2080A 639 Layerscape Architecture processor. 640 641config TARGET_HIKEY 642 bool "Support HiKey 96boards Consumer Edition Platform" 643 select ARM64 644 select DM 645 select DM_GPIO 646 select DM_SERIAL 647 help 648 Support for HiKey 96boards platform. It features a HI6220 649 SoC, with 8xA53 CPU, mali450 gpu, and 1GB RAM. 650 651config TARGET_LS1021AQDS 652 bool "Support ls1021aqds" 653 select CPU_V7 654 select SUPPORT_SPL 655config TARGET_LS1021ATWR 656 bool "Support ls1021atwr" 657 select CPU_V7 658 select SUPPORT_SPL 659 660config TARGET_LS1043AQDS 661 bool "Support ls1043aqds" 662 select ARM64 663 select ARMV8_MULTIENTRY 664 select SUPPORT_SPL 665 help 666 Support for Freescale LS1043AQDS platform. 667 668config TARGET_LS1043ARDB 669 bool "Support ls1043ardb" 670 select ARM64 671 select ARMV8_MULTIENTRY 672 select SUPPORT_SPL 673 help 674 Support for Freescale LS1043ARDB platform. 675 676config TARGET_H2200 677 bool "Support h2200" 678 select CPU_PXA 679 680config TARGET_COLIBRI_PXA270 681 bool "Support colibri_pxa270" 682 select CPU_PXA 683 684config ARCH_UNIPHIER 685 bool "Socionext UniPhier SoCs" 686 select CPU_V7 687 select SUPPORT_SPL 688 select SPL 689 select OF_CONTROL 690 select SPL_OF_CONTROL 691 select DM 692 select SPL_DM 693 select DM_SERIAL 694 select DM_I2C 695 help 696 Support for UniPhier SoC family developed by Socionext Inc. 697 (formerly, System LSI Business Division of Panasonic Corporation) 698 699config TARGET_STM32F429_DISCOVERY 700 bool "Support STM32F429 Discovery" 701 select CPU_V7M 702 select DM 703 select DM_SERIAL 704 705config ARCH_ROCKCHIP 706 bool "Support Rockchip SoCs" 707 select SUPPORT_SPL 708 select SPL 709 select OF_CONTROL 710 select CPU_V7 711 select DM 712 713endchoice 714 715source "arch/arm/mach-at91/Kconfig" 716 717source "arch/arm/mach-bcm283x/Kconfig" 718 719source "arch/arm/mach-davinci/Kconfig" 720 721source "arch/arm/mach-exynos/Kconfig" 722 723source "arch/arm/mach-highbank/Kconfig" 724 725source "arch/arm/mach-integrator/Kconfig" 726 727source "arch/arm/mach-keystone/Kconfig" 728 729source "arch/arm/mach-kirkwood/Kconfig" 730 731source "arch/arm/mach-mvebu/Kconfig" 732 733source "arch/arm/cpu/armv7/mx7/Kconfig" 734 735source "arch/arm/cpu/armv7/mx6/Kconfig" 736 737source "arch/arm/cpu/armv7/mx5/Kconfig" 738 739source "arch/arm/cpu/armv7/omap3/Kconfig" 740 741source "arch/arm/cpu/armv7/omap4/Kconfig" 742 743source "arch/arm/cpu/armv7/omap5/Kconfig" 744 745source "arch/arm/mach-orion5x/Kconfig" 746 747source "arch/arm/cpu/armv7/rmobile/Kconfig" 748 749source "arch/arm/mach-rockchip/Kconfig" 750 751source "arch/arm/mach-s5pc1xx/Kconfig" 752 753source "arch/arm/mach-socfpga/Kconfig" 754 755source "arch/arm/mach-tegra/Kconfig" 756 757source "arch/arm/mach-uniphier/Kconfig" 758 759source "arch/arm/mach-zynq/Kconfig" 760 761source "arch/arm/cpu/armv7/Kconfig" 762 763source "arch/arm/cpu/armv8/zynqmp/Kconfig" 764 765source "arch/arm/cpu/armv8/Kconfig" 766 767source "arch/arm/imx-common/Kconfig" 768 769source "board/BuR/kwb/Kconfig" 770source "board/BuR/tseries/Kconfig" 771source "board/CarMediaLab/flea3/Kconfig" 772source "board/Marvell/aspenite/Kconfig" 773source "board/Marvell/db-88f6820-gp/Kconfig" 774source "board/Marvell/db-mv784mp-gp/Kconfig" 775source "board/Marvell/gplugd/Kconfig" 776source "board/armadeus/apf27/Kconfig" 777source "board/armltd/vexpress/Kconfig" 778source "board/armltd/vexpress64/Kconfig" 779source "board/bluegiga/apx4devkit/Kconfig" 780source "board/broadcom/bcm28155_ap/Kconfig" 781source "board/broadcom/bcmcygnus/Kconfig" 782source "board/broadcom/bcmnsp/Kconfig" 783source "board/cirrus/edb93xx/Kconfig" 784source "board/compulab/cm_t335/Kconfig" 785source "board/compulab/cm_t43/Kconfig" 786source "board/creative/xfi3/Kconfig" 787source "board/denx/m28evk/Kconfig" 788source "board/denx/m53evk/Kconfig" 789source "board/freescale/ls2080a/Kconfig" 790source "board/freescale/ls2080aqds/Kconfig" 791source "board/freescale/ls2080ardb/Kconfig" 792source "board/freescale/ls1021aqds/Kconfig" 793source "board/freescale/ls1043aqds/Kconfig" 794source "board/freescale/ls1021atwr/Kconfig" 795source "board/freescale/ls1043ardb/Kconfig" 796source "board/freescale/mx23evk/Kconfig" 797source "board/freescale/mx25pdk/Kconfig" 798source "board/freescale/mx28evk/Kconfig" 799source "board/freescale/mx31ads/Kconfig" 800source "board/freescale/mx31pdk/Kconfig" 801source "board/freescale/mx35pdk/Kconfig" 802source "board/freescale/mx51evk/Kconfig" 803source "board/freescale/mx53ard/Kconfig" 804source "board/freescale/mx53evk/Kconfig" 805source "board/freescale/mx53loco/Kconfig" 806source "board/freescale/mx53smd/Kconfig" 807source "board/freescale/vf610twr/Kconfig" 808source "board/gumstix/pepper/Kconfig" 809source "board/h2200/Kconfig" 810source "board/hisilicon/hikey/Kconfig" 811source "board/imx31_phycore/Kconfig" 812source "board/isee/igep0033/Kconfig" 813source "board/maxbcm/Kconfig" 814source "board/mpl/vcma9/Kconfig" 815source "board/olimex/mx23_olinuxino/Kconfig" 816source "board/phytec/pcm051/Kconfig" 817source "board/phytec/pcm052/Kconfig" 818source "board/ppcag/bg0900/Kconfig" 819source "board/samsung/smdk2410/Kconfig" 820source "board/sandisk/sansa_fuze_plus/Kconfig" 821source "board/schulercontrol/sc_sps_1/Kconfig" 822source "board/siemens/draco/Kconfig" 823source "board/siemens/pxm2/Kconfig" 824source "board/siemens/rut/Kconfig" 825source "board/silica/pengwyn/Kconfig" 826source "board/spear/spear300/Kconfig" 827source "board/spear/spear310/Kconfig" 828source "board/spear/spear320/Kconfig" 829source "board/spear/spear600/Kconfig" 830source "board/spear/x600/Kconfig" 831source "board/st/stm32f429-discovery/Kconfig" 832source "board/st/stv0991/Kconfig" 833source "board/sunxi/Kconfig" 834source "board/syteco/zmx25/Kconfig" 835source "board/tcl/sl50/Kconfig" 836source "board/ti/am335x/Kconfig" 837source "board/ti/am43xx/Kconfig" 838source "board/birdland/bav335x/Kconfig" 839source "board/ti/ti814x/Kconfig" 840source "board/ti/ti816x/Kconfig" 841source "board/timll/devkit3250/Kconfig" 842source "board/toradex/colibri_pxa270/Kconfig" 843source "board/toradex/colibri_vf/Kconfig" 844source "board/technologic/ts4800/Kconfig" 845source "board/vscom/baltos/Kconfig" 846source "board/woodburn/Kconfig" 847source "board/work-microwave/work_92105/Kconfig" 848 849source "arch/arm/Kconfig.debug" 850 851endmenu 852