Skip to content

Commit

Permalink
Update config.ign example to 3.3.0 (#376)
Browse files Browse the repository at this point in the history
* Update config.ign to 3.3.0

* Using 'kernelArguments' instead of /oem/grub.cfg

---------

Co-authored-by: cringdahl <[email protected]>
  • Loading branch information
cringdahl and cringdahl authored Jan 3, 2025
1 parent 28538fe commit 0a0a17a
Showing 1 changed file with 10 additions and 32 deletions.
42 changes: 10 additions & 32 deletions content/docs/latest/installing/bare-metal/raspberry-pi.md
Original file line number Diff line number Diff line change
Expand Up @@ -124,14 +124,16 @@ The options that we will be using with the scripts are:
```json
{
"ignition": {
"config": {},
"security": {
"tls": {}
},
"timeouts": {},
"version": "2.3.0"
"version": "3.4.0"
},
"networkd": {},
"kernelArguments": {
"shouldExist": [
"console=ttyAMA0,115200n8",
"console=tty1",
"flatcar.autologin",
"usbcore.autosuspend=-1"
]
}
"passwd": {
"users": [
{
Expand All @@ -141,31 +143,7 @@ The options that we will be using with the scripts are:
]
}
]
},
"storage": {
"files": [
{
"filesystem": "OEM",
"path": "/grub.cfg",
"append": true,
"contents": {
"source": "data:,set%20linux_console%3D%22console%3DttyAMA0%2C115200n8%20console%3Dtty1%22%0Aset%20linux_append%3D%22flatcar.autologin%20usbcore.autosuspend%3D-1%22%0A",
"verification": {}
},
"mode": 420
}
],
"filesystems": [
{
"mount": {
"device": "/dev/disk/by-label/OEM",
"format": "btrfs"
},
"name": "OEM"
}
]
},
"systemd": {}
}
}
```

Expand Down

0 comments on commit 0a0a17a

Please sign in to comment.