blob: 1fcbdd3045c672db7caa755cb4afe1d3660abfef (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
#!/bin/sh
. ./.vars
VERSION=1.28.3
BUILD_DIR="$build_dir/busybox-$VERSION"
cd $build_dir
if ! [ -d "$BUILD_DIR" ] ; then
bunzip2 -dc < $dist_dir/busybox-$VERSION.tar.bz2 | tar -xvf -
fi
cd $BUILD_DIR
if ! [ -e ./.config ] ; then
cp "${base_dir}/busybox-config" ./.config
fi
make -j$(nproc)
make install
|