Skip to content

Commit

Permalink
feat: support graphic
Browse files Browse the repository at this point in the history
  • Loading branch information
yfblock committed Aug 4, 2024
1 parent 73fc87e commit 14a2de0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ logging = { git = "https://github.com/Byte-OS/logging.git", features = []}
log = "0.4"
devices = { git = "https://github.com/Byte-OS/devices.git" }
hal = { git = "https://github.com/Byte-OS/hal.git" }
polyhal = { git = "https://github.com/Byte-OS/polyhal.git", features = ["trap"]}
polyhal = { git = "https://github.com/Byte-OS/polyhal.git", features = ["trap", "graphic", "logger"]}
fs = { git = "https://github.com/Byte-OS/fs.git" }
fdt = "0.1.5"
executor = { git = "https://github.com/Byte-OS/executor.git" }
Expand Down
2 changes: 1 addition & 1 deletion kernel/src/main.rs
Original file line number Diff line number Diff line change
Expand Up @@ -155,7 +155,7 @@ fn main(hart_id: usize) {
println!("{}", str);

// initialize logging module
logging::init(option_env!("LOG"));
// logging::init(option_env!("LOG"));

polyhal::common::init(&PageAllocImpl);
get_mem_areas().into_iter().for_each(|(start, size)| {
Expand Down

0 comments on commit 14a2de0

Please sign in to comment.