dfcf0ea0eb
* Debug apps moved into its own menu category, APP_DEBUG flag added * Menu power icon added * Added APP_DEBUG flag to flash_core1 bash script * Removed commented section in app-loader Co-authored-by: あく <alleteam@gmail.com>
10 lines
177 B
Bash
Executable File
10 lines
177 B
Bash
Executable File
#!/bin/bash
|
|
|
|
set -x -e
|
|
|
|
rm bootloader/.obj/f*/flash || true
|
|
make -C bootloader -j9 flash
|
|
|
|
rm firmware/.obj/f*/flash || true
|
|
make -C firmware -j9 APP_RELEASE=1 APP_DEBUG=1 flash
|