diff options
author | Rob Landley <rob@landley.net> | 2007-04-23 15:45:55 -0400 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-04-23 15:45:55 -0400 |
commit | c92fde0bc75ade9d06c0d843c4693b9e2e338938 (patch) | |
tree | ae47a9a3ea727cc9170c67fbc044aa039f22a480 /toys/Config.in | |
parent | 4f34f0aa4d4f0874a6dbcafe8e43cc8ef2182092 (diff) | |
download | toybox-c92fde0bc75ade9d06c0d843c4693b9e2e338938.tar.gz |
Add sync and an incomplete version of mdev.
Diffstat (limited to 'toys/Config.in')
-rw-r--r-- | toys/Config.in | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/toys/Config.in b/toys/Config.in index 7768ec89..5634436c 100644 --- a/toys/Config.in +++ b/toys/Config.in @@ -83,6 +83,28 @@ config HELLO help A hello world program. You don't need this. +config MDEV + bool "mdev" + default n + help + usage: mdev [-s] + + Create devices in /dev using information from /sys. + + -s Scan all entries in /sys to populate /dev. + +config MDEV_CONF + bool "Configuration file for mdev" + default n + help + The mdev config file (/etc/mdev.conf) contains lines that look like: + hd[a-z][0-9]* 0:3 660 + + Each line must contain three whitespace separated fields. The first + field is a regular expression matching one or more device names, and + the second and third fields are uid:gid and file permissions for + matching devies. + config MKE2FS bool "mke2fs" default n @@ -172,6 +194,14 @@ config PWD The print working directory command prints the current directory. +config SYNC + bool "sync" + default n + help + usage: sync + + Write pending cached data to disk (synchronize), blocking until done. + config TOUCH bool "touch" default n |