17 lines
451 B
Plaintext
17 lines
451 B
Plaintext
# Raspberry Pi OS only targets arm64 since the rpi4.
|
|
# So VesperOS will also only target arm64 for the rpi4 and up.
|
|
|
|
# This builds VesperOS for arm64
|
|
ARCH=arm64
|
|
|
|
# This tells the build system we are targetting a raspberry pi
|
|
PLATFORM=rpi
|
|
|
|
# Suffix to append to the image name
|
|
IMG_SUFFIX="-rainier-rpi"
|
|
|
|
# Exports to produce
|
|
EXPORTS="stage3:squashfs"
|
|
|
|
# Weather to export the image with compression (zip, gz, xz) or not (none)
|
|
DEPLOY_COMPRESSION="none" |