Skip to content
Snippets Groups Projects
Unverified Commit 72e57a8f authored by Martin Kröning's avatar Martin Kröning :crab: Committed by GitHub
Browse files

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
...@@ -29,12 +29,15 @@ default = [ ...@@ -29,12 +29,15 @@ default = [
acpi = [] acpi = []
dhcpv4 = [] dhcpv4 = []
dns = []
fs = [] fs = []
fsgsbase = [] fsgsbase = []
idle-poll = []
# Build the kernel with function instrument code for mcount-based tracing # Build the kernel with function instrument code for mcount-based tracing
instrument = [] instrument = []
mmap = []
pci = [] pci = []
pci-ids = ["pci"] pci-ids = ["pci"]
...@@ -44,15 +47,13 @@ randomize-layout = [] ...@@ -44,15 +47,13 @@ randomize-layout = []
# if this feature isn't set, the Virtio interface will be used # if this feature isn't set, the Virtio interface will be used
rtl8139 = ["pci"] rtl8139 = ["pci"]
shell = []
smp = [] smp = []
strace = []
tcp = [] tcp = []
udp = []
dns = []
trace = [] trace = []
udp = []
vga = [] vga = []
shell = []
idle-poll = []
mmap = []
vsock = [] vsock = []
[build-dependencies] [build-dependencies]
......
...@@ -96,20 +96,21 @@ impl KernelSrc { ...@@ -96,20 +96,21 @@ impl KernelSrc {
[ [
"acpi", "acpi",
"dhcpv4", "dhcpv4",
"dns",
"fs",
"fsgsbase", "fsgsbase",
"idle-poll",
"mmap",
"pci", "pci",
"pci-ids", "pci-ids",
"rtl8139",
"shell",
"smp", "smp",
"strace",
"tcp", "tcp",
"udp",
"trace", "trace",
"udp",
"vga", "vga",
"rtl8139",
"fs",
"shell",
"dns",
"mmap",
"idle-poll",
"vsock", "vsock",
] ]
.into_iter(), .into_iter(),
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment