summaryrefslogtreecommitdiff
path: root/morphlib/exts/virtualbox-ssh.write.help
Commit message (Collapse)AuthorAgeFilesLines
* Add copyright headers to write.help and configure.help filesPete Fotheringham2015-03-051-0/+14
|
* Document KERNEL_ARGS write extension parameterPete Fotheringham2014-12-151-0/+9
|
* Document BOOTLOADER_INSTALL and BOOTLOADER_CONFIG_FORMAT write extension ↵Pete Fotheringham2014-12-151-0/+16
| | | | parameters
* Document DTB_PATH write extension parameterPete Fotheringham2014-12-151-0/+5
|
* Fix line lengths to be shorter than 80 columnsPedro Alvarez2014-12-011-17/+22
|
* Merge branch 'pf-document-extensions'Pete Fotheringham2014-12-011-3/+85
|\ | | | | | | Reviewed-by: Richard Maw
| * Action review commentsPete Fotheringham2014-12-011-6/+5
| | | | | | | | | | - Document different ways of calling parameters - Allowed values for boolean parameters
| * More complete help documentationPete Fotheringham2014-11-281-3/+84
|/
* Add initramfs support to write extensions that produce disksRichard Maw2014-06-021-0/+4
If INITRAMFS_PATH is specified and the file exists, then the produced kernel command line will use root=UUID=$uuid_of_created_disk rather than root=/dev/sda, which may be incorrect. Help files have been updated to mention the new option. This leads to an unfortunate duplication of the path to the initramfs, in both the location field of the nested deployment and the INITRAMFS_PATH of the disk image creation. However, an initramfs could be produced by a chunk and put in the same place, so it doesn't make sense to couple the rawdisk and initramfs write extensions to remove this duplication. Similarly, there may be multiple valid initramfs in the rootfs e.g. extlinux loads a hypervisor, which is Linux + initramfs, and the initramfs then boots a guest Linux system, which uses a different initramfs. This makes it important to explicitly let the rootfs write extensions know which to use, or not as the case may be. util-linux's blkid is required, since the busybox version ignores the options to filter its output, and parsing the output is undesirable. Because syslinux's btrfs subvolume support is limited to being able to use a non-0 default subvolume, the initramfs has to be copied out of the run-time rootfs subvolume and into the boot subvolume. This pushed the required disk space of a minimal system over the 512M threshold because we do not have the userland tooling support to be able to do a btrfs file contents clone.