diff options
author | Adrian Schmutzler <freifunk@adrianschmutzler.de> | 2019-07-25 00:51:27 +0200 |
---|---|---|
committer | Christian Lamparter <chunkeey@gmail.com> | 2019-09-29 00:46:13 +0200 |
commit | c5b4fa20fadbdc47264a9c1f76d7b9351c42e7ec (patch) | |
tree | ff926aa63e6bd2f0dafe13ad0d4ec971ee057694 /target/linux/mvebu | |
parent | 0bbfc3dff719e6f6691bd7cc5db06ece52ca131b (diff) | |
download | upstream-c5b4fa20fadbdc47264a9c1f76d7b9351c42e7ec.tar.gz upstream-c5b4fa20fadbdc47264a9c1f76d7b9351c42e7ec.tar.bz2 upstream-c5b4fa20fadbdc47264a9c1f76d7b9351c42e7ec.zip |
treewide: replace backticks by $(...) in gen_*_img.sh scripts
This replaces deprecated backticks by more versatile $(...) syntax.
Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de>
[decapitalized patch subject at submitter's request]
Signed-off-by: Christian Lamparter <chunkeey@gmail.com>
Diffstat (limited to 'target/linux/mvebu')
-rwxr-xr-x | target/linux/mvebu/image/gen_mvebu_sdcard_img.sh | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/target/linux/mvebu/image/gen_mvebu_sdcard_img.sh b/target/linux/mvebu/image/gen_mvebu_sdcard_img.sh index e0230e48b6..100a9a96e5 100755 --- a/target/linux/mvebu/image/gen_mvebu_sdcard_img.sh +++ b/target/linux/mvebu/image/gen_mvebu_sdcard_img.sh @@ -56,7 +56,7 @@ sect=63 # create real partition table using fdisk printf "Creating partition table: " -set `ptgen -o "$OUTFILE" -h $head -s $sect -l 1024 -S 0x$SIGNATURE $ptgen_args` +set $(ptgen -o "$OUTFILE" -h $head -s $sect -l 1024 -S 0x$SIGNATURE $ptgen_args) printf "Done\n" # install bootloader |