File tree Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Expand file tree Collapse file tree 1 file changed +7
-2
lines changed Original file line number Diff line number Diff line change @@ -239,7 +239,7 @@ function build_qemu {
239
239
}
240
240
241
241
function build_odroid_h4 {
242
- DEFCONFIG=" configs/config.hardkernel_odroid_h4 "
242
+ DEFCONFIG=$1
243
243
FW_VERSION=$( cat ${DEFCONFIG} | grep CONFIG_LOCALVERSION | cut -d ' =' -f 2 | tr -d ' "' )
244
244
245
245
# checkout several submodules needed by these boards (some others are checked
@@ -386,7 +386,12 @@ case "$CMD" in
386
386
build_qemu " _all_menus"
387
387
;;
388
388
" odroid_h4" | " odroid_H4" | " ODROID_H4" )
389
- build_odroid_h4
389
+ BOARD=" odroid_h4"
390
+ build_odroid_h4 " configs/config.hardkernel_odroid_h4"
391
+ ;;
392
+ " odroid_h4_btg" )
393
+ BOARD=" odroid_h4"
394
+ build_odroid_h4 " configs/config.hardkernel_odroid_h4_btg"
390
395
;;
391
396
* )
392
397
echo " Invalid command: \" $CMD \" "
You can’t perform that action at this time.
0 commit comments