f31522130f
Build system (5 gaps hardened): - COOKBOOK_OFFLINE defaults to true (fork-mode) - normalize_patch handles diff -ruN format - New 'repo validate-patches' command (25/25 relibc patches) - 14 patched Qt/Wayland/display recipes added to protected list - relibc archive regenerated with current patch chain Boot fixes (fixable): - Full ISO EFI partition: 16 MiB → 1 MiB (matches mini, BIOS hardcoded 2 MiB offset) - D-Bus system bus: absolute /usr/bin/dbus-daemon path (was skipped) - redbear-sessiond: absolute /usr/bin/redbear-sessiond path (was skipped) - daemon framework: silenced spurious INIT_NOTIFY warnings for oneshot_async services (P0-daemon-silence-init-notify.patch) - udev-shim: demoted INIT_NOTIFY warning to INFO (expected for oneshot_async) - relibc: comprehensive named semaphores (sem_open/close/unlink) replacing upstream todo!() stubs - greeterd: Wayland socket timeout 15s → 30s (compositor DRM wait) - greeter-ui: built and linked (header guard unification, sem_compat stubs removed) - mc: un-ignored in both configs, fixed glib/libiconv/pcre2 transitive deps - greeter config: removed stale keymapd dependency from display/greeter services - prefix toolchain: relibc headers synced, _RELIBC_STDLIB_H guard unified Unfixable (diagnosed, upstream): - i2c-hidd: abort on no-I2C-hardware (QEMU) — process::exit → relibc abort - kded6/greeter-ui: page fault 0x8 — Qt library null deref - Thread panics fd != -1 — Rust std library on Redox - DHCP timeout / eth0 MAC — QEMU user-mode networking - hwrngd/thermald — no hardware RNG/thermal in VM - live preload allocation — BIOS memory fragmentation, continues on demand
72 lines
2.7 KiB
Lua
72 lines
2.7 KiB
Lua
-- SPDX-License-Identifier: MIT
|
|
--
|
|
-- This is an example libinput plugin
|
|
--
|
|
-- This plugin detects the Copilot key on the keyboard with
|
|
-- the given VID/PID and replaces it with a different key (sequence).
|
|
|
|
-- UNCOMMENT THIS LINE TO ACTIVATE THE PLUGIN
|
|
-- libinput:register({1})
|
|
|
|
-- Replace this with your keyboard's VID/PID
|
|
KEYBOARD_VID = 0x046d
|
|
KEYBOARD_PID = 0x4088
|
|
|
|
meta_is_down = false
|
|
shift_is_down = false
|
|
|
|
-- shift-A, because you can never have enough screaming
|
|
replacement_sequence = { evdev.KEY_LEFTSHIFT, evdev.KEY_A }
|
|
|
|
function frame(device, frame, _)
|
|
for _, v in ipairs(frame) do
|
|
if v.value ~= 2 then -- ignore key repeats
|
|
if v.usage == evdev.KEY_LEFTMETA then
|
|
meta_is_down = v.value == 1
|
|
elseif v.usage == evdev.KEY_LEFTSHIFT then
|
|
shift_is_down = v.value == 1
|
|
elseif v.usage == evdev.KEY_F23 and meta_is_down and shift_is_down then
|
|
-- We know from the MS requirements that F23 for copilot is
|
|
-- either last key (on press) or the first key (on release)
|
|
-- of the three-key sequence, and no other keys are
|
|
-- within this frame.
|
|
if v.value == 1 then
|
|
-- Release our modifiers first
|
|
device:prepend_frame({
|
|
{ usage = evdev.KEY_LEFTSHIFT, value = 0 },
|
|
{ usage = evdev.KEY_LEFTMETA, value = 0 },
|
|
})
|
|
-- Insert our replacement press sequence
|
|
local replacement_frame = {}
|
|
for _, rv in ipairs(replacement_sequence) do
|
|
table.insert(replacement_frame, { usage = rv, value = 1 })
|
|
end
|
|
device:append_frame(replacement_frame)
|
|
else
|
|
-- Insert our replacement release sequence
|
|
local replacement_frame = {}
|
|
for idx = #replacement_sequence, 1, -1 do
|
|
table.insert(replacement_frame, { usage = replacement_sequence[idx], value = 0 })
|
|
end
|
|
device:append_frame(replacement_frame)
|
|
|
|
-- we don't care about re-pressing shift/meta because the
|
|
-- rest of the stack will filter the release for an
|
|
-- unpressed key anyway.
|
|
end
|
|
|
|
return {} -- discard this frame
|
|
end
|
|
end
|
|
end
|
|
end
|
|
|
|
function device_new(device)
|
|
local info = device:info()
|
|
if info.vid == KEYBOARD_VID and info.pid == KEYBOARD_PID then
|
|
device:connect("evdev-frame", frame)
|
|
end
|
|
end
|
|
|
|
libinput:connect("new-evdev-device", device_new)
|