From 22f5b5221d89064246281deb80b490b92a63e2bd Mon Sep 17 00:00:00 2001 From: sakaki Date: Sun, 12 Feb 2017 19:52:50 +0000 Subject: [PATCH] Ensure CONFIG_VFAT_FS is conformed (=y) in kernel Addresses issue #8 --- buildkernel | 3 +++ 1 file changed, 3 insertions(+) diff --git a/buildkernel b/buildkernel index e9a923d..e6af86d 100755 --- a/buildkernel +++ b/buildkernel @@ -1586,6 +1586,9 @@ conform_config_file() { # modules really, since we copy all modules into the initramfs show "Ensuring Serpent, Whirlpool and SHA-512 are included..." set_kernel_config_list_to_y "CRYPTO_SERPENT CRYPTO_WP512 CRYPTO_SHA512" + # the EFI system system partition is formatted FAT... + show "Ensuring VFAT file system support included..." + set_kernel_config_list_to_y "VFAT_FS" show "Ensuring device mapper and crypt target support are included..." set_kernel_config_list_to_y "BLK_DEV_DM DM_CRYPT" show "Ensuring kernel makes config available under /proc..."