#!/bin/bash
# Standard BUILD script for busybox
cd "$SOURCE_DIRECTORY" &&
# Default config
make defconfig &&
# Build
make -j"$MAKE_JOBS" &&
# Install to the sandbox
make CONFIG_PREFIX="$INSTALL_ROOT" install