Skip to content

Commit 49e844b

Browse files
committed
busybox: enable crond and crontab applets [#381]
Originally omitted on the busybox-w32 FRP-6075 upgrade (b79f08a).
1 parent 91f970d commit 49e844b

1 file changed

Lines changed: 12 additions & 13 deletions

File tree

Dockerfile

Lines changed: 12 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -616,7 +616,6 @@ RUN cat $PREFIX/src/busybox-*.patch | patch -p1 \
616616
&& sed -ri 's/^(CONFIG_ASCII)=y/\1=n/' .config \
617617
&& sed -ri -e 's/^(CONFIG_BASH_IS_ASH)=y/\1=n/' \
618618
-e 's/^# (CONFIG_BASH_IS_NONE) is not set/\1=y/' .config \
619-
&& sed -ri 's/^(CONFIG_CRON\w*)=y/\1=n/' .config \
620619
&& sed -ri 's/^(CONFIG_DPKG\w*)=y/\1=n/' .config \
621620
&& sed -ri 's/^(CONFIG_FEATURE_FAIL_IF_UTF8_MANIFEST_UNSUPPORTED)=y/\1=n/' .config \
622621
&& sed -ri 's/^(CONFIG_FTP\w*)=y/\1=n/' .config \
@@ -641,18 +640,18 @@ RUN cat $PREFIX/src/busybox-*.patch | patch -p1 \
641640
RUN $ARCH-gcc -Oz -fno-asynchronous-unwind-tables -Wl,--gc-sections -s \
642641
-nostdlib -o alias.exe $PREFIX/src/busybox-alias.c -lkernel32 \
643642
&& printf '%s\n' arch ash awk base32 base64 basename bc bunzip2 bzcat \
644-
bzip2 cal cat chattr chmod cksum clear cmp comm cp cpio crc32 cut date \
645-
dc dd df diff dirname dos2unix du echo ed egrep env expand expr factor \
646-
false fgrep find fold free fsync getopt grep groups gunzip gzip hd \
647-
head hexdump httpd iconv id inotifyd install ipcalc jn join kill killall \
648-
lash less ln logname ls lsattr lzcat lzma lzop lzopcat md5sum mkdir \
649-
mktemp mv nc nl nproc od paste patch pgrep pidof pipe_progress pkill \
650-
printenv printf ps pwd readlink realpath reset rev rm rmdir sed seq sh \
651-
sha1sum sha256sum sha3sum sha512sum shred shuf sleep sort split \
652-
ssl_client stat su sum sync tac tail tar tee test time timeout touch \
653-
tr true truncate ts ttysize uname uncompress unexpand uniq unix2dos \
654-
unlzma unlzop unxz unzip uptime usleep uudecode uuencode watch \
655-
wc wget which whoami whois xargs xz xzcat yes zcat \
643+
bzip2 cal cat chattr chmod cksum clear cmp comm cp cpio crc32 crond \
644+
crontab cut date dc dd df diff dirname dos2unix du echo ed egrep env \
645+
expand expr factor false fgrep find fold free fsync getopt grep groups \
646+
gunzip gzip hd head hexdump httpd iconv id inotifyd install ipcalc jn \
647+
join kill killall lash less ln logname ls lsattr lzcat lzma lzop \
648+
lzopcat md5sum mkdir mktemp mv nc nl nproc od paste patch pgrep pidof \
649+
pipe_progress pkill printenv printf ps pwd readlink realpath reset rev \
650+
rm rmdir sed seq sh sha1sum sha256sum sha3sum sha512sum shred shuf \
651+
sleep sort split ssl_client stat su sum sync tac tail tar tee test \
652+
time timeout touch tr true truncate ts ttysize uname uncompress \
653+
unexpand uniq unix2dos unlzma unlzop unxz unzip uptime usleep uudecode \
654+
uuencode watch wc wget which whoami whois xargs xz xzcat yes zcat \
656655
| xargs -I{} cp alias.exe /out/bin/{}.exe
657656

658657
FROM cross AS build-vim

0 commit comments

Comments
 (0)