From 59b1096f344b4df1571691ad06b826ce81db2b8e Mon Sep 17 00:00:00 2001 From: AwlsomeAlex Date: Mon, 17 Oct 2016 06:42:49 -0400 Subject: [PATCH] Fixed Typo Due to "CONFIG_EFI_MIXED=y" being echoed to the .confjg by just one >, it was overwriting the .config file, causing the user to have to manually configure it again. Now with it >> it adds the text at end of the file. Untested but logically makes sense. --- src/02_build_kernel.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/02_build_kernel.sh b/src/02_build_kernel.sh index 488bc5f3c..7d2dcaa12 100755 --- a/src/02_build_kernel.sh +++ b/src/02_build_kernel.sh @@ -82,7 +82,7 @@ else # The '$?' variable holds the exit code of the last issued command. if [ $? = 1 ] ; then # Enable the mixed EFI mode when building 64-bit kernel. - echo "CONFIG_EFI_MIXED=y" > .config + echo "CONFIG_EFI_MIXED=y" >> .config fi fi