diff --git a/projects/Generic/options b/projects/Generic/options index 2656542066..12bcc590d2 100644 --- a/projects/Generic/options +++ b/projects/Generic/options @@ -261,7 +261,13 @@ # Xorg Graphic drivers to use (all / i915,i965,r200,r300,r600,nvidia,nouveau) # Space separated list is supported, # e.g. GRAPHIC_DRIVERS="i915 i965 r300 r600 nvidia nouveau" - GRAPHIC_DRIVERS="r200 r300 r600 radeonsi i915 i965 nvidia" + if [ "$TARGET_ARCH" = "i386" ]; then + # TODO: create Legacy build with OpenELEC-4.2 + # install legacy drivers to i386 ARCH + GRAPHIC_DRIVERS="r200 r300 r600 i915 i965 nvidia-legacy" + elif [ "$TARGET_ARCH" = "x86_64" ]; then + GRAPHIC_DRIVERS="r300 r600 radeonsi i915 i965 nvidia" + fi # XBMC Player implementation to use (default / bcm2835-driver) XBMCPLAYER_DRIVER="default"