mirror of
https://github.com/parchlinux/calamares.git
synced 2025-06-26 08:58:22 -04:00
[unpackfs] Expand documentation
- comment out the squashfs example, since it's not readily available even on developer systems - add entries for the upcoming "file" type.
This commit is contained in:
parent
03cdfc3af6
commit
784bc5b86e
1 changed files with 18 additions and 5 deletions
|
@ -9,13 +9,18 @@
|
||||||
# target dir relative to rootMountPoint.
|
# target dir relative to rootMountPoint.
|
||||||
|
|
||||||
---
|
---
|
||||||
unpack:
|
|
||||||
# Each list item is unpacked, in order, to the target system.
|
# Each list item is unpacked, in order, to the target system.
|
||||||
|
#
|
||||||
# Each list item has the following attributes:
|
# Each list item has the following attributes:
|
||||||
# source: path relative to the live / intstalling system to the image
|
# source: path relative to the live / intstalling system to the image
|
||||||
# sourcefs: ext4 or squashfs (may be others if mount supports it)
|
# sourcefs: the type of the source files; valid entries are
|
||||||
|
# - *ext4* (copies the filesystem contents)
|
||||||
|
# - *squashfs* (unsquashes)
|
||||||
|
# - *file* (copies a file or directory)
|
||||||
|
# - (may be others if mount supports it)
|
||||||
# destination: path relative to rootMountPoint (so in the target
|
# destination: path relative to rootMountPoint (so in the target
|
||||||
# system) where this filesystem is unpacked.
|
# system) where this filesystem is unpacked.
|
||||||
|
unpack:
|
||||||
|
|
||||||
# Usually you list a filesystem image to unpack; you can use
|
# Usually you list a filesystem image to unpack; you can use
|
||||||
# squashfs or an ext4 image.
|
# squashfs or an ext4 image.
|
||||||
|
@ -33,6 +38,14 @@ unpack:
|
||||||
|
|
||||||
# You can list filesystem source paths relative to the Calamares run
|
# You can list filesystem source paths relative to the Calamares run
|
||||||
# directory, if you use -d (this is only useful for testing, though).
|
# directory, if you use -d (this is only useful for testing, though).
|
||||||
- source: ./example.sqfs
|
# - source: ./example.sqfs
|
||||||
sourcefs: squashfs
|
# sourcefs: squashfs
|
||||||
destination: ""
|
# destination: ""
|
||||||
|
# You can list individual files
|
||||||
|
- source: ../CHANGES
|
||||||
|
sourcefs: file
|
||||||
|
destination: "/tmp/derp"
|
||||||
|
# .. or directories
|
||||||
|
- source: ../src/modules/dummycpp
|
||||||
|
sourcefs: file
|
||||||
|
destination: "/tmp/derp"
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue