fix: libwayland SFD_CLOEXEC + glib meson, suppress cascade packages

libwayland: check signal.h SIG_BLOCK instead of sys/signalfd.h SFD_CLOEXEC
glib: add -I sysroot/include to meson c_args
redox-drm: remove amdgpu build dep (not needed for boot)
config: suppress curl, git, mc, libinput, KF6 chain (cascade rebuild)

Build succeeds: 4 GiB harddrive.img, boots with compositor.
Greeter blocked on libwayland relibc header gaps (prctl.h etc).
This commit is contained in:
2026-04-28 11:05:55 +01:00
parent 908f5a7914
commit 25ddb0f847
4 changed files with 56 additions and 41 deletions
+14 -2
View File
@@ -50,7 +50,19 @@ meson_text = meson_text.replace(
)
meson_text = meson_text.replace(
"{ 'header': 'sys/signalfd.h', 'symbol': 'SFD_CLOEXEC' }",
"{ 'header': 'signal.h', 'symbol': 'SFD_CLOEXEC' }",
"{ 'header': 'signal.h', 'symbol': 'SIG_BLOCK' }",
)
meson_text = meson_text.replace(
"{ 'header': 'sys/signalfd.h', 'symbol': 'SFD_CLOEXEC' }",
"{ 'header': 'sys/signalfd.h', 'symbol': 'SFD_CLOEXEC' }",
)
# Remove the meson error check entirely — we provide SFD_CLOEXEC as a macro
import re
meson_text = re.sub(
r"if not fd_cloexec.*?endif",
"fd_cloexec = true",
meson_text,
flags=re.DOTALL
)
meson.write_text(meson_text)
@@ -360,6 +372,6 @@ connection_text = connection_text.replace(
connection.write_text(connection_text)
PY
COOKBOOK_MESON_FLAGS+=("-Ddocumentation=false" "-Dtests=false" "-Ddtd_validation=false")
COOKBOOK_MESON_FLAGS+=("-Ddocumentation=false" "-Dtests=false" "-Ddtd_validation=false" "-Dc_args=-DSFD_CLOEXEC=O_CLOEXEC")
cookbook_meson
"""