kernel-install: refresh page (#22414)

Co-authored-by: Lena Pastwa <lena@lnps.me>
Co-authored-by: Ivan Baluta <ivanbaluta.dev@gmail.com>
This commit is contained in:
Managor
2026-05-15 14:43:54 +07:00
committed by GitHub
co-authored by Lena Pastwa Ivan Baluta
parent e379e4c61e
commit 20bafce32a
+14 -6
View File
@@ -3,14 +3,22 @@
> Add and remove kernel and initrd images to and from `/boot`.
> More information: <https://www.freedesktop.org/software/systemd/man/latest/kernel-install.html>.
- Add kernel and initramfs images to bootloader partition:
- Show the current kernel configuration that has been configured or auto-detected:
`sudo kernel-install add {{kernel-version}} {{kernel-image}} {{path/to/initrd-file ...}}`
`kernel-install`
- Remove kernel from the bootloader partition:
- Show the configuration for a specific kernel image:
`sudo kernel-install remove {{kernel-version}}`
`kernel-install inspect {{path/to/kernel_image}}`
- Show various paths and parameters that have been configured or auto-detected:
- Add a kernel to the bootloader partition:
`sudo kernel-install inspect {{kernel-image}}`
`sudo kernel-install add {{kernel_version}} {{path/to/kernel_image}}`
- Add a kernel and initramfs images to the bootloader partition:
`sudo kernel-install add {{kernel_version}} {{path/to/kernel_image}} {{path/to/initrd1 path/to/initrd2 ...}}`
- Remove a kernel from the bootloader partition:
`sudo kernel-install remove {{kernel_version}}`