diff options
author | Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com> | 2019-11-05 18:15:01 +0900 |
---|---|---|
committer | Jan-Simon Moeller <jsmoeller@linuxfoundation.org> | 2019-11-19 16:19:16 +0000 |
commit | fa93ef8f77dd26be9a8debefc3f815f09d137f51 (patch) | |
tree | c97872d662e371e7c8051d4e06d8d5b89afdc6ac /templates/machine/ebisu | |
parent | 5f35f1a98cdd755969c64cd865b1248fdce4570b (diff) |
ebisu: Update setup.sh to adopt multiple zip file
Bug-AGL: SPEC-2564
Change-Id: I4462128c52b70ab6e5abcba5d89bf5b02cc79e17
Signed-off-by: Harunobu Kurokawa <harunobu.kurokawa.dn@renesas.com>
Diffstat (limited to 'templates/machine/ebisu')
-rw-r--r-- | templates/machine/ebisu/50_setup.sh | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/machine/ebisu/50_setup.sh b/templates/machine/ebisu/50_setup.sh index c8471ae07..502c22755 100644 --- a/templates/machine/ebisu/50_setup.sh +++ b/templates/machine/ebisu/50_setup.sh @@ -19,7 +19,10 @@ fi if [ -f $COPY_SCRIPT ]; then # Extract the ZIP into the tmp directory mkdir -p $EXTRACT_DIR - unzip -q -o $EBISU_BIN_PATH/*.zip -d $EXTRACT_DIR + for PROPRIETARY_BIN in `ls -1 $EBISU_BIN_PATH/*.zip` + do + unzip -q -o $PROPRIETARY_BIN -d $EXTRACT_DIR + done cd $METADIR/bsp/meta-renesas-rcar-gen3/ $COPY_SCRIPT $EXTRACT_DIR |