Add new fws-hw-detect script that detects hypervisor type and GPU hardware, outputting either machine-readable environment variables for kickstart processing or human-readable French text summary for live environment.
The script serves as the single source of truth for hardware detection, consumed by:
- Live environment display via zenity before installation starts
- Anaconda %post chroot to apply appropriate guest tools and GPU drivers
Supported hypervisors: VMware, VirtualBox, QEMU/KVM, and physical machines
Supported GPUs: NVIDIA, AMD, Intel, and VMware/VirtualBox virtual graphics
No hard dependencies; gracefully degrades when lspci and ip are unavailable.
- Add kernel copy step in %pre to ensure vmlinuz-linux is available for mkinitcpio
- Refactor xinitrc post-install log detection to use /tmp/fws-post-chroot.log copied by kickstart
- Add success detection based on mkinitcpio and grub-install log markers
- Display success screen and poweroff on successful installation, show debug logs on failure
- Add load_policy and setstatus stub scripts to suppress SELinux-related Anaconda warnings
- Force MBR partition table (--disklabel=msdos) for BIOS boot compatibility
- Create standard mkinitcpio preset to replace archiso-specific configuration
- Automatically inject lvm2 hook when root is on LVM
- Fix GRUB installation to properly extract disk path from lsblk output
- Downgrade version to 0.5.3 (development/testing release)