diff options
author | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-05-31 23:59:57 +0200 |
---|---|---|
committer | Thomas Petazzoni <thomas.petazzoni@free-electrons.com> | 2010-06-12 13:38:44 +0200 |
commit | 38a88b691834eece3fc9c0719d08b4f41ab2c474 (patch) | |
tree | 3bc3e55102d22ecf40ab3c63aec9c321da201e12 /boot/grub2 | |
parent | 1d73ef9449f6ff0d5d3d9c93291c8869b27830cc (diff) |
grub2: only available on x86 and PowerPC and mark as BROKEN
The build process of grub2 breaks the compilation. It breaks with:
./configure: line 4766: syntax error near unexpected token `external'
./configure: line 4766: `AM_GNU_GETTEXT(external)'
In addition to this, it later requires Ruby. Do we really want to make
Buildroot depend on Ruby being installed on the host ? Do we really
want to build our own Ruby ? Do we even care about Grub2 ?
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@free-electrons.com>
Diffstat (limited to 'boot/grub2')
-rw-r--r-- | boot/grub2/Config.in | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/boot/grub2/Config.in b/boot/grub2/Config.in index d27cb4cd5..1301b5b80 100644 --- a/boot/grub2/Config.in +++ b/boot/grub2/Config.in @@ -1,4 +1,9 @@ config BR2_TARGET_GRUB2 bool "grub2" + # Only supports PC, Mac (Power, x86 and x86-64), Pegasos + depends on BR2_i386 || BR2_powerpc + # Build process is broken (./configure doesn't work, Ruby + # required, etc.) + depends on BROKEN help The GRand Unified Bootloader for x86 systems, take #2. |