aboutsummaryrefslogtreecommitdiff
path: root/toolchain
AgeCommit message (Collapse)AuthorFilesLines
2026-03-30refactor: reorganize kernel structure and implement memory management zonesHEADmainBobby1-0/+33
2026-03-25Add AFS and FAT32 filesystem implementationsBobby5-352/+138
- Introduced AFS allocation operations with bitmap management in `allocate.zig`. - Implemented stack write operations for AFS in `stack.zig`, including record creation functions. - Added unit write operations for AFS in `unit.zig`, enabling data writing to spans. - Created a unified write interface for AFS in `write.zig` to streamline write operations. - Established FAT32 constants and types in `constants.zig` and `types.zig`, respectively. - Developed FAT32 filesystem structure in `fat32.zig`, including re-exports for common types. - Implemented cluster operations for FAT32 in `cluster.zig`, handling cluster validation and reading. - Added read operations for FAT32 in `read.zig`, integrating cluster and stack functionalities. - Created entry types for FAT32 in `entry.zig`, supporting standard and long identity entries. - Developed boot sector creation and initialization functions in `boot.zig` for FAT32. - Implemented entry creation functions in `entry.zig` for FAT32, supporting short and long names. - Introduced shared filesystem libraries in `fs.zig` and `shared.zig` for better modularity. - Added mkafsdisk AFS adapter in `toolchain/mkafsdisk/afs/afs.zig` for host file I/O operations.
2026-02-24Add AFS Writer and mkafsdisk main functionalityBobby4-0/+1151
2026-02-24Bunch of stuff moved as .old for new arch changeBobby9-1701/+0
2026-02-20fix: Update memory section start address in linker script to 512MBBobby1-1/+1
2026-02-20feat: Add used_clusters tracking in AFS and update disk info retrievalBobby2-2/+9
2026-02-15refactor: Improve library dependency collection and management in build processBobby1-109/+115
2026-02-15refactor: Enhance library dependency management and build processBobby1-46/+132
2026-01-27feat: Add owner and permission fields to AFS directory entry structureBobby2-4/+37
2025-12-30fix: update ELF load address to start at 16MB after kernelBobby1-1/+1
2025-12-16library dependent binariesBobby2-0/+156
2025-12-11added linker for AKIBAELF binariesBobby1-0/+35
2025-12-11added AKIBAELF builder programBobby2-0/+136
2025-12-08update Dockerfile to build grub for AkibaBobby1-4/+11
2025-12-08AFS disk image creator tool addedBobby2-0/+784
2025-12-08custom AFS module for GRUBBobby1-0/+425
2025-11-27move build system to zig, Docker for non linux systemsBobby1-0/+26