remove path

limine
Able 2022-12-06 13:24:04 -06:00
parent 76e2bd286b
commit 8847bfa5c6
Signed by untrusted user: able
GPG Key ID: 0BD8B45C30DCA887
2 changed files with 3 additions and 19 deletions

View File

@ -57,25 +57,6 @@ impl acpi::AcpiHandler for AcpiStruct {
// mutex
// });
#[derive(Debug)]
pub struct Path {
pub path: Vec<String>,
}
impl Path {
pub fn new(path: String) -> Self {
let mut path_vec_string = vec![];
for part in path.split(&['\\', '/'][..]) {
path_vec_string.push(part.to_string());
}
Path {
path: path_vec_string,
}
}
}
/// Experimental scratchpad for testing.
pub fn scratchpad() {
// bruh();

View File

@ -17,3 +17,6 @@ TERM_BACKDROP=008080
KERNEL_CMDLINE=
# Setting a default resolution for the framebuffer
RESOLUTION=800x600x24
MODULE_PATH=boot:///boot/initrd.tar
MODULE_CMDLINE=This is the first module.