mirror of
https://github.com/anklimov/lighthub
synced 2025-12-06 11:49:51 +03:00
9 lines
274 B
Bash
Executable File
9 lines
274 B
Bash
Executable File
#! /bin/bash
|
|
export FLAGS="$FLAGS -DCONTROLLINO"
|
|
export FLAGS="$FLAGS -DCUSTOM_FIRMWARE_MAC=de:ad:be:ef:fe:07"
|
|
CUSTOM_BUILD_FLAGS_FILE=custom-build-flags/build_flags_controllino.sh
|
|
if [ -f $CUSTOM_BUILD_FLAGS_FILE ]; then
|
|
source $CUSTOM_BUILD_FLAGS_FILE
|
|
fi
|
|
echo $FLAGS
|