diff options
author | Lyndon Brown <jnqnfe@gmail.com> | 2020-04-05 17:29:31 +0100 |
---|---|---|
committer | Raphaƫl Hertzog <hertzog@debian.org> | 2020-04-23 09:38:02 +0000 |
commit | 38a5aed0dcdf71f43cecfadc6e34c659408b6a00 (patch) | |
tree | 48793210c32b970f78cf4561d3ca23369344fe19 /manpages/en | |
parent | 1f63c620f0abdf08188975d083d5f11bebfd2433 (diff) | |
download | vyos-live-build-38a5aed0dcdf71f43cecfadc6e34c659408b6a00.tar.gz vyos-live-build-38a5aed0dcdf71f43cecfadc6e34c659408b6a00.zip |
chroot_prep: expand coverage
it now covers:
- `lb chroot_apt install-binary`
- `lb chroot_archives {chroot|binary|source} {install|remove}`
by expanding usage from:
`lb chroot_prep {install|remove} HELPERS [ARGS]`
to:
`lb chroot_prep {install|remove} HELPERS [MODE[ MODE..]] [ARGS]`
where `[MODE[ MODE..]]` is an optional set of one or more of:
- archives-chroot, which specifies to use 'chroot' as the first param to
the chroot_archives script
- archives-binary, which specifies to use 'binary'
- archives-source, which specifies to use 'source'
- apt-install-binary, which specified to pass 'install-binary' instead of
'install' to chroot_apt
thus _all_ chroot prep scripts can be run through this helper now!
note, in the case of the binary stage, 'archives' is deliberately not added
to CHROOT_PREP_OTHER, this is not a mistake!
Gbp-Dch: Short
Diffstat (limited to 'manpages/en')
-rw-r--r-- | manpages/en/live-build.7 | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/manpages/en/live-build.7 b/manpages/en/live-build.7 index af6e62696..a228cc774 100644 --- a/manpages/en/live-build.7 +++ b/manpages/en/live-build.7 @@ -199,7 +199,7 @@ The following chroot_ prefixed commands are used throughout the various primary .PP Note that the \fBlb chroot_prep\fR(1) command can be used to run these components in bulk. .IP "\fBlb chroot_prep\fR(1)" 4 -a helper to run the below components in bulk, usable for all those that can be controlled with a single parameter of 'install' or 'remove' (thus excluding \fBlb chroot_archives\fR(1) and also \fBlb chroot_apt\fR(1) when run with 'install-binary'). The first parameter it takes is the execution mode - install or remove - to pass along. The second parameter is the set of helpers to run (they can be space or comma separated; remember to quote if space separated). Any remaining parameters (i.e. options like --force) are passed along. The second can be simply 'all' in which case a default set of all (applicable) components are used. Components can be specified without their filename 'chroot_' prefix for brevity. In remove mode the list of components are run in reverse order, so no need to provide them in reverse order yourself. +a helper to run the below components in bulk. The first parameter it takes is the execution mode - install or remove - to pass along. The second parameter is the set of helpers to run (they can be space or comma separated; remember to quote if space separated). Following this one or more of the special parameters 'mode-archives-chroot', 'mode-archives-binary', 'mode-archives-source' and 'mode-apt-install-binary' can optionally be used, to select the 'pass' parameter for \fBlb chroot_archives\fR(1) in the case of the first three (required if 'archives' is one of the helpers to be run), and to run \fBlb chroot_apt\fR(1) in 'install-binary' mode in the last case. Any remaining parameters (i.e. options like --force) are passed along to all scripts run. The second parameter can be simply 'all' in which case a default set of all (applicable) components are used, or 'all-except-archives' which differs in skipping \fBlb chroot_archives\fR(1). Components can be specified without their filename 'chroot_' prefix for brevity. In remove mode the list of components are run in reverse order, so no need to provide them in reverse order yourself. .IP "\fBlb chroot_apt\fR(1)" 4 manages apt configuration; in apply mode it applies configuration for use during build process, and in remove mode removes that configuration .IP "\fBlb chroot_archives\fR(1)" 4 |