Skip to content

Commit 72e9e03

Browse files
committed
root-disks: Add Ubuntu 22.04
1 parent 30f43db commit 72e9e03

8 files changed

Lines changed: 49 additions & 0 deletions

root-disks/.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,6 +6,7 @@ ubuntu16.04-cloudimg-ppc64el.qcow2
66
ubuntu18.04-cloudimg-ppc64el.qcow2
77
ubuntu21.04-cloudimg-ppc64el.qcow2
88
ubuntu21.10-cloudimg-ppc64el.qcow2
9+
ubuntu22.04-cloudimg-ppc64el.qcow2
910
fedora34-cloudimg-ppc64le.qcow2
1011
fedora36-cloudimg-ppc64le.qcow2
1112
debian-sid-powerpc.qcow2

root-disks/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ IMAGES += ubuntu16.04-cloudimg-powerpc.qcow2
44
IMAGES += ubuntu16.04-cloudimg-ppc64el.qcow2
55
IMAGES += ubuntu21.04-cloudimg-ppc64el.qcow2
66
IMAGES += ubuntu21.10-cloudimg-ppc64el.qcow2
7+
IMAGES += ubuntu22.04-cloudimg-ppc64el.qcow2
78
IMAGES += fedora34-cloudimg-ppc64le.qcow2
89
IMAGES += fedora36-cloudimg-ppc64le.qcow2
910
IMAGES += debian-sid-powerpc.qcow2
@@ -65,6 +66,11 @@ ubuntu21.10-cloudimg-ppc64el.qcow2:
6566
chmod a-w $@
6667
sha256sum $@ > $@.sum
6768

69+
ubuntu22.04-cloudimg-ppc64el.qcow2:
70+
$(call wget_ubuntu,$@,jammy,ubuntu-22.04-server-cloudimg-ppc64el.img)
71+
chmod a-w $@
72+
sha256sum $@ > $@.sum
73+
6874
define wget_fedora
6975
$(call wget,$(1),"https://archives.fedoraproject.org/pub/archive/fedora-secondary/releases/$(2)/Cloud/ppc64le/images/$(3)")
7076
endef
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
export CPU=POWER10
4+
export ACCEL=tcg
5+
export CLOUD_IMAGE=ubuntu22.04-cloudimg-ppc64el.qcow2
6+
7+
exec "$(dirname "$0")"/qemu-powernv $@
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
export CPU=POWER9
4+
export ACCEL=tcg
5+
export CLOUD_IMAGE=ubuntu22.04-cloudimg-ppc64el.qcow2
6+
7+
exec "$(dirname "$0")"/qemu-powernv $@
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
export CPU=host
4+
export ACCEL=kvm
5+
export CLOUD_IMAGE=ubuntu22.04-cloudimg-ppc64el.qcow2
6+
7+
exec "$(dirname "$0")"/qemu-pseries $@
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
export CPU=POWER10
4+
export ACCEL=tcg
5+
export CLOUD_IMAGE=ubuntu22.04-cloudimg-ppc64el.qcow2
6+
7+
exec "$(dirname "$0")"/qemu-pseries $@
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
export CPU=POWER9
4+
export ACCEL=kvm
5+
export CLOUD_IMAGE=ubuntu22.04-cloudimg-ppc64el.qcow2
6+
7+
exec "$(dirname "$0")"/qemu-pseries $@
Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
#!/bin/bash
2+
3+
export CPU=POWER9
4+
export ACCEL=tcg
5+
export CLOUD_IMAGE=ubuntu22.04-cloudimg-ppc64el.qcow2
6+
7+
exec "$(dirname "$0")"/qemu-pseries $@

0 commit comments

Comments
 (0)