Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
34 commits
Select commit Hold shift + click to select a range
84bc4ff
feat(phase1): Complete Phase 1 - Stabilize operational base
andrescastiglia May 3, 2026
2b1abfb
fmt
andrescastiglia May 3, 2026
ffb3527
fix(clippy): Resolve Clippy warnings in ffi.rs and ffi_commands.rs
andrescastiglia May 3, 2026
b58ea26
fix(ffi_commands): Handle non-existent objects in DLTOBJ
andrescastiglia May 3, 2026
b254d82
fix(tests): Make regression tests meaningful and non-panicking
andrescastiglia May 3, 2026
2b1c700
fix(bootstrap, sbmjob): Report metadata failures and fix CPF propagation
andrescastiglia May 3, 2026
3f0cf62
fix(ffi): Remove duplicate l400_set_cpf, keep l400_set_status_cpf
andrescastiglia May 3, 2026
3cb9f74
fix(ffi_commands): Map NotFound errors to CPF9801 in authority checks
andrescastiglia May 3, 2026
d639cd6
fix(clippy): Resolve collapsible_if warnings in ffi_commands.rs
andrescastiglia May 3, 2026
0072e4d
fix(ffi_commands): Fix authority checks and regression tests
andrescastiglia May 3, 2026
ac14501
fmt
andrescastiglia May 3, 2026
4e5df62
feat(phase2): Implement Phase 2 - Installation and first boot
andrescastiglia May 3, 2026
82c1e71
feat(phase3): Implement Phase 3 - PTFs y Actualización (SERVICE option)
andrescastiglia May 3, 2026
defdddd
docs(phase3): Mark Phase 3 as 90% completed (TUI screen pending)
andrescastiglia May 3, 2026
d4d038d
feat(phase3): Complete Phase 3 - PTFs y Actualización (100%)
andrescastiglia May 3, 2026
fbb55b5
feat(phase4): Implement Phase 4 - Backup/Restore (*SAVF option, mega.io)
andrescastiglia May 3, 2026
8dfdcfa
feat(phase5): Implement Phase 5 - User profiles and authorities (V1)
andrescastiglia May 3, 2026
f0afb22
feat(phase5): Apply runtime authorization to all Phase 5 admin commands
andrescastiglia May 3, 2026
d049d67
feat(phase6): Implement Phase 6 - Work management and job queues (V1)
andrescastiglia May 3, 2026
ffb359f
feat(phase7): Implement Phase 7 - Spool and output queues (V1)
andrescastiglia May 4, 2026
becba93
mega.io
andrescastiglia May 4, 2026
98765ce
Phase 8: Strengthen PF/LF/DTAQ with CPF errors
andrescastiglia May 4, 2026
854ab23
Phase 8: Mark as COMPLETED (100%)
andrescastiglia May 4, 2026
75f204a
Fase 9
andrescastiglia May 4, 2026
121807a
fix: Resolve all Clippy warnings (33 issues)
andrescastiglia May 4, 2026
7f016c8
fix(PR#13): Address all code review comments
andrescastiglia May 4, 2026
e58b8c9
fix: Add missing FFI stubs and fix compilation errors
andrescastiglia May 4, 2026
a384ffb
Merge pull request #13 from andrescastiglia/develop
andrescastiglia May 4, 2026
e565c81
fix(ptf): Parse TOML manifests using section-aware lookup
andrescastiglia May 4, 2026
cae0935
fix(e2e): Remove stray braces breaking QEMU install script
andrescastiglia May 4, 2026
b22d5f9
fix(backup): Store SAVF manifest in xattr instead of overwriting archive
andrescastiglia May 4, 2026
274c373
fix: Address multiple issues across codebase
andrescastiglia May 4, 2026
9d4bc15
fix(loader): Add xattr crate dependency
andrescastiglia May 4, 2026
ac330e0
Merge pull request #15 from andrescastiglia/develop
andrescastiglia May 4, 2026
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
95 changes: 95 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
[workspace]
resolver = "2"

members = [
"l400-ebpf",
"l400-ebpf-common",
Expand All @@ -8,6 +9,8 @@ members = [
"cl_compiler/clc",
"libl400",
"os400-tui",
"l400-ptf-server",
"l400-ptf-create",
]

[profile.dev]
Expand Down
Loading
Loading