brcm2708: platform.sh: fix tar directory directive
authorAlexandru Ardelean <ardeleanalex@gmail.com>
Mon, 25 Jun 2018 12:03:04 +0000 (15:03 +0300)
committerHauke Mehrtens <hauke@hauke-m.de>
Sat, 7 Jul 2018 16:19:39 +0000 (18:19 +0200)
BusyBox's `tar` command does not support the `--directory` directive, which
is essentially `-C` in short-form option.
BusyBox's `tar` command supports `-C`.

Signed-off-by: Alexandru Ardelean <ardeleanalex@gmail.com>
target/linux/brcm2708/base-files/lib/upgrade/platform.sh

index b9cd8d282fe2c521f9f64d98e06caabd6a30b4c2..f01df3b025d8262dbffa72824688795eeef17f6c 100644 (file)
@@ -97,7 +97,7 @@ platform_copy_config() {
                mkdir -p /boot
                [ -f /boot/kernel.img ] || mount -t vfat -o rw,noatime "/dev/$partdev" /boot
                cp -af "$CONF_TAR" /boot/
-               tar --directory / -xvf "$CONF_TAR" boot/config.txt
+               tar -C / -xvf "$CONF_TAR" boot/config.txt
                sync
                unmount /boot
        fi