Skip to content

Commit

Permalink
user-guide/01-blueprint-reference: document kernel.name
Browse files Browse the repository at this point in the history
  • Loading branch information
schuellerf authored and ondrejbudai committed Jun 25, 2024
1 parent 9c12d82 commit 5894641
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion docs/user-guide/01-blueprint-reference.md
Original file line number Diff line number Diff line change
Expand Up @@ -292,12 +292,15 @@ This is optional and can be left out to use the default hostname.

#### Kernel Command-Line Arguments

An *optional* string that allows to append arguments to the bootloader kernel command line:
An *optional* object that contains the following attributes:
- `name` an *optional* string which kernel to use
- `append` an *optional* string to append arguments to the bootloader kernel command line

<Tabs values={tabValues} >
<TabItem value="on-premises" >
```toml
[customizations.kernel]
name = "kernel-debug"
append = "nosmt=force"
```
</TabItem>
Expand All @@ -306,6 +309,7 @@ append = "nosmt=force"
{
"customizations": {
"kernel": {
"name": "kernel-debug",
"append": "nosmt=force"
}
}
Expand Down

0 comments on commit 5894641

Please sign in to comment.