view sources/sections/busybox.build @ 1195:41fdac77a907

Change how to filter out (currently) unusable busybox apps, and add mke2fs to force e2fsprogs build.
author Rob Landley <rob@landley.net>
date Thu, 05 Aug 2010 12:31:01 -0500
parents 7ca3dfbc9e06
children 8b1017be9de8
line wrap: on
line source

# Build busybox statically by default, but don't statically link against
# glibc (during host_tools) build because glibc is buggy and can't combine
# --static with --gc-sections.

# Build busybox

#make allyesconfig KCONFIG_ALLCONFIG="${SOURCES}/trimconfig-busybox" &&
make defconfig &&
cp .config "$WORK"/config-busybox &&
LDFLAGS="$LDFLAGS $STATIC_FLAGS" make -j $CPUS $VERBOSITY $DO_CROSS &&
make busybox.links || dienow

[ -d "$STAGE_DIR/bin" ] && INSTDIR="$STAGE_DIR/bin" || INSTDIR="$STAGE_DIR"

cp busybox${SKIP_STRIP:+_unstripped} "$INSTDIR/busybox" || dienow

for i in $(sed 's@.*/@@' busybox.links)
do
  # Still using toybox patch, and busybox mke2fs/tune2fs don't support -j
  is_in_list $i patch,tune2fs,mke2fs && continue
  [ ! -f "$INSTDIR/$i" ] && (ln -sf busybox "$INSTDIR/$i" || dienow)
done