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
2 changes: 1 addition & 1 deletion docs/user/autoyast/profiles.md
Original file line number Diff line number Diff line change
@@ -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
Expand Down
12 changes: 12 additions & 0 deletions docs/user/boot_options.md → docs/user/boot_options/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
15 changes: 15 additions & 0 deletions docs/user/boot_options/linuxrc_compatibility.md
Original file line number Diff line number Diff line change
@@ -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.
2 changes: 1 addition & 1 deletion docs/user/unattended/index.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.