# The current locale can be set in /etc/locale.conf.
# List of locales to install in all images:
IMAGE_LINGUAS = "en-us en-ca"
+
+# Prevent WIC from adding duplicated fstab entries, since we are manually adding
+# our own fstab entries. The reason we need to manually add fstab entries is so
+# that the swupdate and WIC images have an identical /etc/fstab file.
+# Without this option, the WIC command would add entries to fstab but only
+# AFTER the rootfs image is generated, and the swupdate image is generated from
+# the rootfs image, and not the WIC image, which would lead to differences
+# between the two images.
+WIC_CREATE_EXTRA_ARGS:append = " --no-fstab-update"