-
Notifications
You must be signed in to change notification settings - Fork 614
Expand file tree
/
Copy pathqemu.xml
More file actions
38 lines (38 loc) · 1.35 KB
/
qemu.xml
File metadata and controls
38 lines (38 loc) · 1.35 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
<image>
<profiles>
<profile name="QemuVM" description="Qemu Base Guest Image">
<requires profile="CoreQemuVM"/>
<requires profile="BaseVM"/>
</profile>
</profiles>
<packages type="bootstrap" patternType="plusRecommended" profiles="QemuVM">
<package name="azurelinux-release"/>
</packages>
<packages type="image" patternType="plusRecommended" profiles="QemuVM">
<package name="azurelinux-release"/>
</packages>
<preferences profiles="QemuVM" arch="x86_64">
<type image="oem" format="qcow2"
filesystem="ext4"
kernelcmdline="no_timer_check console=tty1 console=ttyS0,115200n8 systemd.firstboot=off"
devicepersistency="by-uuid"
bootpartition="false" efipartsize="100" firmware="uefi"
rootfs_label="azurelinux"
>
<bootloader name="grub2" bls="true" console="serial" timeout="0"/>
<size unit="G">5</size>
</type>
</preferences>
<preferences profiles="QemuVM" arch="aarch64">
<type image="oem" format="qcow2"
filesystem="ext4"
kernelcmdline="no_timer_check console=tty1 console=ttyAMA0,115200n8 systemd.firstboot=off"
devicepersistency="by-uuid"
bootpartition="false" efipartsize="100" firmware="uefi"
rootfs_label="azurelinux"
>
<bootloader name="grub2" bls="true" console="serial" timeout="0"/>
<size unit="G">5</size>
</type>
</preferences>
</image>