diff options
author | Ron Yorston <rmy@pobox.com> | 2022-05-16 13:56:05 +0100 |
---|---|---|
committer | Ron Yorston <rmy@pobox.com> | 2022-05-16 14:03:51 +0100 |
commit | 7eff2ff404f2a4961be927de6bd23b7fb702080e (patch) | |
tree | 04d0e0252e904733a723bb536e9aef3504f0325f /configs | |
parent | 7fb95a2a569ca6d68dad4cef5b7b299e9fe68e2b (diff) | |
download | busybox-w32-7eff2ff404f2a4961be927de6bd23b7fb702080e.tar.gz busybox-w32-7eff2ff404f2a4961be927de6bd23b7fb702080e.tar.bz2 busybox-w32-7eff2ff404f2a4961be927de6bd23b7fb702080e.zip |
jn: new applet
Add a Windows-specific applet to create a directory junction.
Usage: jn DIR JUNC
where DIR must be an existing directory on a local drive and JUNC
must not currently exist.
There isn't a simple WIN32 API to create directory junctions.
The implementation of mklink in ReactOS provided useful inspiration.
Diffstat (limited to 'configs')
-rw-r--r-- | configs/mingw32_defconfig | 1 | ||||
-rw-r--r-- | configs/mingw64_defconfig | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/configs/mingw32_defconfig b/configs/mingw32_defconfig index 65465e81b..78e359500 100644 --- a/configs/mingw32_defconfig +++ b/configs/mingw32_defconfig | |||
@@ -816,6 +816,7 @@ CONFIG_FEATURE_CROND_DIR="" | |||
816 | # CONFIG_I2CTRANSFER is not set | 816 | # CONFIG_I2CTRANSFER is not set |
817 | CONFIG_ICONV=y | 817 | CONFIG_ICONV=y |
818 | CONFIG_INOTIFYD=y | 818 | CONFIG_INOTIFYD=y |
819 | CONFIG_JN=y | ||
819 | CONFIG_LESS=y | 820 | CONFIG_LESS=y |
820 | CONFIG_FEATURE_LESS_MAXLINES=9999999 | 821 | CONFIG_FEATURE_LESS_MAXLINES=9999999 |
821 | CONFIG_FEATURE_LESS_BRACKETS=y | 822 | CONFIG_FEATURE_LESS_BRACKETS=y |
diff --git a/configs/mingw64_defconfig b/configs/mingw64_defconfig index bd8750e98..c88da8007 100644 --- a/configs/mingw64_defconfig +++ b/configs/mingw64_defconfig | |||
@@ -816,6 +816,7 @@ CONFIG_FEATURE_CROND_DIR="" | |||
816 | # CONFIG_I2CTRANSFER is not set | 816 | # CONFIG_I2CTRANSFER is not set |
817 | CONFIG_ICONV=y | 817 | CONFIG_ICONV=y |
818 | CONFIG_INOTIFYD=y | 818 | CONFIG_INOTIFYD=y |
819 | CONFIG_JN=y | ||
819 | CONFIG_LESS=y | 820 | CONFIG_LESS=y |
820 | CONFIG_FEATURE_LESS_MAXLINES=9999999 | 821 | CONFIG_FEATURE_LESS_MAXLINES=9999999 |
821 | CONFIG_FEATURE_LESS_BRACKETS=y | 822 | CONFIG_FEATURE_LESS_BRACKETS=y |