Skip to content

Commit

Permalink
Novusk v3.
Browse files Browse the repository at this point in the history
  • Loading branch information
NathanMcMillan54 committed Jan 12, 2022
1 parent 79fd1a6 commit 1b7d3dc
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 7 deletions.
2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[package]
name = "novusk"
version = "3.0.0-beta-kernel-v3.2"
version = "3.0.0"
authors = ["Nathan McMillan <[email protected]>"]
edition = "2021"

Expand Down
2 changes: 1 addition & 1 deletion include/novusk/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ use crate::kernel::syscalls::arch_syscalls::SYSCALL_TABLE;
pub const MAJOR_VERSION: i32 = 3;
pub const MINOR_VERSION: i32 = 0;
pub const REALLY_MINOR_VERSION: i32 = 0;
pub const VERSION_NAME: &str = "";
pub const VERSION_NAME: &str = "Coffee";

// -----------------
// Version/sys_version
Expand Down
4 changes: 2 additions & 2 deletions init/src/version.rs
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ impl Banner {
}

pub fn display(&mut self) {
printk!("______________________\n");
printk!("________________________\n");
printk!("| Novusk v{}.{}.{}-{} |\n", MAJOR_VERSION, MINOR_VERSION, REALLY_MINOR_VERSION, VERSION_NAME);
printk!("----------------------\n");
printk!("------------------------\n");
}
}

Expand Down
3 changes: 0 additions & 3 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -62,9 +62,6 @@ pub mod drivers {
#[cfg(target_arch = "x86_64")]
pub use x86_64::kernel::task as multitask;

/* #[cfg(target_arch = "aarch64")]
pub use rpi;*/

pub mod firmware {
pub use usbd;
}
Expand Down

0 comments on commit 1b7d3dc

Please sign in to comment.