From 534f437d0c350658f3541481ce7198378f00dc90 Mon Sep 17 00:00:00 2001 From: "Brian C. Lane" Date: Thu, 19 Dec 2019 11:35:56 -0800 Subject: [PATCH] docs: Add documentation for new mkksiso --volid feature --- docs/mkksiso.rst | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/mkksiso.rst b/docs/mkksiso.rst index 05ad21d3..ad486002 100644 --- a/docs/mkksiso.rst +++ b/docs/mkksiso.rst @@ -30,6 +30,8 @@ Optional arguments -c CMDLINE, --cmdline CMDLINE Arguments to add to kernel cmdline --debug print debugging info + -V VOLID, --volid VOLID + Set the ISO volume id, defaults to input's Positional arguments ^^^^^^^^^^^^^^^^^^^^ @@ -57,6 +59,12 @@ kernel cmdline will have ``inst.ks=...`` added to it so that it will be executed when the iso is booted (be careful not to boot on a system you don't want to wipe out! There will be no prompting). +By default the volume id of the iso is preserved. You can set a custom volid +by passing ``-V`` and the string to set. The kernel cmdline will be changes, and the iso will have th custom volume id. +eg.:: + + mkksiso -V "Test Only" /PATH/TO/KICKSTART /PATH/TO/ISO /PATH/TO/NEW-ISO + Adding package repos to a boot.iso ----------------------------------