summaryrefslogtreecommitdiff
path: root/repo/toybox/toybox.xibuild
diff options
context:
space:
mode:
authordavidovski <david@davidovski.xyz>2022-12-11 18:08:51 +0000
committerdavidovski <david@davidovski.xyz>2022-12-11 18:08:51 +0000
commit4c61af227b0fb3e028c877dc1c2e0b6513960762 (patch)
tree7c6bf0a36805ab40911d4af9f81d8a839fa4972b /repo/toybox/toybox.xibuild
parent63add57ef96f10f464fc1bf7c821d2281b39edeb (diff)
Updated linux
Diffstat (limited to 'repo/toybox/toybox.xibuild')
-rw-r--r--repo/toybox/toybox.xibuild20
1 files changed, 11 insertions, 9 deletions
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
}