Skip to content

Commit

Permalink
Rockchip: Fix missing $ in release script
Browse files Browse the repository at this point in the history
  • Loading branch information
Radostan Riedel committed Nov 17, 2017
1 parent af151ab commit 19005f9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion projects/Rockchip/bootloader/release
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ mkdir -p $RELEASE_DIR/3rdparty/bootloader
fi

LINUX_DTS_DIR=$(get_build_dir linux)/arch/$TARGET_KERNEL_ARCH/boot/dts
for dtb in $LINUX_DTS_DIR/*.dtb LINUX_DTS_DIR/*/*.dtb; do
for dtb in $LINUX_DTS_DIR/*.dtb $LINUX_DTS_DIR/*/*.dtb; do
if [ -f $dtb ]; then
cp -a $dtb $RELEASE_DIR/3rdparty/bootloader
fi
Expand Down

0 comments on commit 19005f9

Please sign in to comment.