#!/usr/bin/env bash

set -eux

pushd /usr/src/buildroot

V="${VERBOSE:=0}"

unset VERBOSE

make -s V="${V}" olddefconfig
make -s V="${V}"

popd
