Added alternative floppy boot command syntax

The vmware-iso example configuration to load a Kickstart configuration file off of a mounted floppy image is not valid for recent versions of Linux including RHEL7.  The version of Anaconda used no longer supports ks=floppy.

This commit adds an alternative syntax that users can use with more recent version of Linux to source a Kickstart file from a mounted floppy image.
This commit is contained in:
Greg Baker 2015-11-10 15:46:15 -06:00
parent 0660c703ad
commit 424edc8253
1 changed files with 16 additions and 0 deletions

View File

@ -421,3 +421,19 @@ file by attaching a floppy disk. An example below, based on RHEL:
]
}
```
It's also worth noting that `ks=floppy` has been deprecated in the latest versions of Anaconda. Later versions of Linux may require a different syntax to source a kickstart file from a mounted floppy image.
``` {.javascript}
{
"builders": [
{
"type":"vmware-iso",
"floppy_files": [
"folder/ks.cfg"
],
"boot_command": "<tab> inst.text inst.ks=hd:fd0:/ks.cfg <enter><wait>"
}
]
}
```