Skip to content

Commit

Permalink
feat: seperate logging from kernel
Browse files Browse the repository at this point in the history
  • Loading branch information
yfblock committed Apr 17, 2024
1 parent 03fc0e8 commit f1c77ac
Show file tree
Hide file tree
Showing 7 changed files with 5 additions and 154 deletions.
1 change: 1 addition & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion kernel/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ serde_derive = "1.0.136"
allocator = { path = "../crates/allocator" }
crate_interface = { git = "https://github.com/Byte-OS/crate_interface.git" }
frame_allocator = { git = "https://github.com/Byte-OS/bit_frame_allocator.git" }
logging = { path = "../modules/logging" }
logging = { git = "https://github.com/Byte-OS/logging.git" }
log = "0.4"
devices = { git = "https://github.com/Byte-OS/devices.git" }
hal = { git = "https://github.com/Byte-OS/hal.git" }
Expand Down
2 changes: 1 addition & 1 deletion modules/devfs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
vfscore = { git = "https://github.com/Byte-OS/vfscore.git" }
logging = { path = "../logging" }
logging = { git = "https://github.com/Byte-OS/logging.git" }
devices = { git = "https://github.com/Byte-OS/devices.git" }
log = "0.4"
sync = { git = "https://github.com/Byte-OS/sync.git" }
Expand Down
2 changes: 1 addition & 1 deletion modules/executor/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ edition = "2021"

[dependencies]
crossbeam-queue = { version = "0.3.8", default-features = false, features = ["alloc"] }
logging = { path = "../logging" }
logging = { git = "https://github.com/Byte-OS/logging.git" }
arch = { git = "https://github.com/Byte-OS/arch.git" }
sync = { git = "https://github.com/Byte-OS/sync.git" }
frame_allocator = { git = "https://github.com/Byte-OS/bit_frame_allocator.git" }
Expand Down
2 changes: 1 addition & 1 deletion modules/fs/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ log = "0.4"
vfscore = { git = "https://github.com/Byte-OS/vfscore.git" }
sync = { git = "https://github.com/Byte-OS/sync.git" }
devices = { git = "https://github.com/Byte-OS/devices.git" }
logging = { path = "../logging" }
logging = { git = "https://github.com/Byte-OS/logging.git" }
devfs = { path = "../devfs" }
ramfs = { path = "../ramfs" }
procfs = { path = "../procfs" }
Expand Down
12 changes: 0 additions & 12 deletions modules/logging/Cargo.toml

This file was deleted.

138 changes: 0 additions & 138 deletions modules/logging/src/lib.rs

This file was deleted.

0 comments on commit f1c77ac

Please sign in to comment.