nicer bundle folder structure and reducing unneeded content #833
This commit is contained in:
parent
0984cced20
commit
6652d27782
|
@ -6,9 +6,9 @@ call clean.bat
|
|||
echo "TIMESTAMP %date% %time%"
|
||||
make -j4 DEBUG_LEVEL_OPT='-O2' EXTRA_PARAMS='-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'
|
||||
|
||||
mv build\rusefi.elf deliver\rusefi_no_asserts.elf
|
||||
rem mv build\rusefi.elf deliver\rusefi_no_asserts.elf
|
||||
mv build\rusefi.bin deliver\rusefi_no_asserts.bin
|
||||
mv build\rusefi.hex deliver\rusefi_no_asserts.hex
|
||||
rem mv build\rusefi.hex deliver\rusefi_no_asserts.hex
|
||||
echo Release compilation results 1/2
|
||||
echo "TIMESTAMP %date% %time%"
|
||||
ls -l build
|
||||
|
|
|
@ -15,7 +15,7 @@ public enum FileLog {
|
|||
MAIN,
|
||||
SIMULATOR_CONSOLE;
|
||||
|
||||
public static final String DIR = "out/";
|
||||
public static final String DIR = "logs/";
|
||||
public static final String LOG_INFO_TEXT = "Writing logs to '" + DIR + "'";
|
||||
public static String currentLogName;
|
||||
public static final String END_OF_TIMESTAND_TAG = "<EOT>: ";
|
||||
|
|
|
@ -0,0 +1,18 @@
|
|||
<html>
|
||||
<body>
|
||||
<center>
|
||||
|
||||
This is rusEfi open source engine control unit bundle.
|
||||
|
||||
<br><br><br>
|
||||
<a href=https://github.com/rusefi/rusefi>Source code & links</a>
|
||||
<br><br><br>
|
||||
<a href=https://github.com/rusefi/rusefi_documentation>Documentation</a>
|
||||
|
||||
<br><br><br>
|
||||
|
||||
@author Andrey Belomutskiy, (c) 2012-2019
|
||||
|
||||
</body>
|
||||
|
||||
</html>
|
|
@ -9,15 +9,17 @@ cp java_console_binary/rusefi_console.jar %folder%
|
|||
cp simulator/build/rusefi_simulator.exe %folder%
|
||||
cp firmware/tunerstudio/rusefi.ini %folder%
|
||||
|
||||
cp misc/console_launcher/readme.html %folder%
|
||||
|
||||
cp firmware/svnversion.h %folder%
|
||||
cp -r misc/install/openocd %folder%
|
||||
cp java_console/rusefi.xml %folder%
|
||||
rem 407 has additional version of firmware
|
||||
cp firmware/deliver/rusefi_no_asserts.* %folder%
|
||||
rem 746 builds one version at the moment
|
||||
cp firmware/build/rusefi.hex %folder%
|
||||
rem probably not needed cp firmware/build/rusefi.hex %folder%
|
||||
cp firmware/build/rusefi.bin %folder%
|
||||
cp firmware/build/rusefi.elf %folder%
|
||||
rem probably not needed cp firmware/build/rusefi.elf %folder%
|
||||
cp firmware/build/rusefi.dfu %folder%
|
||||
cp misc/console_launcher/rusefi_console.exe %folder%
|
||||
|
||||
|
|
Loading…
Reference in New Issue