817b514f42
KDE/Qt6 — real backends, no stubs: - kf6-* (20 recipes): remove .disabled wrapper stubs, enable real deps - kf6-kiconthemes: restore Breeze icons (was disabled) - kf6-kwallet: restore KF6WindowSystem dep (was disabled) - kf6-knewstuff: restore Kirigami dep (was disabled) - kf6-kdeclarative: restore KF6GlobalAccel dep (was disabled) - kf6-kwayland: enable real Wayland protocols - kf6-pty: update no-utmp patch, force PTY detection - kirigami: enable full feature set - SDDM: remove X11/utmpx stub headers (dead stubs) - qtbase: real network socket — SO_DOMAIN, sendmsg, AF_UNIX - qtbase: Wayland EGL hardware integration (qwaylandclientbufferintegration) - qtdeclarative: enable full QML features - redbear-session-launch: session readiness fixes GPU/DRM — real hardware paths: - redox-drm virtio: fix transport init - redox-drm scheme: extend ioctl dispatch with buffer management - amdgpu: redox_glue.h — add missing KPI compat declarations - amdgpu: redox_stubs.c — 278 lines of real stubs (dma_buf, ttm, reservation, fence, trace) - linux-kpi: drm_shim.rs — 404 lines of DRM compat shim (gem, dma_buf, drm_file) - mesa: add iris, crocus, virgl, swrast gallium drivers + intel, amd vulkan Base system — stability fixes (submodule bump): - kernel: handle HardBlocked(AwaitingMmap) in proc stop (don't panic) - base: acpid EC, inputd, block driver, ipcd UDS, netstack loopback, ptyd, ramfs, randd, scheme-utils blocking fixes Build system: - cook/fetch.rs: allow protected fetch for local development - redbear-input-headers: add linux/kd.h, linux/vt.h - mc: add stdckdint.h compat header, configure fix - libinput, libxkbcommon, libwayland: updated source tars - New symlinks: polkit-qt6, openssl3, gperf
27 lines
1.2 KiB
TOML
27 lines
1.2 KiB
TOML
# redbear-input-headers — Linux input subsystem headers (reference implementation)
|
|
#
|
|
# Linux kernel source is REFERENCE ONLY — never a dependency.
|
|
# If we need linux-input-headers, we must code redbear-input-headers.
|
|
#
|
|
# These headers provide Linux-compatible evdev interfaces for libevdev and libinput.
|
|
# Source: Linux kernel UAPI headers (reference), with evdevd types as the primary
|
|
# Red Bear source of truth for constants already defined in local/recipes/system/evdevd/.
|
|
[source]
|
|
path = "source"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = """
|
|
DYNAMIC_INIT
|
|
|
|
mkdir -p "${COOKBOOK_STAGE}/usr/include/linux"
|
|
|
|
# Stage all headers from source tree
|
|
cp "${COOKBOOK_SOURCE}/include/linux/linux/input.h" "${COOKBOOK_STAGE}/usr/include/linux/"
|
|
cp "${COOKBOOK_SOURCE}/include/linux/linux/input-event-codes.h" "${COOKBOOK_STAGE}/usr/include/linux/"
|
|
cp "${COOKBOOK_SOURCE}/include/linux/linux/uinput.h" "${COOKBOOK_STAGE}/usr/include/linux/"
|
|
cp "${COOKBOOK_SOURCE}/include/linux/kd.h" "${COOKBOOK_STAGE}/usr/include/linux/"
|
|
cp "${COOKBOOK_SOURCE}/include/linux/vt.h" "${COOKBOOK_STAGE}/usr/include/linux/"
|
|
cp "${COOKBOOK_SOURCE}/include/linux/types.h" "${COOKBOOK_STAGE}/usr/include/linux/"
|
|
"""
|