Browse Source

Added build script

Thomas Buck 8 years ago
parent
commit
8e610e70fc
1 changed files with 10 additions and 0 deletions
  1. 10
    0
      build.sh

+ 10
- 0
build.sh View File

@@ -0,0 +1,10 @@
1
+#!/bin/sh
2
+
3
+SCRIPT=$(readlink -f $0)
4
+SCRIPTDIR=$(dirname $SCRIPT)
5
+
6
+git submodule init
7
+git submodule update
8
+
9
+make O=$SCRIPTDIR/output BR2_EXTERNAL=$SCRIPTDIR -C $SCRIPTDIR/buildroot $*
10
+

Loading…
Cancel
Save