1if TARGET_AM335X_SHC 2 3config SYS_BOARD 4 default "shc" 5 6config SYS_VENDOR 7 default "bosch" 8 9config SYS_SOC 10 default "am33xx" 11 12config SYS_CONFIG_NAME 13 default "am335x_shc" 14 15choice 16 prompt "enable different boot versions for the shc board" 17 default EMMC 18 help 19 Select the boot version of the shc board. 20 21config SHC_EMMC 22 bool "enable eMMC" 23 help 24 enable here the eMMC functionality on the bosch shc board. 25 26config SHC_ICT 27 bool "enable ICT" 28 help 29 enable here the ICT functionality on the bosch shc board 30 31config SHC_NETBOOT 32 bool "enable NETBOOT" 33 help 34 enable here the NETBOOT functionality on the bosch shc board 35 36config SHC_SDBOOT 37 bool "enable SDBOOT" 38 help 39 enable here the SDBOOT functionality on the bosch shc board 40 41endchoice 42 43choice 44 prompt "enable different board versions for the shc board" 45 default C3_SAMPLE 46 help 47 Select the board version of the shc board. 48 49config B_SAMPLE 50 bool "B Sample board version" 51 help 52 activate, if you want to build for the B sample version 53 of the bosch shc board 54 55config B2_SAMPLE 56 bool "B2 Sample board version" 57 help 58 activate, if you want to build for the B2 sample version 59 of the bosch shc board 60 61config C_SAMPLE 62 bool "C Sample board version" 63 help 64 activate, if you want to build for the C sample version 65 of the bosch shc board 66 67config C2_SAMPLE 68 bool "C2 Sample board version" 69 help 70 activate, if you want to build for the C2 sample version 71 of the bosch shc board 72 73config C3_SAMPLE 74 bool "C3 Sample board version" 75 help 76 activate, if you want to build for the C3 sample version 77 of the bosch shc board 78 79config SERIES 80 bool "Series board version" 81 help 82 activate, if you want to build for the Series version 83 of the bosch shc board 84 85endchoice 86 87endif 88