blob: 2537c4fdfc1e485f6cf829d630782ae2739045a2 [file] [log] [blame]
#!/bin/bash
__PWD=`pwd`
if [ -e ./customrc ]; then
source ./customrc
fi
if [ ! -e buildroot/Makefile ]; then
echo "Please make sure you've checked out the buildroot submodule"
echo " git submodule init && git submodule update"
return -1
fi
export BR2_EXTERNAL=${__PWD}/openpower
export BR2_DL_DIR=${__PWD}/dl
export LANG=en_US.UTF-8
op-build () {
make --directory=${__PWD}/buildroot O=${__PWD}/output $@
}