diff options
author | Rob Landley <rob@landley.net> | 2007-04-29 19:55:21 -0400 |
---|---|---|
committer | Rob Landley <rob@landley.net> | 2007-04-29 19:55:21 -0400 |
commit | 0c93f6c7ab7aab56b39793a2317a9bff16b8ae04 (patch) | |
tree | 275dcaf29f05b6f15cf87327746d6e3c3d07e5ac /toys/Config.in | |
parent | c92fde0bc75ade9d06c0d843c4693b9e2e338938 (diff) | |
download | toybox-0c93f6c7ab7aab56b39793a2317a9bff16b8ae04.tar.gz |
Add readlink, xreadlink(), and change xrealloc() to not fight the stupid
compiler so much.
Diffstat (limited to 'toys/Config.in')
-rw-r--r-- | toys/Config.in | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/toys/Config.in b/toys/Config.in index 5634436c..5aae5c54 100644 --- a/toys/Config.in +++ b/toys/Config.in @@ -194,6 +194,22 @@ config PWD The print working directory command prints the current directory. +config READLINK + bool "readlink" + default n + help + usage: readlink + + Show what a symbolic link points to. + +config READLINK_FINAL + bool "readlink -f" + default n + help + usage: readlink [-f] + + -f Show final location, including normal files and multiple symlinks. + config SYNC bool "sync" default n |