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:
parent
145b0c523e
commit
59b1096f34
@ -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
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user