You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
600 B
14 lines
600 B
# Real life SD cards typically have less than they advertise. First off, they
|
|
# often use a base of 1000 instead of 1024, and even then they are often smaller
|
|
# than advertised. The number below is based on a conservative target of 7.9GB
|
|
# (that's mathematical GB, base 1000), converted to MiB, rounding down.
|
|
MENDER_STORAGE_TOTAL_SIZE_MB=7534
|
|
|
|
# Use all there is, which gets us almost, but not quite, to 500MiB free space
|
|
# (about 480MiB at the time of writing).
|
|
IMAGE_ROOTFS_SIZE=-1
|
|
IMAGE_ROOTFS_EXTRA_SPACE=0
|
|
IMAGE_OVERHEAD_FACTOR=1.0
|
|
|
|
# Best compression there is!
|
|
MENDER_COMPRESS_DISK_IMAGE=lzma
|
|
|