741f144c79
- Add full VirtIO GPU driver with command submission, resource management, VirtQueue implementation, and transport layer; includes diagnostic probes for resource_create_2d ERR_INVALID_RESOURCE_ID investigation - Expand libdrm Redox support with DRM ioctl wrappers (ADDFB, RMFB, CREATE_DUMB, MAP_DUMB, DESTROY_DUMB, GET_RESOURCES, GET_CONNECTOR, GET_CRTC, SET_CRTC, MODE_OBJ_GET_PROPERTIES, etc.) and xf86drm_redox.h - Add redox-drm scheme handlers for VirtIO GPU-specific DRM ioctls (VIRTGPU_RESOURCE_CREATE, VIRTGPU_MAP, VIRTGPU_WAIT, VIRTGPU_INFO, etc.) - Add display stack recipes: freetype2, lcms2, libdisplay-info, libepoxy, libxcvt - Fix KWin build (recipe.toml expanded, kf6-ksvg added) - Fix KF6 CMakeLists for cross-compilation (attica, kcmutils, kcolorscheme, kcompletion, kconfigwidgets, kdeclarative, kiconthemes, kitemmodels, kitemviews, kjobwidgets, ktextwidgets, kwayland, kxmlgui, kpty, solid) - Add Qt6 futex support patch - Add relibc patches: P3 strtold, P3 ld-so search path, P5 DRM ioctl removal - Add base P4 pcid config scheme patch - Update driver-manager hotplug/config, PCI config in redox-driver-sys - Update greeter compositor and KDE session scripts - Update AGENTS.md with zero-tolerance stubs policy and project knowledge
53 lines
1.2 KiB
TOML
53 lines
1.2 KiB
TOML
[source]
|
|
path = "source"
|
|
|
|
[build]
|
|
template = "custom"
|
|
script = '''
|
|
DYNAMIC_INIT
|
|
|
|
python3 - <<'PY' "${COOKBOOK_SOURCE}"
|
|
from pathlib import Path
|
|
import sys
|
|
|
|
source_root = Path(sys.argv[1])
|
|
meson_build = source_root / "meson.build"
|
|
|
|
if not meson_build.exists():
|
|
meson_build.write_text(
|
|
"""project('libdisplay-info', 'c',
|
|
version: '0.2.0',
|
|
meson_version: '>= 0.54.0',
|
|
default_options: ['warning_level=1', 'buildtype=debugoptimized'])
|
|
|
|
inc = include_directories('include')
|
|
|
|
libdisplay_info = shared_library('display-info',
|
|
'di.c',
|
|
include_directories: inc,
|
|
version: meson.project_version(),
|
|
install: true)
|
|
|
|
install_headers(
|
|
'include/libdisplay-info/cta.h',
|
|
'include/libdisplay-info/displayid.h',
|
|
'include/libdisplay-info/edid.h',
|
|
'include/libdisplay-info/info.h',
|
|
subdir: 'libdisplay-info',
|
|
)
|
|
|
|
pkg = import('pkgconfig')
|
|
pkg.generate(
|
|
libdisplay_info,
|
|
name: 'libdisplay-info',
|
|
description: 'Display identification data parsing library',
|
|
filebase: 'libdisplay-info',
|
|
version: meson.project_version(),
|
|
)
|
|
"""
|
|
)
|
|
PY
|
|
|
|
cookbook_meson
|
|
'''
|