* get yq from GH releases * submo bump * little hack * didn't work, fix properly * oh roight * got it backwards * poke
This commit is contained in:
parent
0d609cb5f5
commit
e8ce3738f7
|
@ -145,7 +145,7 @@ jobs:
|
|||
bash config/boards/subaru_eg33/config/gen_config.sh
|
||||
[ $? -eq 0 ] || { echo "ERROR generating board subaru_eg33 subaru_eg33_f7"; exit 1; }
|
||||
else
|
||||
bash gen_config_board.sh ${{matrix.folder}} ${{matrix.build-target}}
|
||||
bash gen_config_board.sh ${{matrix.folder}} ${{matrix.build-target}} ${{matrix.ini-file}}
|
||||
fi
|
||||
|
||||
- name: Generate Enum Strings
|
||||
|
|
|
@ -14,6 +14,11 @@ fi
|
|||
|
||||
BOARDNAME=$1
|
||||
SHORT_BOARDNAME=$2
|
||||
if [ -n "$3" ]; then
|
||||
INI="$3"
|
||||
else
|
||||
INI="rusefi_${SHORT_BOARDNAME}.ini"
|
||||
fi
|
||||
|
||||
echo "BOARDNAME=${BOARDNAME} SHORT_BOARDNAME=${SHORT_BOARDNAME}"
|
||||
|
||||
|
@ -28,7 +33,7 @@ java -DSystemOut.name=gen_config_board \
|
|||
-cache ${SHORT_BOARDNAME} \
|
||||
-cache_zip_file tunerstudio/generated/cache.zip \
|
||||
-firing_order controllers/algo/firing_order.h \
|
||||
-ts_output_name generated/rusefi_${SHORT_BOARDNAME}.ini \
|
||||
-ts_output_name generated/${INI} \
|
||||
-signature tunerstudio/generated/signature_${SHORT_BOARDNAME}.txt \
|
||||
-signature_destination controllers/generated/signature_${SHORT_BOARDNAME}.h \
|
||||
-enumInputFile controllers/algo/rusefi_enums.h \
|
||||
|
@ -43,7 +48,7 @@ java -DSystemOut.name=gen_config_board \
|
|||
# 1) using unique file name for each configuration?
|
||||
# 2) leverage consistent caching mechanism so that image is generated only in case of fresh .ini. Laziest approach would be to return exit code from java process above
|
||||
#
|
||||
hw_layer/mass_storage/create_ini_image.sh ./tunerstudio/generated/rusefi_${SHORT_BOARDNAME}.ini ./hw_layer/mass_storage/ramdisk_image.h
|
||||
hw_layer/mass_storage/create_ini_image_compressed.sh ./tunerstudio/generated/rusefi_${SHORT_BOARDNAME}.ini ./hw_layer/mass_storage/ramdisk_image_compressed.h
|
||||
hw_layer/mass_storage/create_ini_image.sh ./tunerstudio/generated/${INI} ./hw_layer/mass_storage/ramdisk_image.h
|
||||
hw_layer/mass_storage/create_ini_image_compressed.sh ./tunerstudio/generated/${INI} ./hw_layer/mass_storage/ramdisk_image_compressed.h
|
||||
|
||||
exit 0
|
||||
|
|
|
@ -3719,4 +3719,3 @@ cmd_set_engine_type_default = "@@TS_IO_TEST_COMMAND_char@@\x00\x31\x00\x00"
|
|||
addTool = afrTableGenerator, "AFR Table Generator", afrTableTbl
|
||||
#endif
|
||||
|
||||
; poke
|
||||
|
|
Loading…
Reference in New Issue