diff --git a/docs/user/autoyast/profiles.md b/docs/user/autoyast/profiles.md index 0fb3a24..10013d6 100644 --- a/docs/user/autoyast/profiles.md +++ b/docs/user/autoyast/profiles.md @@ -1,7 +1,7 @@ # Loading an AutoYaST profile The typical way of starting an unattended installation in Agama is by passing the URL of an AutoYaST -profile through the [`inst.auto`](../boot_options.md#boot-options) argument in the kernel's +profile through the [`inst.auto`](../boot_options/index.md#boot-options) argument in the kernel's command-line[^agama-profile-import]. For example: ```text diff --git a/docs/user/boot_options.md b/docs/user/boot_options/index.md similarity index 93% rename from docs/user/boot_options.md rename to docs/user/boot_options/index.md index 7e3a0d9..1ac74e6 100644 --- a/docs/user/boot_options.md +++ b/docs/user/boot_options/index.md @@ -38,6 +38,18 @@ first one can be removed anytime. inst.config_url=usb:///agama.yaml ``` +- `inst.info` + Points to info file that contains additional Agama settings. It is useful when you want to provide + more options for Agama and typing them during boot is not possible. + + ```text + agama.info=ftp://myserver/devel.info + ``` + + :::note + Supports only parameters specified on this section. Kernel parameters are ignored. + ::: + - `inst.register_url`: sets the URL of the RMT or SCC proxy server to register the product with. ```text diff --git a/docs/user/boot_options/linuxrc_compatibility.md b/docs/user/boot_options/linuxrc_compatibility.md new file mode 100644 index 0000000..bf71492 --- /dev/null +++ b/docs/user/boot_options/linuxrc_compatibility.md @@ -0,0 +1,15 @@ +--- +sidebar_position: 6 +--- + +# Linuxrc Compatibility + +Agama provides a few options to make it easier the transition from linuxrc. They are not identical and work +slightly differently, but for a regular usage they should be sufficient. +Also Agama is case sensitive and requires the exact parameter unlike linuxrc which allows +additional dots, dashes and underscores. + +## Info File Support + +Agama provides `inst.info=` option that act similarly to linuxrc `info=` option. However, it +supports only URI schemas supported by curl. Also info file can contain only agama specific options. diff --git a/docs/user/unattended/index.md b/docs/user/unattended/index.md index 7c34d97..b9979aa 100644 --- a/docs/user/unattended/index.md +++ b/docs/user/unattended/index.md @@ -109,4 +109,4 @@ sudo agama config show > profile.json To start an unattended installation process, you need to tell Agama where to find the profile. When using the Live ISO, you must use the `inst.auto` boot option. Please, check the [boot -options](../boot_options.md) for further information. +options](../boot_options/index.md) for further information.