Skip site navigation (1)Skip section navigation (2)
Date:      Thu, 07 Nov 2024 22:02:41 +0000
From:      bugzilla-noreply@freebsd.org
To:        bugs@FreeBSD.org
Subject:   [Bug 154955] [acpi] Keyboard or ACPI doesn't work on Lenovo S10-3
Message-ID:  <bug-154955-227-vBbIk7BoNx@https.bugs.freebsd.org/bugzilla/>
In-Reply-To: <bug-154955-227@https.bugs.freebsd.org/bugzilla/>
References:  <bug-154955-227@https.bugs.freebsd.org/bugzilla/>

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

spell@itl.ua changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |spell@itl.ua

--- Comment #3 from spell@itl.ua ---
(In reply to Alexander from comment #0)

The same issue on my Lenovo Ideapad S110 with 13.3-RELEASE.

My fix (quick one, needs to be integrated somehow into proper place):

#include <sys/types.h>
#include <sys/cdefs.h>
#include <machine/cpufunc.h>
#include <fcntl.h>

#define I8042_COMMAND_REG 0x64

int main() {
        open("/dev/io", O_WRONLY);
        outb(I8042_COMMAND_REG, 0xae);
        return 0;
}

Thank you (over years) for the link which has conveyed to the fix.

--=20
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-154955-227-vBbIk7BoNx>