From 4c61af227b0fb3e028c877dc1c2e0b6513960762 Mon Sep 17 00:00:00 2001 From: davidovski Date: Sun, 11 Dec 2022 18:08:51 +0000 Subject: Updated linux --- repo/toybox/config | 4 ++-- repo/toybox/diffutils.xibuild | 4 ++-- repo/toybox/toybox.xibuild | 20 +++++++++++--------- repo/toybox/wget.xibuild | 7 ------- 4 files changed, 15 insertions(+), 20 deletions(-) delete mode 100644 repo/toybox/wget.xibuild (limited to 'repo/toybox') diff --git a/repo/toybox/config b/repo/toybox/config index 14560b4..b216519 100644 --- a/repo/toybox/config +++ b/repo/toybox/config @@ -311,8 +311,8 @@ CONFIG_WHICH=y # CONFIG_RFKILL is not set # CONFIG_SNTP is not set # CONFIG_TUNCTL is not set -CONFIG_WGET=y -# CONFIG_WGET_LIBTLS is not set +CONFIG_WGET=n +CONFIG_WGET_LIBTLS=n # # Linux Standard Base commands diff --git a/repo/toybox/diffutils.xibuild b/repo/toybox/diffutils.xibuild index 1c225ee..704ce91 100644 --- a/repo/toybox/diffutils.xibuild +++ b/repo/toybox/diffutils.xibuild @@ -2,6 +2,6 @@ DESC="Utility programs for creating patch files" package () { - add_from_main /usr/bin/diff - add_from_main /usr/bin/cmp + add_from_main usr/bin/diff + add_from_main usr/bin/cmp } diff --git a/repo/toybox/toybox.xibuild b/repo/toybox/toybox.xibuild index da2f03a..6dcc473 100644 --- a/repo/toybox/toybox.xibuild +++ b/repo/toybox/toybox.xibuild @@ -11,27 +11,29 @@ ADDITIONAL=" config " -tools=" basename cat chgrp chown chmod cksum crc32 cmp comm cp mv install cpio cut date df dirname du echo env expand false file find getconf grep egrep fgrep head iconv id groups logname whoami kill killall5 link ln logger ls mkdir mkfifo nice nl nohup od paste patch printf ps top iotop pgrep pkill pwd renice rm rmdir sed sleep sort sort_float split strings tail tar tee test test_glue time touch true tty ulimit arch linux32 uname uniq unlink uudecode uuencode wc who xargs ascii unicode base32 fstype blockdev chroot count dos2unix unix2dos factor fmt hexedit printenv readlink realpath rev sha3sum shred stat tac nproc taskset timeout truncate usleep uuidgen w which wget md5sum sha1sum sha224sum sha256sum sha384sum sha512sum mknod mktemp seq sync " +tools=" basename cat chgrp chown chmod cksum crc32 cmp comm cp mv cpio cut date df dirname du echo env expand false file find getconf grep egrep fgrep head iconv id groups logname whoami kill killall5 link ln logger ls mkdir mkfifo nice nl nohup od paste patch printf ps top iotop pgrep pkill pwd renice rm rmdir sed sleep sort split strings tail tar tee test time touch true tty ulimit arch uname uniq unlink uudecode uuencode wc who xargs ascii unicode base32 fstype blockdev chroot count dos2unix unix2dos factor fmt hexedit printenv readlink realpath rev sha3sum shred stat tac nproc taskset timeout truncate usleep uuidgen w which md5sum sha1sum sha224sum sha256sum sha384sum sha512sum mknod mktemp seq sync " prepare () { - mv config .config + make defconfig + #mv config .config } build() { for tool in $tools; do - make $tool + echo "MAKING $tool" + make $tool || return 1 done } -check() { - for tool in $tools; do - make test_$tool - done -} +#check() { + #for tool in $tools; do + #make test_$tool || return 1 + #done +#} package() { for tool in $tools; do - install -Dm755 $tool $PKG_DEST/usr/bin/$tool + install -Dm755 $tool $PKG_DEST/usr/bin/$tool || return 1 done } diff --git a/repo/toybox/wget.xibuild b/repo/toybox/wget.xibuild deleted file mode 100644 index 6590ee2..0000000 --- a/repo/toybox/wget.xibuild +++ /dev/null @@ -1,7 +0,0 @@ -#!/bin/sh - -DESC="A utility for transfering files with URL syntax" - -package () { - add_from_main usr/bin/wget -} -- cgit v1.2.1