File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -53,12 +53,12 @@ function add_to_manifest {
53
53
# We will use the optional MPCONFIG_FILE argument to determine if we should add this line
54
54
55
55
if [ -n " $MPCONFIG_FILE " ]; then
56
+ echo " Attempting to add frozen manifest line to $MPCONFIG_FILE for $BOARD "
57
+
56
58
if [[ $MPCONFIG_FILE == * .mk ]]; then
57
59
# e.g. for TEENSY which uses mpconfigboard.mk instead of mpconfigboard.cmake
58
- echo " Adding frozen manifest line to mpconfigboard.mk for $BOARD "
59
60
printf " \nFROZEN_MANIFEST ?= \$ (BOARD_DIR)/manifest.py" >> ${BOARD_DIR} /$MPCONFIG_FILE
60
61
elif [[ $MPCONFIG_FILE == * .cmake ]]; then
61
- echo " Adding frozen manifest line to mpconfigboard.cmake for $BOARD "
62
62
printf " \nset(MICROPY_FROZEN_MANIFEST \"\$ {MICROPY_BOARD_DIR}/manifest.py\" )" >> ${BOARD_DIR} /$MPCONFIG_FILE
63
63
fi
64
64
fi
@@ -73,7 +73,7 @@ function add_to_manifest {
73
73
cat ${BOARD_DIR} /manifest.py
74
74
}
75
75
76
- # Adds the frozen data filesystem to the boot .py file for the given port
76
+ # Adds the frozen data filesystem to the _boot .py file for the given port
77
77
# Options:
78
78
# $1: Port name
79
79
# $2: Frozen data file path
You can’t perform that action at this time.
0 commit comments