diff options
| author | 2024-02-24 14:40:59 -0500 | |
|---|---|---|
| committer | 2024-02-24 14:57:26 -0500 | |
| commit | 3ac0ae9240ca8ba0bbbe6bbdcd38a47dfd3fddc7 (patch) | |
| tree | a491d6a81a7da488e48d963155359b7db0382def /teams | |
| parent | ce013b2c21973f368499b97de9e7e9d255c2c03e (diff) | |
| download | kiwi-descriptions-3ac0ae9240ca8ba0bbbe6bbdcd38a47dfd3fddc7.tar.gz kiwi-descriptions-3ac0ae9240ca8ba0bbbe6bbdcd38a47dfd3fddc7.zip | |
teams/cloud: Define compatible architectures for existing profiles
Most of the Fedora Cloud-owned profiles are limited to a subset of
architectures, generally x86_64 and aarch64 (with the exception of
the VirtualBox Vagrant image, which is x86_64 only).
Diffstat (limited to 'teams')
| -rw-r--r-- | teams/cloud/cloud.xml | 10 | ||||
| -rw-r--r-- | teams/cloud/vagrant.xml | 4 |
2 files changed, 7 insertions, 7 deletions
diff --git a/teams/cloud/cloud.xml b/teams/cloud/cloud.xml index d2c00a0..195607d 100644 --- a/teams/cloud/cloud.xml +++ b/teams/cloud/cloud.xml @@ -28,7 +28,7 @@ <requires profile="Cloud-Base-Generic"/> </profile> </profiles> - <preferences profiles="Cloud-Base-Azure"> + <preferences profiles="Cloud-Base-Azure" arch="x86_64,aarch64"> <type image="oem" format="vhd-fixed" formatoptions="force_size" filesystem="btrfs" btrfs_root_is_subvolume="true" btrfs_set_default_volume="false" fsmountoptions="compress=zstd:1" kernelcmdline="no_timer_check net.ifnames=0 console=tty1 console=ttyS0,115200n8 earlyprintk=ttyS0" @@ -48,7 +48,7 @@ </oemconfig> </type> </preferences> - <preferences profiles="Cloud-Base-AmazonEC2"> + <preferences profiles="Cloud-Base-AmazonEC2" arch="x86_64,aarch64"> <type image="oem" filesystem="btrfs" btrfs_root_is_subvolume="true" btrfs_set_default_volume="false" fsmountoptions="compress=zstd:1" kernelcmdline="no_timer_check net.ifnames=0 console=tty1 console=ttyS0,115200n8" @@ -68,7 +68,7 @@ </oemconfig> </type> </preferences> - <preferences profiles="Cloud-Base-GCE"> + <preferences profiles="Cloud-Base-GCE" arch="x86_64,aarch64"> <type image="oem" format="gce" filesystem="btrfs" btrfs_root_is_subvolume="true" btrfs_set_default_volume="false" fsmountoptions="compress=zstd:1" kernelcmdline="no_timer_check net.ifnames=0 console=ttyS0,38400n8d" @@ -88,7 +88,7 @@ </oemconfig> </type> </preferences> - <preferences profiles="Cloud-Base-Generic"> + <preferences profiles="Cloud-Base-Generic" arch="x86_64,aarch64"> <type image="oem" format="qcow2" filesystem="btrfs" btrfs_root_is_subvolume="true" btrfs_set_default_volume="false" fsmountoptions="compress=zstd:1" kernelcmdline="no_timer_check net.ifnames=0 console=tty1 console=ttyS0,115200n8" @@ -108,7 +108,7 @@ </oemconfig> </type> </preferences> - <preferences profiles="Cloud-Base-UEFI-UKI"> + <preferences profiles="Cloud-Base-UEFI-UKI" arch="x86_64,aarch64"> <type image="oem" format="qcow2" firmware="uefi" efipartsize="1000" bootpartition="false" diff --git a/teams/cloud/vagrant.xml b/teams/cloud/vagrant.xml index 84d1ad7..68789c5 100644 --- a/teams/cloud/vagrant.xml +++ b/teams/cloud/vagrant.xml @@ -10,7 +10,7 @@ <requires profile="VagrantCore"/> </profile> </profiles> - <preferences profiles="Cloud-Base-Vagrant-libvirt"> + <preferences profiles="Cloud-Base-Vagrant-libvirt" arch="x86_64,aarch64"> <type image="oem" format="vagrant" filesystem="btrfs" btrfs_root_is_subvolume="true" btrfs_set_default_volume="false" fsmountoptions="compress=zstd:1" kernelcmdline="no_timer_check console=tty1 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0" @@ -31,7 +31,7 @@ </oemconfig> </type> </preferences> - <preferences profiles="Cloud-Base-Vagrant-VirtualBox"> + <preferences profiles="Cloud-Base-Vagrant-VirtualBox" arch="x86_64"> <type image="oem" format="vagrant" filesystem="btrfs" btrfs_root_is_subvolume="true" btrfs_set_default_volume="false" fsmountoptions="compress=zstd:1" kernelcmdline="no_timer_check console=tty1 console=ttyS0,115200n8 net.ifnames=0 biosdevname=0" |