From 8e78e89a1d152392e630bbf01f738ffe969bb0bd Mon Sep 17 00:00:00 2001 From: Rob Landley Date: Mon, 26 Dec 2022 10:03:27 -0600 Subject: [PATCH] Remove host airlock commands no longer needed by toybox or linux-6.1 build: dd, diff, vi, xzcat, ar, and nm. Also removes gcc and bc, which are patched out in https://github.com/landley/linux/tree/mkroot-6.1 --- scripts/install.sh | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) diff --git a/scripts/install.sh b/scripts/install.sh index 7c991d6a..bd9b82e0 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -106,11 +106,8 @@ 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 bash sh xzcat bc ar gzip 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 -TOOLCHAIN="as cc ld gcc objdump" +PENDING="expr git tr bash sh gzip awk bison flex make" # bc +TOOLCHAIN="as cc ld objdump" # gcc # Tools needed to build packages for i in $TOOLCHAIN $PENDING $HOST_EXTRA -- 2.39.2