Re: [riot-devel] Activation of modules by make command line

2018-09-06 Thread Martine Lenders
Hi Gunar, Of course it is possible to do it from command-line. You were pretty close, but you don't need an intermediate variable. Just set the variable USEMODULE in your environment: USEMODULE="sdcard_spi mrf24j40" BOARD=... make ... Regards, Martine Am Do., 6. Sep. 2018 um 10:33 Uhr

Re: [riot-devel] Activation of modules by make command line

2018-09-06 Thread Joakim NohlgÄrd
It should be possible in the current state if you give the modules as an environment variable instead of on the command line. So: USEMODULE='module_a module_b' make BOARD=asdf /Joakim Den tor 6 sep. 2018 10:33Gunar Schorcht skrev: > Hi, > > It is often necessary to enable or disable various

[riot-devel] Activation of modules by make command line

2018-09-06 Thread Gunar Schorcht
Hi, It is often necessary to enable or disable various functions at compilation time, for example, to test dependencies. In RIOT, features are activated using the module concept: USEMODULE + = feature I'm wondering whether there is a possibility to enable modules without changing the