blob: 9cd5cb5c2e964531fb64ffdf7ac70cc149337605 [file] [log] [blame]
Patrick Williamse94080b2014-06-17 20:09:31 -05001#!/bin/bash
2__PWD=`pwd`
3
Stephen Cpreke7254c72015-02-19 14:33:38 -06004if [ -e ./customrc ]; then
5 source ./customrc
6fi
7
Patrick Williamse94080b2014-06-17 20:09:31 -05008export BR2_EXTERNAL=${__PWD}/openpower
9export BR2_DL_DIR=${__PWD}/dl
10
KennethWilke369158a2016-03-03 15:00:37 -060011op-build () {
12 make --directory=${__PWD}/buildroot O=${__PWD}/output $@
13}