Skip to content
Snippets Groups Projects

openharmony-tools: Add images and configuration to run qemuarma7

Merged Esben Haabendal requested to merge openharmony-tools-qemu into kirkstone
All threads resolved!
2 files
+ 38
0
Compare changes
  • Side-by-side
  • Inline
Files
2
#! /bin/sh
# SPDX-FileCopyrightText: Huawei Inc.
#
# SPDX-License-Identifier: Apache-2.0
echo -n "Fixing qemuboot.conf files..."
sdkpath="${1:?}"
sdkpath_build="${2:?}"
for f in $sdkpath/images/*/*qemuboot.conf ; do
sed -i $f -e "s|@SDKPATH@|$sdkpath|"
done
echo "done"
Loading