diff options
author | Rob Landley <rob@landley.net> | 2016-03-08 13:39:23 -0600 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2016-03-08 13:39:23 -0600 |
commit | 1fd80657b06e016217efb7068b08fa9e4aa5650d (patch) | |
tree | f05b7325041818728b11d512cb525f2a6b23c460 /toys/pending | |
parent | 8d95074b7d034188af8542aaea0306d3670d71be (diff) | |
download | toybox-1fd80657b06e016217efb7068b08fa9e4aa5650d.tar.gz |
Add depends on TOYBOX_FORK for various commands that need nommu conversion.
(This should fix allyesconfig.)
Diffstat (limited to 'toys/pending')
-rw-r--r-- | toys/pending/bootchartd.c | 1 | ||||
-rw-r--r-- | toys/pending/crontab.c | 1 | ||||
-rw-r--r-- | toys/pending/openvt.c | 1 | ||||
-rw-r--r-- | toys/pending/tcpsvd.c | 1 |
4 files changed, 4 insertions, 0 deletions
diff --git a/toys/pending/bootchartd.c b/toys/pending/bootchartd.c index d903405f..7e5a136f 100644 --- a/toys/pending/bootchartd.c +++ b/toys/pending/bootchartd.c @@ -10,6 +10,7 @@ USE_BOOTCHARTD(NEWTOY(bootchartd, 0, TOYFLAG_STAYROOT|TOYFLAG_USR|TOYFLAG_BIN)) config BOOTCHARTD bool "bootchartd" default n + depends on TOYBOX_FORK help usage: bootchartd {start [PROG ARGS]}|stop|init diff --git a/toys/pending/crontab.c b/toys/pending/crontab.c index 67c8a543..80a881d7 100644 --- a/toys/pending/crontab.c +++ b/toys/pending/crontab.c @@ -9,6 +9,7 @@ USE_CRONTAB(NEWTOY(crontab, "c:u:elr[!elr]", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_STA config CRONTAB bool "crontab" default n + depends on TOYBOX_FORK help usage: crontab [-u user] FILE [-u user] [-e | -l | -r] diff --git a/toys/pending/openvt.c b/toys/pending/openvt.c index 0eb0c25a..042b897c 100644 --- a/toys/pending/openvt.c +++ b/toys/pending/openvt.c @@ -10,6 +10,7 @@ USE_DEALLOCVT(NEWTOY(deallocvt, ">1", TOYFLAG_USR|TOYFLAG_BIN|TOYFLAG_NEEDROOT)) config OPENVT bool "openvt" default n + depends on TOYBOX_FORK help usage: openvt [-c N] [-sw] [command [command_options]] diff --git a/toys/pending/tcpsvd.c b/toys/pending/tcpsvd.c index 16110e53..31c27610 100644 --- a/toys/pending/tcpsvd.c +++ b/toys/pending/tcpsvd.c @@ -12,6 +12,7 @@ USE_TCPSVD(OLDTOY(udpsvd, tcpsvd, TOYFLAG_USR|TOYFLAG_BIN)) config TCPSVD bool "tcpsvd" default n + depends on TOYBOX_FORK help usage: tcpsvd [-hEv] [-c N] [-C N[:MSG]] [-b N] [-u User] [-l Name] IP Port Prog usage: udpsvd [-hEv] [-c N] [-u User] [-l Name] IP Port Prog |