Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion rust/agama-autoinstall/src/auto_loader.rs
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
6 changes: 6 additions & 0 deletions rust/package/agama.changes
Original file line number Diff line number Diff line change
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Tue Apr 14 13:51:47 UTC 2026 - Ladislav Slezák <lslezak@suse.com>

- 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 <igonzalezsosa@suse.com>

Expand Down
Loading