Files
Arch-R/packages/sysutils/busybox-hosttools/build
Stephan Raue ff97318f80 busybox-hosttools: add applet 'depmod'
Signed-off-by: Stephan Raue <stephan@openelec.tv>
2010-07-27 13:54:48 +02:00

19 lines
351 B
Bash
Executable File

#!/bin/sh
. config/options $1
$SCRIPTS/unpack busybox
setup_toolchain host
cd $BUILD/busybox*
make distclean
cp $ROOT/$PKG_DIR/config/$1.conf .config
make oldconfig
ARCH=$TARGET_ARCH make CROSS_COMPILE="" install
mkdir -p $ROOT/$TOOLCHAIN/bin
cp -R _install-hosttools/* $ROOT/$TOOLCHAIN
chmod 4755 $ROOT/$TOOLCHAIN/bin/busybox