Add new Calamares-based installer extension with configuration for automated Armbian installations, including partition, unpackfs, displaymanager, and shellprocess modules. Signed-off-by: Igor Pecovnik <igor@armbian.com>
23 lines
617 B
Plaintext
23 lines
617 B
Plaintext
# This module copies the live filesystem to the target partition.
|
|
# It's used when the live system is not a squashfs image.
|
|
|
|
# The source directory is the root of the live system.
|
|
source: "/"
|
|
|
|
# The destination is the root of the target partition.
|
|
destination: ""
|
|
|
|
# Exclude directories that are created by the kernel or are not meant to be copied.
|
|
exclude:
|
|
- /proc
|
|
- /sys
|
|
- /dev
|
|
- /run
|
|
- /tmp
|
|
- /mnt
|
|
- /media
|
|
- /etc/calamares # Exclude our installer config from the final system
|
|
|
|
# Additional rsync options for a reliable copy.
|
|
rsyncOptions: [ "-a", "-X", "-A", "--numeric-ids", "--info=progress2" ]
|