From 222dd077bad5c7cebb31845c1f6629ed88378620 Mon Sep 17 00:00:00 2001 From: Wen HU Date: Tue, 9 Feb 2021 19:03:06 -0500 Subject: [PATCH] use new way to get qemu-user_2.5 as the old address is not usable anymore --- .gitignore | 4 ++++ tools/setup_tools.sh | 3 +-- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index 6b8ba902f9..4e9178e349 100644 --- a/.gitignore +++ b/.gitignore @@ -3,11 +3,15 @@ third_party/d8* third_party/icu* third_party/libdex* tools/android* +tools/aosp* tools/clang* tools/gcc* tools/gn* tools/icu* +tools/libz* +tools/zlib* tools/ninja* +tools/qemu* tools/r8* tools/release* build/logs* diff --git a/tools/setup_tools.sh b/tools/setup_tools.sh index f3945849bc..5495ee2865 100755 --- a/tools/setup_tools.sh +++ b/tools/setup_tools.sh @@ -138,9 +138,8 @@ if [ ! -f $MAPLE_ROOT/tools/qemu/done ]; then cd $TOOLS echo Start wget qemu-user ... rm -rf qemu - mkdir -p qemu + git clone https://gitee.com/hu-_-wen/qemu.git cd qemu - wget http://security.ubuntu.com/ubuntu/pool/universe/q/qemu/qemu-user_2.5+dfsg-5ubuntu10.48_amd64.deb echo Install qemu-aarch64 ... # use the following to make sure only the specific version of qemu-user is isstalled # the first version sometimes insists to install the system default qemu-user. -- Gitee