aboutsummaryrefslogtreecommitdiff
path: root/src/property/disk.lisp
diff options
context:
space:
mode:
authorSean Whitton <spwhitton@spwhitton.name>2022-04-27 18:18:08 -0700
committerSean Whitton <spwhitton@spwhitton.name>2022-04-28 15:05:56 -0700
commiteaba54b7f31acdfda8278ccce66b09291c58ac82 (patch)
tree73734f94c7b41add41a1c05dea4b64a8bed7e0f3 /src/property/disk.lisp
parent23db859de6fb1237802705e3ff920f67332db3d8 (diff)
downloadconsfigurator-eaba54b7f31acdfda8278ccce66b09291c58ac82.tar.gz
DISK:VOLUME-BOOTLOADER -> DISK:VOLUME-BOOTLOADERS
Signed-off-by: Sean Whitton <spwhitton@spwhitton.name>
Diffstat (limited to 'src/property/disk.lisp')
-rw-r--r--src/property/disk.lisp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/property/disk.lisp b/src/property/disk.lisp
index ca2d2f7..6cc8328 100644
--- a/src/property/disk.lisp
+++ b/src/property/disk.lisp
@@ -50,13 +50,13 @@ containing this one.
If a larger size is required to accommodate the VOLUME-CONTENTS of the volume
plus any metadata (e.g. partition tables), this value will be ignored.")
- (volume-bootloader
- :type list :initarg :boots-with :accessor volume-bootloader
+ (volume-bootloaders
+ :type list :initarg :boots-with :accessor volume-bootloaders
:documentation
- "List specifying a bootloader to be installed to this volume. The first
-element is a symbol identifying the type of bootloader, and the remaining
-elements are a plist of keyword arguments to be passed to the implementation
-of INSTALLER:INSTALL-BOOTLOADER for that bootloader type.
+ "List or list of lists specifying bootloaders to be installed to this volume.
+The first element of each list is a symbol identifying the type of bootloader,
+and the remaining elements are a plist of keyword arguments to be passed to
+the implementation of INSTALLER:INSTALL-BOOTLOADER for that bootloader type.
Typically only the top level PHYSICAL-DISK of a host's volumes will have this
slot bound."))