From 20e298af0e5998aca4aaa96503a5ed761ca0805d Mon Sep 17 00:00:00 2001 From: Khem Raj Date: Thu, 14 Feb 2019 20:17:30 -0800 Subject: lcdproc: Disable serialVFD driver on arm/aarch64 This driver uses inb/outb instructions which seems to have trouble on arm/aarch64 compiler server/drivers/serialVFD_io.c :45: | ../../../git/server/drivers/port.h:344:32: error: invalid output constraint '=a' in asm | | __asm__ volatile ("inb %1,%0":"=a" (value) | ^ Signed-off-by: Khem Raj --- meta-oe/recipes-extended/lcdproc/lcdproc_git.bb | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/meta-oe/recipes-extended/lcdproc/lcdproc_git.bb b/meta-oe/recipes-extended/lcdproc/lcdproc_git.bb index 93a09f28a0..1354997891 100644 --- a/meta-oe/recipes-extended/lcdproc/lcdproc_git.bb +++ b/meta-oe/recipes-extended/lcdproc/lcdproc_git.bb @@ -19,9 +19,10 @@ S = "${WORKDIR}/git" inherit autotools pkgconfig update-rc.d -COMPATIBLE_HOST_arm_libc-musl = "null" - LCD_DRIVERS ?= "all,!irman,!svga" +LCD_DRIVERS_append_aarch64 = ",!serialVFD" +LCD_DRIVERS_append_arm = ",!serialVFD" + LCD_DEFAULT_DRIVER ?= "curses" PACKAGECONFIG ??= "usb" -- cgit 1.2.3-korg