Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
H
hermit-rs
Manage
Activity
Members
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Analyze
Contributor analytics
CI/CD analytics
Repository analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ACS
Public
HermitOS
hermit-rs
Commits
72e57a8f
Unverified
Commit
72e57a8f
authored
6 months ago
by
Martin Kröning
Committed by
GitHub
6 months ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #623 from hermit-os/strace
feat: add strace feature
parents
764dcda0
7933f2bb
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
hermit/Cargo.toml
+6
-5
6 additions, 5 deletions
hermit/Cargo.toml
hermit/build.rs
+8
-7
8 additions, 7 deletions
hermit/build.rs
with
14 additions
and
12 deletions
hermit/Cargo.toml
+
6
−
5
View file @
72e57a8f
...
...
@@ -29,12 +29,15 @@ default = [
acpi
=
[]
dhcpv4
=
[]
dns
=
[]
fs
=
[]
fsgsbase
=
[]
idle-poll
=
[]
# Build the kernel with function instrument code for mcount-based tracing
instrument
=
[]
mmap
=
[]
pci
=
[]
pci-ids
=
[
"pci"
]
...
...
@@ -44,15 +47,13 @@ randomize-layout = []
# if this feature isn't set, the Virtio interface will be used
rtl8139
=
[
"pci"
]
shell
=
[]
smp
=
[]
strace
=
[]
tcp
=
[]
udp
=
[]
dns
=
[]
trace
=
[]
udp
=
[]
vga
=
[]
shell
=
[]
idle-poll
=
[]
mmap
=
[]
vsock
=
[]
[build-dependencies]
...
...
This diff is collapsed.
Click to expand it.
hermit/build.rs
+
8
−
7
View file @
72e57a8f
...
...
@@ -96,20 +96,21 @@ impl KernelSrc {
[
"acpi"
,
"dhcpv4"
,
"dns"
,
"fs"
,
"fsgsbase"
,
"idle-poll"
,
"mmap"
,
"pci"
,
"pci-ids"
,
"rtl8139"
,
"shell"
,
"smp"
,
"strace"
,
"tcp"
,
"udp"
,
"trace"
,
"udp"
,
"vga"
,
"rtl8139"
,
"fs"
,
"shell"
,
"dns"
,
"mmap"
,
"idle-poll"
,
"vsock"
,
]
.into_iter
(),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment