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-26 17:18:35 +0000 |
commit | cc3240bf5c41c942ec866ea3fe600761b2865fb7 (patch) | |
tree | 0176b0a55cb638ac45dcbca7ea9fb97ed1767f97 /templates | |
parent | 79fd8bc6035a354e32bb4db83c574f385a433e46 (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')
-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 |