21 lines
585 B
Plaintext
21 lines
585 B
Plaintext
# This builds VesperOS for amd64
|
|
ARCH=amd64
|
|
|
|
# Suffix to append to the image name
|
|
#IMG_SUFFIX="-rainier"
|
|
|
|
# Exports to produce
|
|
EXPORTS="stage3:squashfs"
|
|
|
|
# Weather to export the image with compression (zip, gz, xz) or not (none)
|
|
DEPLOY_COMPRESSION="none"
|
|
|
|
# Set LIVEBOOT=1 to also produce a livefs.squashfs with Calamares installed
|
|
# for use with gen-installmedia. Outputs deploy/livefs.{squashfs,vmlinuz,initrd.img}
|
|
# alongside the clean deploy/rootfs.squashfs.
|
|
LIVEBOOT=1
|
|
|
|
# Live boot options
|
|
LIVE_USERNAME="vesper"
|
|
LIVE_USER_FULLNAME="VesperOS Live User"
|
|
LIVE_USER_PASSWORD="vesper" |