summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLeon Anavi <leon.anavi@konsulko.com>2019-01-02 19:07:23 +0200
committerLeon Anavi <leon.anavi@konsulko.com>2019-01-07 17:47:02 +0200
commit82f13607c1eb9de62576149b3633c59f6e38a1b9 (patch)
treea04d2fdeb155bd1f52aa18e1c492a43e25deacba
parent92acec81196e731edc9a3b3e170e56967215a21b (diff)
downloadmeta-updater-82f13607c1eb9de62576149b3633c59f6e38a1b9.tar.gz
sota_qemux86-64.bbclass: Increase free space
Increase the free space in QEMU images to avoid errors from Aktualizr while pulling updates, such as: object: min-free-space-percent '3%' would be exceeded, at least 10.2 kB requested Signed-off-by: Leon Anavi <leon.anavi@konsulko.com>
-rw-r--r--classes/sota_qemux86-64.bbclass2
1 files changed, 2 insertions, 0 deletions
diff --git a/classes/sota_qemux86-64.bbclass b/classes/sota_qemux86-64.bbclass
index 5ec4f69..53e0026 100644
--- a/classes/sota_qemux86-64.bbclass
+++ b/classes/sota_qemux86-64.bbclass
@@ -9,3 +9,5 @@ UBOOT_MACHINE_sota = "qemu-x86_defconfig"
9OSTREE_BOOTLOADER ?= "u-boot" 9OSTREE_BOOTLOADER ?= "u-boot"
10 10
11OSTREE_KERNEL_ARGS ?= "ramdisk_size=16384 rw rootfstype=ext4 rootwait rootdelay=2 ostree_root=/dev/hda" 11OSTREE_KERNEL_ARGS ?= "ramdisk_size=16384 rw rootfstype=ext4 rootwait rootdelay=2 ostree_root=/dev/hda"
12
13IMAGE_ROOTFS_EXTRA_SPACE = "${@bb.utils.contains('DISTRO_FEATURES', 'sota', '65536', '', d)}"