-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Feat: add initramfs implementation for vmm (#34) * feat(vmm): implemented automatic generation of rootfs with initramfs Signed-off-by: Muriel Paraire <[email protected]> * feat: image generation based off language Signed-off-by: Muriel Paraire <[email protected]> * feat(vmm): implemented automatic generation of rootfs with initramfs Signed-off-by: Muriel Paraire <[email protected]> * fix(vmm): fix logging & language order Signed-off-by: Muriel Paraire <[email protected]> * feat(vmm): one image per language Signed-off-by: Muriel Paraire <[email protected]> * feat(vmm): implemented initramfs Signed-off-by: Muriel Paraire <[email protected]> * fix(vmm): code cleanup Signed-off-by: Muriel Paraire <[email protected]> * fix(vmm): code cleanup Signed-off-by: Muriel Paraire <[email protected]> * fix(vmm): code cleanup Signed-off-by: Muriel Paraire <[email protected]> * fix: rust export for cargo agent and increase MMIO_GAP_END Signed-off-by: Mauran <[email protected]> * chore: lint Signed-off-by: Mauran <[email protected]> * fix: add back tracing Signed-off-by: Mauran <[email protected]> --------- Signed-off-by: Muriel Paraire <[email protected]> Signed-off-by: Mauran <[email protected]> Co-authored-by: Mauran <[email protected]> Signed-off-by: Font Vincent <[email protected]> * feat: shutdown vm Signed-off-by: Font Vincent <[email protected]> * docs: add readme (#38) * docs: add readme Signed-off-by: Mauran <[email protected]> --------- Signed-off-by: Mauran <[email protected]> Signed-off-by: Matéo Fernandez <[email protected]> Co-authored-by: Matéo Fernandez <[email protected]> Co-authored-by: Alexandre Sollier <[email protected]> Signed-off-by: Font Vincent <[email protected]> * remove(vmm): useless crate Signed-off-by: Font Vincent <[email protected]> * fix: lint Signed-off-by: Font Vincent <[email protected]> * fix: fmt Signed-off-by: Font Vincent <[email protected]> * fix: lint Signed-off-by: Font Vincent <[email protected]> --------- Signed-off-by: Muriel Paraire <[email protected]> Signed-off-by: Mauran <[email protected]> Signed-off-by: Font Vincent <[email protected]> Signed-off-by: Matéo Fernandez <[email protected]> Co-authored-by: Muriel Paraire <[email protected]> Co-authored-by: Mauran <[email protected]> Co-authored-by: Thomas Mauran <[email protected]> Co-authored-by: Matéo Fernandez <[email protected]> Co-authored-by: Alexandre Sollier <[email protected]>
- Loading branch information
1 parent
1e6e7c7
commit 8ea1568
Showing
9 changed files
with
142 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -14,4 +14,5 @@ pub enum Commands { | |
#[arg(short, long)] | ||
config_path: PathBuf, | ||
}, | ||
Shutdown {}, | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters