Merge pull request #44 from AwlsomeAlex/patch-1

The kernel configuration file is overwritten when building on 64-bit host environment. This fixes the issue by adding the new configuration line to the ".config" file instead of overwriting (by mistake) the whole file.
This commit is contained in:
Ivan Davidov 2016-10-17 14:32:16 +03:00 committed by GitHub
commit 2d51fd8319

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