-
Notifications
You must be signed in to change notification settings - Fork 19
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add partial implementation of mount #46
base: master
Are you sure you want to change the base?
Changes from 14 commits
34b38c8
37611f4
b6de5b3
1a47d9f
9ac55c2
eecb068
b698881
9751f15
7db42e1
d970eb4
df7afcb
715a4bb
41c5433
2c6a884
2f51827
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -21,10 +21,11 @@ loginutils = [ | |
"getty" | ||
] | ||
|
||
mount = ["libc", "lazy_static"] | ||
# XXX: temporary until renaming dependencies is supported | ||
tar_util = ["tar", "globset"] | ||
lsb = [ | ||
"tar" | ||
"mount", "tar" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Please split into multiple lines. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Done. |
||
] | ||
|
||
ping = ["chrono", "crossbeam", "libc", "pnet", "byteorder", "trust-dns-resolver", "mio", "socket2"] | ||
|
@@ -100,6 +101,7 @@ kernel32-sys = "0.2.2" | |
winapi = { version = "0.3.5", features = ["namedpipeapi"] } | ||
nix = "0.10.0" | ||
|
||
lazy_static = { version = "1.0.1", optional = true } | ||
libc = { version = "0.2.40", optional = true } | ||
platform-info = { version = "0.0.1", optional = true } | ||
uucore = { git = "https://github.com/uutils/coreutils", features = ["encoding", "fs", "mode", "parse_time"], optional = true } | ||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Please split into multiple lines.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Done.