summaryrefslogtreecommitdiff
path: root/repo/toybox
diff options
context:
space:
mode:
Diffstat (limited to 'repo/toybox')
-rw-r--r--repo/toybox/config4
-rw-r--r--repo/toybox/diffutils.xibuild4
-rw-r--r--repo/toybox/toybox.xibuild20
-rw-r--r--repo/toybox/wget.xibuild7
4 files changed, 15 insertions, 20 deletions
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
-}