From ea0918e5e85eee647c8e3cf4aa6fb9a10b3358aa Mon Sep 17 00:00:00 2001 From: Henry Wang Date: Fri, 9 Jul 2021 00:10:06 -0400 Subject: [PATCH] docs, scripts: Use upstream edk2 for AArch64 The edk2 upstream has already suppoorted AArch64 Cloud Hypervisor, and hence we can use upstream edk2 in CI and doc. Signed-off-by: Henry Wang --- docs/arm64.md | 2 +- scripts/run_integration_tests_aarch64.sh | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/docs/arm64.md b/docs/arm64.md index 6243908e2..42c26bc0f 100644 --- a/docs/arm64.md +++ b/docs/arm64.md @@ -60,7 +60,7 @@ This part introduces how to build EDK2 firmware and boot Cloud Hypervisor with i $ pushd $CLOUDH # Clone source code repos -$ git clone --depth 1 https://github.com/cloud-hypervisor/edk2.git -b ch-aarch64 +$ git clone --depth 1 https://github.com/tianocore/edk2.git -b master $ cd edk2 $ git submodule update --init $ cd .. diff --git a/scripts/run_integration_tests_aarch64.sh b/scripts/run_integration_tests_aarch64.sh index 77d4f829a..a7f776ab7 100755 --- a/scripts/run_integration_tests_aarch64.sh +++ b/scripts/run_integration_tests_aarch64.sh @@ -13,9 +13,9 @@ EDK2_BUILD_DIR="$WORKLOADS_DIR/edk2_build" mkdir -p "$WORKLOADS_DIR" build_edk2() { - EDK2_REPO="https://github.com/cloud-hypervisor/edk2.git" + EDK2_REPO="https://github.com/tianocore/edk2.git" EDK2_DIR="edk2" - EDK2_BRANCH="ch-aarch64" + EDK2_BRANCH="master" EDK2_PLAT_REPO="https://github.com/tianocore/edk2-platforms.git" EDK2_PLAT_DIR="edk2-platforms" ACPICA_REPO="https://github.com/acpica/acpica.git"