X-Git-Url: http://git.rot13.org/?p=goodfet;a=blobdiff_plain;f=firmware%2Fconfig.mk;h=e08a757f8b1dee7a6c2e52234519f449de7b46b8;hp=a9f628976c904f3d1aad2f671845a345f7639feb;hb=52b89c3d825851832cc4163ad354d3bf1741bf99;hpb=cb0b62cea38146c2414ccf215626daa8acf9aca5 diff --git a/firmware/config.mk b/firmware/config.mk index a9f6289..e08a757 100644 --- a/firmware/config.mk +++ b/firmware/config.mk @@ -2,6 +2,8 @@ ## These are production boards. ################################## +#Unset by default, but can be explicitly set later. +config=undef ifneq (,$(findstring $(board),goodfet20 goodfet10 goodfet11)) mcu ?= msp430f1612 @@ -18,11 +20,26 @@ mcu ?= msp430f2274 platform := goodfet # This will link to fit in a '2254, so unneeded packages should be omited. CONFIG_ccspi = n +CONFIG_nrf = y endif ifneq (,$(findstring $(board),goodfet40 goodfet41)) mcu ?= msp430f2618 platform := goodfet +CONFIG_nrf = y +endif + +ifneq (,$(findstring $(board),facedancer10)) +mcu ?= msp430f2618 +platform := goodfet +config = monitor spi maxusb +endif + +ifeq ($(board),z1) +mcu ?= msp430f2617 +platform := z1 +config = monitor spi ccspi +MSP430BSL?=goodfet.bsl --z1 --speed=38400 endif ifneq (,$(findstring $(board),goodfet24)) @@ -118,13 +135,13 @@ CONFIG_avr ?= y CONFIG_pic ?= n CONFIG_adc ?= n CONFIG_nrf ?= n -CONFIG_ccspi ?= y +CONFIG_ccspi ?= n CONFIG_glitch ?= n CONFIG_smartcard ?= n CONFIG_ps2 ?= n CONFIG_slc2 ?= n -#The CONFIG_foo vars are only interpreted if $(config) is unset. +#The CONFIG_foo vars are only interpreted if $(config) is "unset". ifeq ($(config),undef) config += $(foreach app,$(AVAILABLE_APPS),$(if $(findstring $(CONFIG_$(app)),y yes t true Y YES T TRUE),$(app))) endif