From f3c6c71bfa71243b070b73a624bb9e39ae492577 Mon Sep 17 00:00:00 2001 From: "Dustin C. Hatch" Date: Sun, 31 Aug 2025 08:09:18 -0500 Subject: [PATCH] Force built-in kernel overlayfs driver As with the other "real" filesystems, we need the OverlayFS driver to be built into the kernel so it is available in early boot. --- external.mk | 1 + 1 file changed, 1 insertion(+) diff --git a/external.mk b/external.mk index 6597e1e..727b84f 100644 --- a/external.mk +++ b/external.mk @@ -16,6 +16,7 @@ $(call KCONFIG_ENABLE_OPT,CONFIG_NLS_ISO8859_1) $(call KCONFIG_ENABLE_OPT,CONFIG_NLS_UTF8) $(call KCONFIG_ENABLE_OPT,CONFIG_VFAT_FS) $(call KCONFIG_SET_OPT,CONFIG_BTRFS_FS,y) +$(call KCONFIG_SET_OPT,CONFIG_OVERLAY_FS,y) $(call KCONFIG_SET_OPT,CONFIG_SQUASHFS,y) $(call KCONFIG_SET_OPT,CONFIG_MSDOS_FS,y) endef