Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 14 Nov 2015 18:39:39 +0000
From:      bugzilla-noreply@freebsd.org
To:        freebsd-bugs@FreeBSD.org
Subject:   [Bug 204545] Adding quirk entry for some C720p firmware in keyboard module.
Message-ID:  <bug-204545-8@https.bugs.freebsd.org/bugzilla/>

next in thread | raw e-mail | index | archive | help
https://bugs.freebsd.org/bugzilla/show_bug.cgi?id=204545

            Bug ID: 204545
           Summary: Adding quirk entry for some C720p firmware in keyboard
                    module.
           Product: Base System
           Version: 11.0-CURRENT
          Hardware: Any
                OS: Any
            Status: New
          Severity: Affects Some People
          Priority: ---
         Component: kern
          Assignee: freebsd-bugs@FreeBSD.org
          Reporter: pitwuu@gmail.com

Basically a one-liner to make the keyboard work on my machine (C720p).
Has been tested.

Update the struct in sys/dev/atkbdc/atkbdc.c:124

static struct atkbdc_quirks quirks[] = {
    {"coreboot", "Acer", "Peppy",
    KBDC_QUIRK_KEEP_ACTIVATED | KBDC_QUIRK_IGNORE_PROBE_RESULT |
    KBDC_QUIRK_RESET_AFTER_PROBE | KBDC_QUIRK_SETLEDS_ON_INIT},
    {"coreboot", "Google", "Peppy",
    KBDC_QUIRK_KEEP_ACTIVATED | KBDC_QUIRK_IGNORE_PROBE_RESULT |
    KBDC_QUIRK_RESET_AFTER_PROBE | KBDC_QUIRK_SETLEDS_ON_INIT},

    {NULL, NULL, NULL, 0}
};

Ref:
https://lists.freebsd.org/pipermail/svn-src-head/2015-February/068276.html

-- Philippe Michaud-Boudreault

-- 
You are receiving this mail because:
You are the assignee for the bug.



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?bug-204545-8>