aboutsummaryrefslogtreecommitdiff
path: root/coreutils
diff options
context:
space:
mode:
Diffstat (limited to 'coreutils')
-rw-r--r--coreutils/Config.src2
-rw-r--r--coreutils/date.c2
2 files changed, 3 insertions, 1 deletions
diff --git a/coreutils/Config.src b/coreutils/Config.src
index d4c9e0541..780b73fda 100644
--- a/coreutils/Config.src
+++ b/coreutils/Config.src
@@ -591,6 +591,7 @@ config FEATURE_SPLIT_FANCY
591config STAT 591config STAT
592 bool "stat" 592 bool "stat"
593 default y 593 default y
594 depends on PLATFORM_LINUX # statfs()
594 help 595 help
595 display file or filesystem status. 596 display file or filesystem status.
596 597
@@ -606,6 +607,7 @@ config FEATURE_STAT_FORMAT
606config STTY 607config STTY
607 bool "stty" 608 bool "stty"
608 default y 609 default y
610 depends on PLATFORM_LINUX
609 help 611 help
610 stty is used to change and print terminal line settings. 612 stty is used to change and print terminal line settings.
611 613
diff --git a/coreutils/date.c b/coreutils/date.c
index c737f09f3..cb41724af 100644
--- a/coreutils/date.c
+++ b/coreutils/date.c
@@ -72,7 +72,7 @@
72//config:config FEATURE_DATE_NANO 72//config:config FEATURE_DATE_NANO
73//config: bool "Support %[num]N nanosecond format specifier" 73//config: bool "Support %[num]N nanosecond format specifier"
74//config: default n 74//config: default n
75//config: depends on DATE 75//config: depends on DATE && PLATFORM_LINUX # syscall(__NR_clock_gettime)
76//config: help 76//config: help
77//config: Support %[num]N format specifier. Adds ~250 bytes of code. 77//config: Support %[num]N format specifier. Adds ~250 bytes of code.
78//config: 78//config: