diff options
author | Nicholas Sielicki <sielicki@yandex.com> | 2017-09-04 19:08:05 -0500 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2017-09-05 21:55:28 +0200 |
commit | ca622d6222b7694b97a834aec582ae9985bb093a (patch) | |
tree | 582df09c2d71f50f87fb1ecfd7fc53e7146bf76b | |
parent | 62ec0af5fb910f08095548b33062cef20d4ca07b (diff) | |
download | buildroot-ca622d6222b7694b97a834aec582ae9985bb093a.tar.gz buildroot-ca622d6222b7694b97a834aec582ae9985bb093a.zip |
configs/galileo: grub2 needs wchar toolchain
The galileo_defconfig has the line "BR_TARGET_GRUB2=y", but this
currently has no effect because BR_TARGET_GRUB2 cannot be selected
without BR2_TOOLCHAIN_BUILDROOT_WCHAR=y, which is not set by default.
Signed-off-by: Nicholas Sielicki <sielicki@yandex.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
-rw-r--r-- | configs/galileo_defconfig | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/configs/galileo_defconfig b/configs/galileo_defconfig index 7db3cfe8a5..72ab0ff061 100644 --- a/configs/galileo_defconfig +++ b/configs/galileo_defconfig @@ -1,4 +1,6 @@ BR2_x86_x1000=y +# Needed for TARGET_GRUB2 +BR2_TOOLCHAIN_BUILDROOT_WCHAR=y # Linux headers same as kernel, a 3.14 series BR2_PACKAGE_HOST_LINUX_HEADERS_CUSTOM_3_14=y BR2_ROOTFS_DEVICE_CREATION_DYNAMIC_MDEV=y |