25 Apr
2018
25 Apr
'18
6:48 p.m.
Make it easier to build the topology when working in sof.git. This script automates the change of directory to and from soft.git. It also makes building in a container easier because all scripts can execute from the same working directory.
Signed-off-by: Dylan Reid dgreid@chromium.org --- scripts/build-soft.sh | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100755 scripts/build-soft.sh
diff --git a/scripts/build-soft.sh b/scripts/build-soft.sh new file mode 100755 index 0000000..ee89352 --- /dev/null +++ b/scripts/build-soft.sh @@ -0,0 +1,7 @@ +#!/bin/sh +cd ../soft.git +./autogen.sh +./configure --prefix=/home/sof/bin +make -j$(nproc) +make install +cd ../sof.git
--
2.17.0.484.g0c8726318c-goog