docs: update project knowledge base

Update AGENTS.md with current patch chain state, KWin integration
status, and consolidated patch governance.

Ultraworked with [Sisyphus](https://github.com/code-yeongyu/oh-my-openagent)

Co-authored-by: Sisyphus <clio-agent@sisyphuslabs.ai>
This commit is contained in:
2026-05-11 10:10:45 +01:00
parent 3d1dc59f4d
commit 80da7bdebd
6 changed files with 51 additions and 56 deletions
+1
View File
@@ -110,6 +110,7 @@ Red Bear OS sources are frozen at release 0.1.0. Sources are immutable and archi
- **All recipe sources are pinned** with `rev = "..."` in `recipe.toml`
- **Archives are stored** in `sources/redbear-0.1.0/` with a manifest and BLAKE3 checksums
- **Builds are offline by default** — `REPO_OFFLINE=1 COOKBOOK_OFFLINE=true`
- **NO silent upstream pulls** — see `AGENTS.md` "NO SILENT UPSTREAM PULLS" section for the full policy. Any script or build target that silently pulls from upstream is a bug.
- **New releases are provisioned explicitly** via `provision-release.sh`, never automatically
- **Old releases are NEVER deleted** — each new release is added alongside existing ones
@@ -1,7 +0,0 @@
--- a/src/network/socket/qnativesocketengine_unix.cpp
+++ b/src/network/socket/qnativesocketengine_unix.cpp
@@ -1,4 +1,3 @@
-#include <netinet/in6_pktinfo_compat.h>
// Copyright (C) 2021 The Qt Company Ltd.
// Copyright (C) 2016 Intel Corporation.
// SPDX-License-Identifier: LicenseRef-Qt-Commercial OR LGPL-3.0-only OR GPL-2.0-only OR GPL-3.0-only
@@ -1,25 +0,0 @@
--- a/src/corelib/io/qfilesystemengine_unix.cpp
+++ b/src/corelib/io/qfilesystemengine_unix.cpp
@@ -27,21 +27,4 @@
#include <stdio.h>
#include <errno.h>
-#ifdef Q_OS_REDOX
-// relibc does not provide unlinkat/linkat yet (POSIX.1-2008 *at functions).
-// Provide inline stubs that work for AT_FDCWD only - sufficient for
-// FreeDesktop trash operations in this file.
-#include <fcntl.h>
-static inline int unlinkat(int dirfd, const char *pathname, int flags)
-{
- if (dirfd != AT_FDCWD || flags != 0) { errno = ENOTSUP; return -1; }
- return unlink(pathname);
-}
-static inline int linkat(int olddirfd, const char *oldpath, int newdirfd, const char *newpath, int flags)
-{
- if (olddirfd != AT_FDCWD || newdirfd != AT_FDCWD || flags != 0) { errno = ENOTSUP; return -1; }
- return link(oldpath, newpath);
-}
-#endif
-
#include <chrono>
@@ -1 +0,0 @@
../../../../local/patches/qtbase/P1-qplatformopengl-guard.patch
@@ -1,23 +0,0 @@
diff -ruwN source-old/src/CMakeLists.txt source/src/CMakeLists.txt
--- source-old/src/CMakeLists.txt 2024-12-02 05:39:06.000000000 +0000
+++ source/src/CMakeLists.txt 2026-04-30 00:00:00.000000000 +0000
@@ -54,7 +54,7 @@
endif()
if (QT_FEATURE_network)
- # add_subdirectory(network) # disabled for Redox
+ add_subdirectory(network)
if (ANDROID)
add_subdirectory(network/android/jar)
endif()
diff -ruwN source-old/src/plugins/generic/CMakeLists.txt source/src/plugins/generic/CMakeLists.txt
--- source-old/src/plugins/generic/CMakeLists.txt 2024-12-02 05:39:06.000000000 +0000
+++ source/src/plugins/generic/CMakeLists.txt 2026-04-30 00:00:00.000000000 +0000
@@ -18,7 +18,7 @@
add_subdirectory(tslib)
endif()
if(QT_FEATURE_tuiotouch)
- # add_subdirectory(tuiotouch) # disabled for Redox (needs Network)
+ add_subdirectory(tuiotouch)
endif()
if(QT_FEATURE_libinput)
add_subdirectory(libinput)