[RCAR] Fix renesas bsp path in ebisu script 59/24959/5
authorRonan Le Martret <ronan.lemartret@iot.bzh>
Thu, 9 Jul 2020 13:00:24 +0000 (15:00 +0200)
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>
Fri, 10 Jul 2020 11:23:43 +0000 (11:23 +0000)
Bug-AGL: SPEC-3443

Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Change-Id: Ief197eaba04e8c5993c050a77e76a504cc7c3b16
Signed-off-by: Ronan Le Martret <ronan.lemartret@iot.bzh>
Reviewed-on: https://gerrit.automotivelinux.org/gerrit/c/AGL/meta-agl/+/24959
Reviewed-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
Tested-by: Jan-Simon Moeller <jsmoeller@linuxfoundation.org>
templates/machine/ebisu/50_setup.sh

index b51d10a..188da6e 100644 (file)
@@ -1,7 +1,7 @@
 # setup proprietary gfx drivers and multimedia packages
 pushd $METADIR 2>/dev/null
 
-COPY_SCRIPT="$METADIR/bsp/meta-rcar-gen3/meta-rcar-gen3/docs/sample/copyscript/copy_proprietary_softwares.sh"
+COPY_SCRIPT="$METADIR/bsp/meta-renesas/meta-rcar-gen3/docs/sample/copyscript/copy_proprietary_softwares.sh"
 EXTRACT_DIR=$METADIR/binary-tmp
 #EBISU_BIN_PATH should contain the path where the .zip archive of E3 binaries is.
 #CUSTOM_RENESAS_CONFIG_SCRIPT should contain the custom script needed for setup. If not filled, do not failed, just warn.
@@ -24,7 +24,7 @@ if [ -f $COPY_SCRIPT ]; then
                unzip -q -o $PROPRIETARY_BIN -d $EXTRACT_DIR
        done
 
-       cd $METADIR/bsp/meta-rcar-gen3/
+       cd $METADIR/bsp/meta-renesas/
        $COPY_SCRIPT $EXTRACT_DIR
        cd ..