1
Fork 0
mirror of https://github.com/RGBCube/uutils-coreutils synced 2025-07-30 12:37:49 +00:00

uucore: read from sys:uname on Redox

This commit is contained in:
Alex Lyon 2018-03-05 02:53:08 -08:00
parent 8ba5fae6e3
commit 15aaa8215e
4 changed files with 86 additions and 21 deletions

View file

@ -83,14 +83,14 @@ generic = [
"tail",
"test",
"whoami",
"redox"
"redox_generic"
]
# Feature "redox" contains the exclusive list of utilities
# Feature "redox"/"redox_generic" contains the exclusive list of utilities
# that can be compiled and run on redox. Should be built
# with --no-default-features when selecting this feature.
# TODO: merge with "generic" to avoid duplication once we support
# all utilities in that feature.
redox = [
redox_generic = [
# And maybe all generic utilities
"base32",
@ -140,6 +140,10 @@ redox = [
"wc",
"yes",
]
redox = [
"uname",
"redox_generic"
]
test_unimplemented = []
nightly = []
default = ["generic", "unix"]