nicer bundle folder structure and reducing unneeded content #833
This commit is contained in:
parent
a5763f858f
commit
d3dfad375f
|
@ -1,9 +1,11 @@
|
|||
set script_name=common_make.bat
|
||||
echo Entering %script_name%
|
||||
|
||||
mkdir .dep
|
||||
rem todo: start using env variable for number of threads or for '-r'
|
||||
make -j4 -r
|
||||
if not exist build/rusefi.hex echo FAILED to compile by %script_name%
|
||||
if not exist build/rusefi.hex exit -1
|
||||
|
||||
../misc/encedo_hex2dfu/hex2dfu.exe -i build/rusefi.hex -o build/rusefi.dfu
|
||||
echo %script_name%: invoking hex2dfu.exe
|
||||
..\misc\encedo_hex2dfu\hex2dfu.exe -i build/rusefi.hex -o build/rusefi.dfu
|
|
@ -16,10 +16,6 @@ set EXTRA_PARAMS=-DDUMMY -DSTM32F767xx ^
|
|||
rem Do not forget to comment out following line if looking to debug!
|
||||
set DEBUG_LEVEL_OPT="-O2"
|
||||
|
||||
make -j4
|
||||
if not exist build/rusefi.hex echo FAILED to compile osc_f767
|
||||
if not exist build/rusefi.hex exit -1
|
||||
|
||||
..\misc\hex2dfu\HEX2DFU.exe build/rusefi.hex -out build/rusefi.dfu
|
||||
call config/boards/common_make.bat
|
||||
|
||||
call config/boards/clean_env_variables.bat
|
||||
|
|
|
@ -8,10 +8,7 @@ set PROMETHEUS_BOARD=405
|
|||
set EXTRA_PARAMS="-DDUMMY -DSTM32F405xx -DEFI_ENABLE_ASSERTS=FALSE -DCH_DBG_ENABLE_TRACE=FALSE -DCH_DBG_ENABLE_ASSERTS=FALSE -DCH_DBG_ENABLE_STACK_CHECK=FALSE -DCH_DBG_FILL_THREADS=FALSE -DCH_DBG_THREADS_PROFILING=FALSE"
|
||||
set DEBUG_LEVEL_OPT="-O2"
|
||||
set USE_BOOTLOADER=yes
|
||||
rem call compile.bat -r
|
||||
rem temp stuff trying to fix CI
|
||||
make clean
|
||||
mkdir .dep
|
||||
make -r
|
||||
|
||||
call config/boards/common_make.bat
|
||||
|
||||
call config/boards/clean_env_variables.bat
|
|
@ -8,10 +8,7 @@ set PROMETHEUS_BOARD=469
|
|||
set EXTRA_PARAMS="-DDUMMY -DSTM32F469xx -DEFI_ENABLE_ASSERTS=FALSE -DCH_DBG_ENABLE_TRACE=FALSE -DCH_DBG_ENABLE_ASSERTS=FALSE -DCH_DBG_ENABLE_STACK_CHECK=FALSE -DCH_DBG_FILL_THREADS=FALSE -DCH_DBG_THREADS_PROFILING=FALSE"
|
||||
set DEBUG_LEVEL_OPT="-O2"
|
||||
set USE_BOOTLOADER=yes
|
||||
rem call compile.bat -r
|
||||
rem temp stuff trying to fix CI
|
||||
make clean
|
||||
mkdir .dep
|
||||
make -r
|
||||
|
||||
call config/boards/common_make.bat
|
||||
|
||||
call config/boards/clean_env_variables.bat
|
||||
|
|
Loading…
Reference in New Issue