From 9630075a6506e48ed6ba090b346346bd43f2a736 Mon Sep 17 00:00:00 2001 From: Thomas Petazzoni Date: Wed, 9 Aug 2023 00:08:03 +0200 Subject: [PATCH] board/asus/tinker-s/post-build.sh: add quoting to make shellcheck happy Signed-off-by: Thomas Petazzoni --- board/asus/tinker-s/post-build.sh | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/board/asus/tinker-s/post-build.sh b/board/asus/tinker-s/post-build.sh index ffbbcdeb58..f938876625 100755 --- a/board/asus/tinker-s/post-build.sh +++ b/board/asus/tinker-s/post-build.sh @@ -1,9 +1,9 @@ #!/bin/sh MKIMAGE=$HOST_DIR/bin/mkimage -BOARD_DIR="$(dirname $0)" +BOARD_DIR="$(dirname "$0")" -$MKIMAGE -n rk3288 -T rksd -d $BINARIES_DIR/u-boot-tpl.bin $BINARIES_DIR/u-boot-tpl.img -cat $BINARIES_DIR/u-boot-tpl.img $BINARIES_DIR/u-boot-spl-dtb.bin > $BINARIES_DIR/u-boot-tpl-spl-dtb.img +$MKIMAGE -n rk3288 -T rksd -d "$BINARIES_DIR"/u-boot-tpl.bin "$BINARIES_DIR"/u-boot-tpl.img +cat "$BINARIES_DIR"/u-boot-tpl.img "$BINARIES_DIR"/u-boot-spl-dtb.bin > "$BINARIES_DIR"/u-boot-tpl-spl-dtb.img -install -m 0644 -D $BOARD_DIR/extlinux.conf $TARGET_DIR/boot/extlinux/extlinux.conf +install -m 0644 -D "$BOARD_DIR"/extlinux.conf "$TARGET_DIR"/boot/extlinux/extlinux.conf