[oe-commits] [meta-openembedded] 09/26: lcdproc: Disable serialVFD driver on arm/aarch64

git at git.openembedded.org git at git.openembedded.org
Fri Feb 15 14:59:33 UTC 2019


This is an automated email from the git hooks/post-receive script.

khem pushed a commit to branch master-next
in repository meta-openembedded.

commit 20e298af0e5998aca4aaa96503a5ed761ca0805d
Author: Khem Raj <raj.khem at gmail.com>
AuthorDate: Thu Feb 14 20:17:30 2019 -0800

    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 <raj.khem at gmail.com>
---
 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 93a09f2..1354997 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"

-- 
To stop receiving notification emails like this one, please contact
the administrator of this repository.


More information about the Openembedded-commits mailing list