diff --git a/rust/agama-autoinstall/src/auto_loader.rs b/rust/agama-autoinstall/src/auto_loader.rs index bfd2ea1f45..4d2d9f1d77 100644 --- a/rust/agama-autoinstall/src/auto_loader.rs +++ b/rust/agama-autoinstall/src/auto_loader.rs @@ -23,10 +23,16 @@ use agama_lib::http::BaseHTTPClient; use anyhow::anyhow; /// List of pre-defined locations for profiles. -const PREDEFINED_LOCATIONS: [&str; 6] = [ +const PREDEFINED_LOCATIONS: [&str; 9] = [ + // OEM drive (pre-installed systems) "label://OEMDRV/autoinst.jsonnet", "label://OEMDRV/autoinst.json", "label://OEMDRV/autoinst.xml", + // root of the installation medium + "file:///run/initramfs/live/autoinst.jsonnet", + "file:///run/initramfs/live/autoinst.json", + "file:///run/initramfs/live/autoinst.xml", + // root filesystem (squashfs image) "file:///autoinst.jsonnet", "file:///autoinst.json", "file:///autoinst.xml", diff --git a/rust/package/agama.changes b/rust/package/agama.changes index c37f2f92f2..f7d3517249 100644 --- a/rust/package/agama.changes +++ b/rust/package/agama.changes @@ -1,3 +1,9 @@ +------------------------------------------------------------------- +Tue Apr 14 13:51:47 UTC 2026 - Ladislav Slezák + +- Automatically try loading the autoinstallation profile from the + root of the installation medium (jsc#PED-16010) + ------------------------------------------------------------------- Fri Apr 10 06:21:35 UTC 2026 - Imobach Gonzalez Sosa