diff options
author | Adrian Freihofer <adrian.freihofer@gmail.com> | 2022-10-21 14:01:19 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-10-28 15:48:03 +0100 |
commit | 67a48d05cf5b139e005a5c3b71f04548771e309e (patch) | |
tree | abd7bf78f5395a72fa913c92008087742aa8d66d /documentation | |
parent | 5c86008856aa64928e76a8430ad519f5362edbd7 (diff) | |
download | poky-67a48d05cf5b139e005a5c3b71f04548771e309e.tar.gz |
ref-manual: add wic command bootloader ptable option
Reordering the bootloader command options alphabetically
(From yocto-docs rev: 9d43fcf8ba023be1350ed2b26482d2d5e44cf0cb)
Signed-off-by: Adrian Freihofer <adrian.freihofer@siemens.com>
Signed-off-by: Michael Opdenacker <michael.opdenacker@bootlin.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'documentation')
-rw-r--r-- | documentation/ref-manual/kickstart.rst | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/documentation/ref-manual/kickstart.rst b/documentation/ref-manual/kickstart.rst index d82da0ee75..48bba58995 100644 --- a/documentation/ref-manual/kickstart.rst +++ b/documentation/ref-manual/kickstart.rst | |||
@@ -211,15 +211,10 @@ supports the following options: | |||
211 | .. note:: | 211 | .. note:: |
212 | 212 | ||
213 | Bootloader functionality and boot partitions are implemented by the | 213 | Bootloader functionality and boot partitions are implemented by the |
214 | various | 214 | various source plugins that implement bootloader functionality. The bootloader |
215 | --source | ||
216 | plugins that implement bootloader functionality. The bootloader | ||
217 | command essentially provides a means of modifying bootloader | 215 | command essentially provides a means of modifying bootloader |
218 | configuration. | 216 | configuration. |
219 | 217 | ||
220 | - ``--timeout``: Specifies the number of seconds before the | ||
221 | bootloader times out and boots the default option. | ||
222 | |||
223 | - ``--append``: Specifies kernel parameters. These parameters will be | 218 | - ``--append``: Specifies kernel parameters. These parameters will be |
224 | added to the syslinux :term:`APPEND` or ``grub`` kernel command line. | 219 | added to the syslinux :term:`APPEND` or ``grub`` kernel command line. |
225 | 220 | ||
@@ -227,3 +222,13 @@ supports the following options: | |||
227 | the bootloader. You can provide a full pathname for the file or a | 222 | the bootloader. You can provide a full pathname for the file or a |
228 | file located in the ``canned-wks`` folder. This option overrides | 223 | file located in the ``canned-wks`` folder. This option overrides |
229 | all other bootloader options. | 224 | all other bootloader options. |
225 | |||
226 | - ``--ptable``: Specifies the partition table format. Valid values are: | ||
227 | |||
228 | - ``msdos`` | ||
229 | |||
230 | - ``gpt`` | ||
231 | |||
232 | - ``--timeout``: Specifies the number of seconds before the | ||
233 | bootloader times out and boots the default option. | ||
234 | |||