Export PROJECT_BOARD, we need it while compiling OpenBLT with separate make call (#4146)
This commit is contained in:
parent
e2b1619e6e
commit
77e4f53758
|
@ -3,6 +3,8 @@
|
|||
echo "clean_env_variables.sh: Cleaning up so that no one inherits any of these values"
|
||||
export DEBUG_LEVEL_OPT=""
|
||||
export EXTRA_PARAMS=""
|
||||
export PROJECT_BOARD=""
|
||||
export PROJECT_CPU=""
|
||||
export USE_BOOTLOADER=""
|
||||
export VAR_DEF_ENGINE_TYPE=""
|
||||
export LED_CRITICAL_ERROR_BRAIN_PIN=""
|
||||
|
|
|
@ -1,7 +1,8 @@
|
|||
#!/bin/bash
|
||||
|
||||
PROJECT_BOARD=$1
|
||||
PROJECT_CPU=$2
|
||||
#exporting for OpenBlt Makefile
|
||||
export PROJECT_BOARD=$1
|
||||
export PROJECT_CPU=$2
|
||||
|
||||
SCRIPT_NAME="common_make.sh"
|
||||
echo "Entering $SCRIPT_NAME with board $1 and CPU $2"
|
||||
|
|
Loading…
Reference in New Issue