30 Apr
2018
30 Apr
'18
7:22 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 | 6 ++++++ 1 file changed, 6 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..0756cc5 --- /dev/null +++ b/scripts/build-soft.sh @@ -0,0 +1,6 @@ +#!/bin/sh +cd ../soft.git +./autogen.sh +./configure +make -j$(nproc) +cd ../sof.git
--
2.17.0.441.gb46fe60e1d-goog