Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SkavOS
Manage
Activity
Members
Labels
Plan
Issues
3
Issue boards
Milestones
Wiki
Code
Merge requests
1
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
pigeonmoelleux
SkavOS
Compare revisions
10b6731eb75643042f07b824079586ff440c5cb0 to caaa1692c17f43f9becd0241faa54dc7d146c73a
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
pigeonmoelleux/skavos
Select target project
No results found
caaa1692c17f43f9becd0241faa54dc7d146c73a
Select Git revision
Swap
Target
pigeonmoelleux/skavos
Select target project
pigeonmoelleux/skavos
1 result
10b6731eb75643042f07b824079586ff440c5cb0
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (3)
chore: rebase master
· 2906231a
pigeonmoelleux
authored
1 year ago
2906231a
feat: PCI constants
· c366af1c
pigeonmoelleux
authored
1 year ago
c366af1c
feat: scanning PCI devices
· caaa1692
pigeonmoelleux
authored
1 year ago
caaa1692
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
src/kernel/device/mod.rs
+3
-0
3 additions, 0 deletions
src/kernel/device/mod.rs
src/kernel/device/pci.rs
+604
-0
604 additions, 0 deletions
src/kernel/device/pci.rs
src/kernel/mod.rs
+3
-1
3 additions, 1 deletion
src/kernel/mod.rs
with
610 additions
and
1 deletion
src/kernel/device/mod.rs
0 → 100644
View file @
caaa1692
//! Device interface
pub
mod
pci
;
This diff is collapsed.
Click to expand it.
src/kernel/device/pci.rs
0 → 100644
View file @
caaa1692
This diff is collapsed.
Click to expand it.
src/kernel/mod.rs
View file @
caaa1692
...
...
@@ -2,6 +2,7 @@
//!
//! This kernel is meant to be minimal and make easy the loading of other external modules
pub
mod
device
;
pub
mod
interrupt
;
pub
mod
memory
;
pub
mod
screen
;
...
...
@@ -65,9 +66,10 @@ pub fn init(boot_info: &'static mut BootInfo) {
// Initialization of the CPU interruptions
interrupt
::
init
(
rsdp_addr
);
info!
(
"Interruptions initialized"
);
println!
(
"{:?}"
,
device
::
pci
::
scan
());
println!
(
"Hello world!"
);
println!
(
"It is currently {}."
,
CMOS
.rtc
());
}
This diff is collapsed.
Click to expand it.