Patrick Williams | e94080b | 2014-06-17 20:09:31 -0500 | [diff] [blame] | 1 | #!/bin/bash |
2 | __PWD=`pwd` | ||||
3 | |||||
Stephen Cprek | e7254c7 | 2015-02-19 14:33:38 -0600 | [diff] [blame] | 4 | if [ -e ./customrc ]; then |
5 | source ./customrc | ||||
6 | fi | ||||
7 | |||||
Patrick Williams | e94080b | 2014-06-17 20:09:31 -0500 | [diff] [blame] | 8 | export BR2_EXTERNAL=${__PWD}/openpower |
9 | export BR2_DL_DIR=${__PWD}/dl | ||||
10 | |||||
KennethWilke | 369158a | 2016-03-03 15:00:37 -0600 | [diff] [blame^] | 11 | op-build () { |
12 | make --directory=${__PWD}/buildroot O=${__PWD}/output $@ | ||||
13 | } |