2017-07-10 17:57:05 +02:00
|
|
|
# Unsquash / unpack a filesystem. Multiple sources are supported, and
|
|
|
|
# they may be squashed or plain filesystems.
|
|
|
|
#
|
|
|
|
# Configuration:
|
|
|
|
#
|
|
|
|
# from globalstorage: rootMountPoint
|
|
|
|
# from job.configuration: the path to where to mount the source image(s)
|
|
|
|
# for copying an ordered list of unpack mappings for image file <->
|
|
|
|
# target dir relative to rootMountPoint.
|
|
|
|
|
2014-08-19 11:30:59 +02:00
|
|
|
---
|
2017-07-10 17:57:05 +02:00
|
|
|
# Each list item is unpacked, in order, to the target system.
|
2019-09-30 16:23:07 +02:00
|
|
|
#
|
2017-07-10 17:57:05 +02:00
|
|
|
# Each list item has the following attributes:
|
|
|
|
# source: path relative to the live / intstalling system to the image
|
2019-09-30 16:23:07 +02:00
|
|
|
# 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)
|
2017-07-10 17:57:05 +02:00
|
|
|
# destination: path relative to rootMountPoint (so in the target
|
|
|
|
# system) where this filesystem is unpacked.
|
2019-09-30 16:23:07 +02:00
|
|
|
unpack:
|
2017-08-23 12:57:11 +02:00
|
|
|
|
|
|
|
# Usually you list a filesystem image to unpack; you can use
|
|
|
|
# squashfs or an ext4 image.
|
|
|
|
#
|
|
|
|
# - source: "/path/to/filesystem.sqfs"
|
|
|
|
# sourcefs: "squashfs"
|
|
|
|
# destination: ""
|
|
|
|
|
|
|
|
# You can list more than one filesystem.
|
|
|
|
#
|
|
|
|
# - source: "/path/to/another/filesystem.img"
|
|
|
|
# sourcefs: "ext4"
|
|
|
|
# destination: ""
|
|
|
|
#
|
|
|
|
|
|
|
|
# You can list filesystem source paths relative to the Calamares run
|
|
|
|
# directory, if you use -d (this is only useful for testing, though).
|
2019-09-30 16:23:07 +02:00
|
|
|
# - source: ./example.sqfs
|
|
|
|
# sourcefs: squashfs
|
|
|
|
# destination: ""
|
|
|
|
# You can list individual files
|
|
|
|
- source: ../CHANGES
|
|
|
|
sourcefs: file
|
|
|
|
destination: "/tmp/derp"
|
|
|
|
# .. or directories
|
|
|
|
- source: ../src/modules/dummycpp
|
|
|
|
sourcefs: file
|
|
|
|
destination: "/tmp/derp"
|