We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 796ab47 commit 1e016c4Copy full SHA for 1e016c4
build.sh
@@ -239,7 +239,7 @@ function build_qemu {
239
}
240
241
function build_odroid_h4 {
242
- DEFCONFIG="configs/config.hardkernel_odroid_h4"
+ DEFCONFIG=$1
243
FW_VERSION=$(cat ${DEFCONFIG} | grep CONFIG_LOCALVERSION | cut -d '=' -f 2 | tr -d '"')
244
245
# checkout several submodules needed by these boards (some others are checked
@@ -386,7 +386,12 @@ case "$CMD" in
386
build_qemu "_all_menus"
387
;;
388
"odroid_h4" | "odroid_H4" | "ODROID_H4" )
389
- build_odroid_h4
+ BOARD="odroid_h4"
390
+ build_odroid_h4 "configs/config.hardkernel_odroid_h4"
391
+ ;;
392
+ "odroid_h4_btg" )
393
394
+ build_odroid_h4 "configs/config.hardkernel_odroid_h4_btg"
395
396
*)
397
echo "Invalid command: \"$CMD\""
0 commit comments