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.
This commit is contained in:
AwlsomeAlex 2016-10-17 06:42:49 -04:00 committed by GitHub
parent 145b0c523e
commit 59b1096f34

View File

@ -82,7 +82,7 @@ else
# The '$?' variable holds the exit code of the last issued command. # The '$?' variable holds the exit code of the last issued command.
if [ $? = 1 ] ; then if [ $? = 1 ] ; then
# Enable the mixed EFI mode when building 64-bit kernel. # Enable the mixed EFI mode when building 64-bit kernel.
echo "CONFIG_EFI_MIXED=y" > .config echo "CONFIG_EFI_MIXED=y" >> .config
fi fi
fi fi