summaryrefslogtreecommitdiffstats
path: root/.vscode
diff options
context:
space:
mode:
authorJames O'Shannessy <james.oshannessy@fiberdyne.com.au>2018-09-15 00:44:37 -0700
committerMark Farrugia <mark.farrugia@fiberdyne.com.au>2018-10-26 17:27:27 +1100
commitc656cad43025265094bf5139c1265d4bcc0ba84c (patch)
tree1b0a154979075c7e039adc2b862af628927f9ab3 /.vscode
parent38d172808a61a6d0b404abea4db95cd4ee03b06e (diff)
Add updates to Makefiles and tasks for building
Add required changes to Makefile and KConfig to implement building of loopback audio path as part of standard make execution. Signed-off-by: James O'Shannessy <james.oshannessy@fiberdyne.com.au>
Diffstat (limited to '.vscode')
-rw-r--r--.vscode/tasks.json4
1 files changed, 2 insertions, 2 deletions
diff --git a/.vscode/tasks.json b/.vscode/tasks.json
index c901648..d8063e7 100644
--- a/.vscode/tasks.json
+++ b/.vscode/tasks.json
@@ -9,7 +9,7 @@
"tasks": [
{
"label": "Make Driver",
- "command": "CONFIG_AVIRT=m CONFIG_AVIRT_BUILDLOCAL=y CONFIG_AVIRT_DUMMYAP=m make -C /lib/modules/$(uname -r)/build/ M=$(pwd)",
+ "command": "CONFIG_AVIRT=m CONFIG_AVIRT_BUILDLOCAL=y CONFIG_AVIRT_DUMMYAP=m CONFIG_AVIRT_LOOPBACKAP=m make -C /lib/modules/$(uname -r)/build/ M=$(pwd)",
"group": "build",
"problemMatcher": [
"$gcc"
@@ -17,7 +17,7 @@
},
{
"label": "Clean Driver",
- "command": "CONFIG_AVIRT=m CONFIG_AVIRT_BUILDLOCAL=y CONFIG_AVIRT_DUMMYAP=m make -C /lib/modules/$(uname -r)/build/ M=$(pwd) clean",
+ "command": "CONFIG_AVIRT=m CONFIG_AVIRT_BUILDLOCAL=y CONFIG_AVIRT_DUMMYAP=m CONFIG_AVIRT_LOOPBACKAP=m make -C /lib/modules/$(uname -r)/build/ M=$(pwd) clean",
"group": "build",
"problemMatcher": [
"$gcc"