From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from gandalf.ozlabs.org (gandalf.ozlabs.org [150.107.74.76]) by passt.top (Postfix) with ESMTPS id BF4F55A005E for ; Tue, 14 Feb 2023 00:37:27 +0100 (CET) Received: by gandalf.ozlabs.org (Postfix, from userid 1007) id 4PG135642mz4x5Z; Tue, 14 Feb 2023 10:37:21 +1100 (AEDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gibson.dropbear.id.au; s=201602; t=1676331441; bh=aU8V/AJ+iWHT3ASyhoOzw1/Zkaqny5IAYa+sQK1VeO4=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=NNYfbLyjS+ypMrkU0yvWY+j0RbcWmaFM/0AJIfN/NBFdNOVs31ued+N19Xzx5d+uX IITZP5XIFIxwWX1Onv4VuqNyGG6OLNlcpXUPnm+QeHckK71C32lpbtkW99Idxydyh3 Tq/SV0LJg3DOMkQXL+F4IsbXuX/diZMB1+MBBxyI= From: David Gibson To: passt-dev@passt.top, Stefano Brivio Subject: [PATCH 1/2] test: Update location for Debian ppc64 images Date: Tue, 14 Feb 2023 10:37:12 +1100 Message-Id: <20230213233713.748675-2-david@gibson.dropbear.id.au> X-Mailer: git-send-email 2.39.1 In-Reply-To: <20230213233713.748675-1-david@gibson.dropbear.id.au> References: <20230213233713.748675-1-david@gibson.dropbear.id.au> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Message-ID-Hash: JGWB5C52ZQ77BLTFKL7QDF23MXIE2WEW X-Message-ID-Hash: JGWB5C52ZQ77BLTFKL7QDF23MXIE2WEW X-MailFrom: dgibson@gandalf.ozlabs.org X-Mailman-Rule-Misses: dmarc-mitigation; no-senders; approved; emergency; loop; banned-address; member-moderation; nonmember-moderation; administrivia; implicit-dest; max-recipients; max-size; news-moderation; no-subject; digests; suspicious-header CC: David Gibson X-Mailman-Version: 3.3.3 Precedence: list List-Id: Development discussion and patches for passt Archived-At: Archived-At: List-Archive: List-Archive: List-Help: List-Owner: List-Post: List-Subscribe: List-Unsubscribe: The current debian cloud images no longer include ppc64. Change to using the latest snapshot which does include ppc64. Signed-off-by: David Gibson --- test/Makefile | 5 ++++- test/distro/debian | 2 +- 2 files changed, 5 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 9f2bc42..2d170eb 100644 --- a/test/Makefile +++ b/test/Makefile @@ -11,7 +11,7 @@ DEBIAN_IMGS = debian-8.11.0-openstack-amd64.qcow2 \ debian-9-nocloud-amd64-daily-20200210-166.qcow2 \ debian-10-nocloud-amd64.qcow2 \ debian-10-generic-arm64.qcow2 \ - debian-10-generic-ppc64el.qcow2 \ + debian-10-generic-ppc64el-20220911-1135.qcow2 \ debian-11-nocloud-amd64.qcow2 \ debian-11-generic-arm64.qcow2 \ debian-11-generic-ppc64el.qcow2 \ @@ -127,6 +127,9 @@ debian-9-nocloud-%-daily-20200210-166.qcow2: debian-10-nocloud-%.qcow2: $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/latest/debian-10-nocloud-$*.qcow2 +debian-10-generic-ppc64el-20220911-1135.qcow2: + $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/20220911-1135/debian-10-generic-ppc64el-20220911-1135.qcow2 + debian-10-generic-%.qcow2: $(WGET) -O $@ https://cloud.debian.org/images/cloud/buster/latest/debian-10-generic-$*.qcow2 diff --git a/test/distro/debian b/test/distro/debian index 5633c22..08cfe05 100644 --- a/test/distro/debian +++ b/test/distro/debian @@ -118,7 +118,7 @@ sleep 1 test Debian GNU/Linux 10 (buster, oldstable), ppc64le -host qemu-system-ppc64 -m 2048 -smp 2 -nographic -serial stdio -nodefaults -no-reboot -nographic -vga none __BASEPATH__/prepared-debian-10-generic-ppc64el.qcow2 -device virtio-net-pci,netdev=s0 -netdev stream,id=s0,server=off,addr.type=unix,addr.path=__STATEDIR__/passt.socket -snapshot +host qemu-system-ppc64 -m 2048 -smp 2 -nographic -serial stdio -nodefaults -no-reboot -nographic -vga none __BASEPATH__/prepared-debian-10-generic-ppc64el-20220911-1135.qcow2 -device virtio-net-pci,netdev=s0 -netdev stream,id=s0,server=off,addr.type=unix,addr.path=__STATEDIR__/passt.socket -snapshot host PS1='$ ' sleep 2 host apt-get update -- 2.39.1