feature/refactor
develop
feature/refactor -> develop
Full codebase reorganization into a hierarchical, dot-separated namespace convention where unit names mirror directory paths.
Source tree restructured (200 files, 3 commits):
src/prog/
app..pas
src/fault/
arch.x86.fault..pas
arch.x86.faults
arch.x86.fault
src/isr/
arch.x86.isr..pas
src/include/
driver.
driver.net.
driver.net.proto.
net/proto/
driver.netdev.
driver.net.dev.
net/dev/
driver.storage.con.
driver.storage.ctl.
con
ctl/
fs/
vol/
driver.intf.serial
driver.io.serial
l1/
l5/
kernel.pas
stdio.pas
syslog.pas
io/io.stdio.pas
io/io.syslog.pas
processmanager.pas
proc/proc.mgr.pas
lmemorymanager.pas
memory/memory.heap.pas
linker.script
version
lmemorymanager
types
driver.net.dev.e1000
E1000
200 files changed, 6273 insertions(+), 5528 deletions(-)
Reorganize all source files into a hierarchical namespace structure with dot-separated unit names matching directory paths. Major changes: - src/prog/ -> src/app/ (app.*.pas) - src/fault/ -> src/arch/x86/fault/ (arch.x86.fault.*.pas) - src/isr/ -> src/arch/x86/isr/ (arch.x86.isr.*.pas) - src/include/ -> src/core/ (core.*.pas) + src/arch/x86/ - src/driver/ subtree reorganized with driver.* namespace prefixes - src/driver/storage/con/ -> src/driver/storage/ctl/ (Windows reserved name fix) - src/driver/storage/ split into con(ctl)/fs/vol/ subdirectories - src/driver/net/ flattened from l1-l5 layers to driver.net.*.pas - kernel.pas -> asuro.pas, faults.pas -> arch.x86.faults.pas - stdio.pas/syslog.pas -> io/io.stdio.pas, io/io.syslog.pas - processmanager.pas -> proc/proc.mgr.pas - lmemorymanager.pas -> memory/memory.heap.pas - Build scripts moved to toolchain/ - Added compat/ shims for lmemorymanager and types - Added doc/namespace.md tracking the refactor 197 files changed, 6292 insertions(+), 5526 deletions(-)
- Rename driver.intf.serial -> driver.io.serial (intf/ -> io/) - Move net protocols to driver.net.proto.* (net/ -> net/proto/) - arp, dhcp, eth2, icmp, ipv4, tcp, udp - Move netdev to driver.net.dev.* (netdev/ -> net/dev/) - e1000 - Move driver.net.pas into driver/net/ - Move driver.video.pas into driver/video/ - Rename arch.x86.faults -> arch.x86.fault, move to fault/ dir - Move driver.storage.ctl.ahci.pas into ctl/ahci/ - Move driver.storage.ctl.ide.pas into ctl/ide/ - Move linker.script and version to toolchain/ - Update all unit references and namespace doc 35 files changed, 237 insertions(+), 234 deletions(-)
- Shorten 'driver.video.windows: ' label to 'Windows: ' in uidebug - Shorten e1000 terminal command name from 'driver.net.dev.e1000' to 'E1000' - Auto-generated version bump (build artifact) 3 files changed, 7 insertions(+), 7 deletions(-)
No dependencies set.
The note is not visible to the blocked user.
feature/refactor->developNamespace Restructure
Full codebase reorganization into a hierarchical, dot-separated namespace convention where unit names mirror directory paths.
What changed
Source tree restructured (200 files, 3 commits):
src/prog/-> app - all programs renamed toapp..passrc/fault/-> fault - fault handlers becomearch.x86.fault..pas, plusarch.x86.faults->arch.x86.fault(moved into fault/ dir)src/isr/-> isr - ISRs becomearch.x86.isr..passrc/include/-> core + x86 - core utilities, data structures, encoders, graphics helpersdriver.namespace prefixes:driver.net.->driver.net.proto.(moved tonet/proto/)driver.netdev.->driver.net.dev.(moved tonet/dev/)driver.storage.con.->driver.storage.ctl.(conis a Windows reserved name)ctl/,fs/,vol/subdirectoriesdriver.intf.serial->driver.io.seriall1/-l5/) flattenedkernel.pas-> asuro.passtdio.pas/syslog.pas->io/io.stdio.pas,io/io.syslog.pasprocessmanager.pas->proc/proc.mgr.paslmemorymanager.pas->memory/memory.heap.paslinker.scriptandversion)lmemorymanagerandtypesdriver.net.dev.e1000->E1000)Stats