diff --git a/ableos/Cargo.toml b/ableos/Cargo.toml index 9b0bbb6..bbe8366 100644 --- a/ableos/Cargo.toml +++ b/ableos/Cargo.toml @@ -8,7 +8,16 @@ version = "0.1.0" panic = "abort" [package.metadata.bootimage] -run-args = ["-serial", "stdio", "-smp", "cores=2"] +run-args = [ + "-serial", + "stdio", + "-smp", + "cores=2", + "-device", + "virtio-blk-pci,drive=drive0,id=virtblk0,num-queues=4", + "-drive", + "file=disk.qcow2,if=none,id=drive0", +] test-args = [ "-device", "isa-debug-exit,iobase=0xf4,iosize=0x04", diff --git a/ableos/disk.qcow2 b/ableos/disk.qcow2 new file mode 100644 index 0000000..2b9c37c Binary files /dev/null and b/ableos/disk.qcow2 differ diff --git a/ableos/src/experiments/clparse.rs b/ableos/src/experiments/clparse.rs index 923b9f8..c4b12d4 100644 --- a/ableos/src/experiments/clparse.rs +++ b/ableos/src/experiments/clparse.rs @@ -3,8 +3,11 @@ clparse * A simple command line parser for ableOS */ +use alloc::collections::HashMap; use std::collections::HashMap; + const CURRENT_PATH: &str = "file://test/"; + #[derive(Debug)] struct Command { root_command: String, diff --git a/ableos/src/kmain.rs b/ableos/src/kmain.rs index 3b3dab9..eeec093 100644 --- a/ableos/src/kmain.rs +++ b/ableos/src/kmain.rs @@ -1,6 +1,6 @@ #![allow(clippy::empty_loop)] -use crate::experiments::info::master; +use crate::{experiments::info::master, relib::clparse}; use { crate::{ @@ -52,9 +52,11 @@ pub fn kernel_main() -> ! { ); println!("$PINK$Hi$RED$ from$GREEN$ able!$RESET$"); - println!("$RED$hi$RESET$"); + { + clparse::test(); + } // stack_overflow(); // crate::arch::shutdown(); sloop() diff --git a/ableos/src/relib/clparse/mod.rs b/ableos/src/relib/clparse/mod.rs index c953fc2..a5969cf 100644 --- a/ableos/src/relib/clparse/mod.rs +++ b/ableos/src/relib/clparse/mod.rs @@ -63,9 +63,13 @@ impl Command { } } } -fn test() { +pub fn test() { let x = Command::parse("hi?there=uwu&hi=abc".to_string()); let y = &x.arguments[0]; - println!("{:?}", y); + + trace!("{}", x.root_command); + trace!("{:?}", y); + trace!("{}", y.key); + trace!("{}", y.value); }