summaryrefslogtreecommitdiffstats
path: root/templates/machine
diff options
context:
space:
mode:
authorHarunobu Kurokawa <harunobu.kurokawa.dn@renesas.com>2019-11-05 18:15:01 +0900
committerJan-Simon Moeller <jsmoeller@linuxfoundation.org>2019-11-19 16:19:16 +0000
commitfa93ef8f77dd26be9a8debefc3f815f09d137f51 (patch)
treec97872d662e371e7c8051d4e06d8d5b89afdc6ac /templates/machine
parent5f35f1a98cdd755969c64cd865b1248fdce4570b (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')
-rw-r--r--templates/machine/ebisu/50_setup.sh5
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
181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288