From 41f9f4cd6c9c9b015b4747cb7d114950d2e4053b Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 25 Apr 2022 03:33:29 -0500 Subject: [PATCH] Remove wget from $PENDING lists. --- scripts/install.sh | 2 +- scripts/mkroot.sh | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 842ff9b0..5e038936 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -106,7 +106,7 @@ done # The following are commands toybox should provide, but doesn't yet. # For now symlink the host version. This list must go away by 1.0. -PENDING="dd diff expr git tr vi wget bash sh xzcat bc ar gzip ftpd less awk unxz bison flex make nm" +PENDING="dd diff expr git tr vi bash sh xzcat bc ar gzip ftpd less awk unxz bison flex make nm" # "gcc" can go away if the kernel guys merge my patch: # http://lkml.iu.edu/hypermail/linux/kernel/2202.0/01505.html diff --git a/scripts/mkroot.sh b/scripts/mkroot.sh index c099bec7..76d92a2f 100755 --- a/scripts/mkroot.sh +++ b/scripts/mkroot.sh @@ -147,7 +147,7 @@ echo -e 'root:x:0:\nguest:x:500:\nnobody:x:65534:' > "$ROOT"/etc/group || exit 1 announce toybox [ ! -z "$PENDING" ] && rm -f .config [ -e .config ] && CONF=silentoldconfig || unset CONF -for i in $PENDING sh route wget; do XX="$XX"$'\n'CONFIG_${i^^?}=y; done +for i in $PENDING sh route; do XX="$XX"$'\n'CONFIG_${i^^?}=y; done LDFLAGS=--static PREFIX="$ROOT" make clean \ ${CONF:-defconfig KCONFIG_ALLCONFIG=<(echo "$XX")} toybox install || exit 1 -- 2.39.2