- storage/biosboot.ks: GPT disk label with a 2 MiB BIOS boot partition,
no ESP (pure legacy layout); registered as the 'biosboot' storage choice
- recipe_templates.yaml: make the desktop hypervisor a superset of the
base hypervisor so GNOME hypervisor dishes get libvirtd + virt-manager
- recipes_manifest.yaml: enable the desktop-hypervisor group targeting
Fedora 44 (gnome, biosboot, grub, security enabled, gnome initial-setup,
hardware-support, intelcpu)
- initial-setup/gnome/config.ks: apply the vendor.conf fix (truncate and
append skip=privacy / providers=local-first!) as an enabled %post
- tests: update BASE_FRAGMENTS fixture to core-explicit.ks (follow-up to
ccf4f9d)
61 lines
1.9 KiB
YAML
61 lines
1.9 KiB
YAML
# Recipe Manifest for Phyllome OS
|
|
# Define all recipe variants using ingredients from recipe_templates.yaml.
|
|
# Edit this file to add new variants, then run: make all
|
|
#
|
|
# Syntax:
|
|
# - Single values: repository: "43"
|
|
# - List values: repository: ["43", "44", "rawhide"] (expands to multiple variants)
|
|
# - Booleans: hardware-support: true / false (feature flags)
|
|
#
|
|
# NOTE: List values create a cartesian product.
|
|
# Example: repository: ["43", "44", "rawhide"] + storage: ["standard", "encrypted"]
|
|
# creates 6 variants: (43,standard), (43,encrypted), (44,standard), (44,encrypted),
|
|
# (rawhide,standard), (rawhide,encrypted)
|
|
#
|
|
# NOTE: The 'name' field prefixes every generated dish/recipe filename, e.g.
|
|
# the group below yields dishes like desktop_43_gnome_standard_grub_guest-agents.cfg.
|
|
|
|
recipes:
|
|
# Desktop variants
|
|
- name: desktop
|
|
variants:
|
|
- repository: ["43", "44", "rawhide"]
|
|
desktop: gnome
|
|
storage: ["standard", "encrypted"]
|
|
bootloader: ["grub", "systemd-boot"]
|
|
hardware-support: [true, false]
|
|
guest-agents: [true, false]
|
|
|
|
# Server variants
|
|
- name: server
|
|
variants:
|
|
- repository: ["44"]
|
|
storage: standard
|
|
bootloader: systemd-boot
|
|
hardware-support: false
|
|
guest-agents: true
|
|
initial-setup: server
|
|
|
|
# Hypervisor variants
|
|
- name: hypervisor
|
|
variants:
|
|
- repository: ["44"]
|
|
storage: standard
|
|
bootloader: systemd-boot
|
|
hardware-support: true
|
|
guest-agents: false
|
|
hypervisor: base
|
|
hypervisor_type: intelcpu
|
|
# Desktop-hypervisor variants
|
|
- name: desktop-hypervisor
|
|
variants:
|
|
- repository: "44"
|
|
desktop: gnome
|
|
storage: biosboot
|
|
bootloader: grub
|
|
security: enabled
|
|
initial-setup: gnome
|
|
hardware-support: true
|
|
guest-agents: false
|
|
hypervisor: desktop
|
|
hypervisor_type: intelcpu |