platforms/minimal: Flesh out and document Minimal variant

This commit is contained in:
Neal Gompa 2022-12-24 11:08:35 -05:00
parent d569746e81
commit c1452f1407
2 changed files with 6 additions and 2 deletions

View File

@ -6,6 +6,7 @@ This repository has multiple branches, one for each supported Fedora release. Th
## Spin variants ## Spin variants
* Minimal (image type: `oem`, image profiles: `Minimal`)
* Server (image type: `oem`, image profiles: `Server`) * Server (image type: `oem`, image profiles: `Server`)
* Workstation GNOME (image type: `oem`, image profiles: `Workstation-GNOME`) * Workstation GNOME (image type: `oem`, image profiles: `Workstation-GNOME`)
* Workstation KDE (image type: `oem`, image profiles: `Workstation-KDE`) * Workstation KDE (image type: `oem`, image profiles: `Workstation-KDE`)

View File

@ -1,11 +1,11 @@
<image> <image>
<profiles> <profiles>
<profile name="minimal" description="Minimal Environment"> <profile name="Minimal" description="Minimal Environment">
<requires profile="BootCore"/> <requires profile="BootCore"/>
<requires profile="Common"/> <requires profile="Common"/>
</profile> </profile>
</profiles> </profiles>
<preferences profiles="minimal"> <preferences profiles="Minimal">
<type image="oem" filesystem="btrfs" kernelcmdline="scsi_mod.use_blk_mq=1 multipath=off" target_blocksize="4096" bootpartition="true" bootpartsize="1000" bootfilesystem="ext4" efipartsize="500" firmware="uefi" fsmountoptions="x-systemd.growfs,compress=zstd:1"> <type image="oem" filesystem="btrfs" kernelcmdline="scsi_mod.use_blk_mq=1 multipath=off" target_blocksize="4096" bootpartition="true" bootpartsize="1000" bootfilesystem="ext4" efipartsize="500" firmware="uefi" fsmountoptions="x-systemd.growfs,compress=zstd:1">
<bootloader name="grub2" console="console" timeout="5" timeout_style="hidden"/> <bootloader name="grub2" console="console" timeout="5" timeout_style="hidden"/>
<systemdisk name="fedora"> <systemdisk name="fedora">
@ -17,4 +17,7 @@
</oemconfig> </oemconfig>
</type> </type>
</preferences> </preferences>
<packages type="image" patternType="plusRecommended" profiles="Minimal">
<package name="fedora-release"/>
</packages>
</image> </image>