1 if TARGET_AM335X_SHC 2 3 config SYS_BOARD 4 default "shc" 5 6 config SYS_VENDOR 7 default "bosch" 8 9 config SYS_SOC 10 default "am33xx" 11 12 config SYS_CONFIG_NAME 13 default "am335x_shc" 14 15 choice 16 prompt "enable different boot versions for the shc board" 17 default SHC_EMMC 18 help 19 Select the boot version of the shc board. 20 21 config SHC_EMMC 22 bool "enable eMMC" 23 help 24 enable here the eMMC functionality on the bosch shc board. 25 26 config SHC_ICT 27 bool "enable ICT" 28 help 29 enable here the ICT functionality on the bosch shc board 30 31 config SHC_NETBOOT 32 bool "enable NETBOOT" 33 help 34 enable here the NETBOOT functionality on the bosch shc board 35 36 config SHC_SDBOOT 37 bool "enable SDBOOT" 38 help 39 enable here the SDBOOT functionality on the bosch shc board 40 41 endchoice 42 43 choice 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 49 config 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 55 config 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 61 config 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 67 config 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 73 config 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 79 config 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 85 endchoice 86 87 endif 88