You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: lib/functions/compilation/uboot.sh
+14-2
Original file line number
Diff line number
Diff line change
@@ -203,6 +203,19 @@ function compile_uboot_target() {
203
203
return 0 # exit after this
204
204
fi
205
205
206
+
##########################################
207
+
# REAL COMPILATION SECTION STARTING HERE #
208
+
##########################################
209
+
210
+
# Collect make environment variables, similar to 'kernel-make.sh'
211
+
uboot_make_envs=(
212
+
"CFLAGS='${uboot_cflags}'"
213
+
"KCFLAGS='${uboot_cflags}'"
214
+
"CCACHE_BASEDIR=$(pwd)"
215
+
"PATH=${toolchain}:${toolchain2}:${PATH}"
216
+
"PYTHONPATH=\"${PYTHON3_INFO[MODULES_PATH]}:${PYTHONPATH}\""# Insert the pip modules downloaded by Armbian into PYTHONPATH (needed e.g. for pyelftools)
0 commit comments