Skip to content

Commit

Permalink
Merge pull request #551 from stlankes/shell
Browse files Browse the repository at this point in the history
add option to start a simple shell as async task
  • Loading branch information
mkroening authored Mar 13, 2024
2 parents 009fa8f + ef6813d commit bd6965a
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 2 deletions.
3 changes: 2 additions & 1 deletion examples/tls/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ path = "../../hermit"
default-features = false

[features]
default = ["fsgsbase", "dhcpv4", "pci", "pci-ids", "acpi", "tcp"]
default = ["fsgsbase", "dhcpv4", "pci", "pci-ids", "acpi", "tcp", "shell"]
vga = ["hermit/vga"]
dhcpv4 = ["hermit/dhcpv4"]
pci = ["hermit/pci"]
Expand All @@ -40,3 +40,4 @@ instrument = ["hermit/instrument"]
trace = ["hermit/trace"]
rtl8139 = ["hermit/rtl8139"]
ci = []
shell = ["hermit/shell"]
1 change: 1 addition & 0 deletions hermit/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,7 @@ tcp = []
udp = []
trace = []
vga = []
shell = []

[build-dependencies]
flate2 = "1"
Expand Down
2 changes: 1 addition & 1 deletion hermit/build.rs
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ impl KernelSrc {
&mut cargo,
[
"acpi", "dhcpv4", "fsgsbase", "pci", "pci-ids", "smp", "tcp", "udp", "trace",
"vga", "rtl8139", "fs",
"vga", "rtl8139", "fs", "shell",
]
.into_iter(),
);
Expand Down

0 comments on commit bd6965a

Please sign in to comment.