2021-11-17 21:05:27 -08:00
|
|
|
#!/bin/bash
|
|
|
|
|
|
|
|
|
2021-11-18 16:34:46 -08:00
|
|
|
source gen_config_common.sh
|
|
|
|
echo "Using COMMON_GEN_CONFIG [$COMMON_GEN_CONFIG]"
|
|
|
|
|
2021-11-17 21:05:27 -08:00
|
|
|
java -DSystemOut.name=logs/gen_output_channels \
|
|
|
|
-jar ../java_tools/ConfigDefinition.jar \
|
|
|
|
-cache_zip_file tunerstudio/generated/cache.zip \
|
2021-11-18 16:34:46 -08:00
|
|
|
-prepend integration/rusefi_config.txt \
|
2021-11-26 12:53:01 -08:00
|
|
|
-definition console/binary/output_channels.txt \
|
2021-11-28 11:10:13 -08:00
|
|
|
-ts_outputs_section console/binary/ \
|
2021-11-17 21:05:27 -08:00
|
|
|
-cache . \
|
2021-11-18 16:34:46 -08:00
|
|
|
-with_c_defines false \
|
2021-11-17 21:19:11 -08:00
|
|
|
-c_destination console/binary/ts_outputs_generated.h
|