gitmodules: declare remaining submodules against canonical RedBear-OS
Adds .gitmodules entries for local/sources/{base,bootloader,installer,
libredox,redoxfs,relibc,syscall,userutils} — all pointing at
https://gitea.redbearos.org/vasilito/RedBear-OS.git with
branch = submodule/<name>. Previously only 'kernel' was declared.
After this commit, a fresh clone followed by
'git submodule update --init --recursive' resolves all 9 component
sources from the canonical RedBear-OS repo's submodule/<name>
branches.
Removes the dangling gitlinks for the 4 components whose per-component
Gitea repos were empty (0 commits): local/sources/ctrlc,
local/sources/libpciaccess, local/sources/redox-drm, local/sources/sysinfo.
These were cleaned because the upstream per-component repo had no source
content; if any of these components is revived in the future, declare
a new 'submodule/<name>' branch on RedBear-OS and re-add the .gitmodules
entry.
Updates local/AGENTS.md § Migration status to reflect the completed state.
This commit is contained in:
+32
@@ -1,4 +1,36 @@
|
||||
[submodule "local/sources/base"]
|
||||
path = local/sources/base
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/base
|
||||
[submodule "local/sources/bootloader"]
|
||||
path = local/sources/bootloader
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/bootloader
|
||||
[submodule "local/sources/installer"]
|
||||
path = local/sources/installer
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/installer
|
||||
[submodule "local/sources/kernel"]
|
||||
path = local/sources/kernel
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/kernel
|
||||
[submodule "local/sources/libredox"]
|
||||
path = local/sources/libredox
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/libredox
|
||||
[submodule "local/sources/redoxfs"]
|
||||
path = local/sources/redoxfs
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/redoxfs
|
||||
[submodule "local/sources/relibc"]
|
||||
path = local/sources/relibc
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/relibc
|
||||
[submodule "local/sources/syscall"]
|
||||
path = local/sources/syscall
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/syscall
|
||||
[submodule "local/sources/userutils"]
|
||||
path = local/sources/userutils
|
||||
url = https://gitea.redbearos.org/vasilito/RedBear-OS.git
|
||||
branch = submodule/userutils
|
||||
|
||||
Reference in New Issue
Block a user