1if ARCH_PXA 2 3menu "Intel PXA2xx Implementations" 4 5choice 6 prompt "Select target board" 7 8config ARCH_LUBBOCK 9 bool "Intel DBPXA250 Development Platform" 10 select PXA25x 11 select SA1111 12 13config MACH_MAINSTONE 14 bool "Intel HCDDBBVA0 Development Platform" 15 select PXA27x 16 select IWMMXT 17 18config ARCH_PXA_IDP 19 bool "Accelent Xscale IDP" 20 select PXA25x 21 22config PXA_SHARPSL 23 bool "SHARP SL-5600 and SL-C7xx Models" 24 select PXA25x 25 select SHARP_SCOOP 26 select SHARP_PARAM 27 help 28 Say Y here if you intend to run this kernel on a 29 Sharp SL-5600 (Poodle), Sharp SL-C700 (Corgi), 30 SL-C750 (Shepherd) or a Sharp SL-C760 (Husky) 31 handheld computer. 32 33endchoice 34 35endmenu 36 37config MACH_POODLE 38 bool "Enable Sharp SL-5600 (Poodle) Support" 39 depends PXA_SHARPSL 40 select SHARP_LOCOMO 41 42config MACH_CORGI 43 bool "Enable Sharp SL-C700 (Corgi) Support" 44 depends PXA_SHARPSL 45 select PXA_SHARP_C7xx 46 47config MACH_SHEPHERD 48 bool "Enable Sharp SL-C750 (Shepherd) Support" 49 depends PXA_SHARPSL 50 select PXA_SHARP_C7xx 51 52config MACH_HUSKY 53 bool "Enable Sharp SL-C760 (Husky) Support" 54 depends PXA_SHARPSL 55 select PXA_SHARP_C7xx 56 57config PXA25x 58 bool 59 help 60 Select code specific to PXA21x/25x/26x variants 61 62config PXA27x 63 bool 64 help 65 Select code specific to PXA27x variants 66 67config IWMMXT 68 bool 69 help 70 Enable support for iWMMXt 71 72config PXA_SHARP_C7xx 73 bool 74 help 75 Enable support for all Sharp C7xx models 76 77endif 78