view scripts/single.sh @ 1664:692be264d4f0 draft

fix non-glibc basename(3) usage I considered a #else on the big #ifdef __GLIBC__ above, but that seemed harder to follow.
author Elliott Hughes <enh@google.com>
date Sun, 18 Jan 2015 13:36:31 -0600
parents 448e47e2ad46
children 543bee60af4c
line wrap: on
line source

#!/bin/bash

# Build a standalone toybox command

if [ -z "$1" ]
then
  echo "usage: single.sh command..." >&2
  exit 1
fi

for i in "$@"
do
  NAME=$(echo $i | tr a-z- A-Z_)
  export KCONFIG_CONFIG=.singleconfig
  USET="is not set"

  make allnoconfig > /dev/null &&
  sed -i -e "s/\(CONFIG_TOYBOX\)=y/# \1 $USET/" \
         -e "s/# \(CONFIG_$NAME\) $USET/\1=y/"  \
         -e "s/# \(CONFIG_${NAME}_.*\) $USET/\1=y/" \
         -e "s/# \(CONFIG_TOYBOX_HELP.*\) $USET/\1=y/" \
         -e "s/# \(CONFIG_TOYBOX_I18N\) $USET/\1=y/" \
         -e "s/# \(CONFIG_TOYBOX_FLOAT\) $USET/\1=y/" \
         "$KCONFIG_CONFIG" &&
  make &&
  mv toybox $PREFIX$i || exit 1
done