aboutsummaryrefslogtreecommitdiffstats
path: root/pkg/mgrconfig
diff options
context:
space:
mode:
Diffstat (limited to 'pkg/mgrconfig')
-rw-r--r--pkg/mgrconfig/config.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/pkg/mgrconfig/config.go b/pkg/mgrconfig/config.go
index 42730eef4..6bf88c574 100644
--- a/pkg/mgrconfig/config.go
+++ b/pkg/mgrconfig/config.go
@@ -51,9 +51,9 @@ type Config struct {
KernelBuildSrc string `json:"kernel_build_src,omitempty"`
// Is the kernel built separately from the modules? (Specific to Android builds)
AndroidSplitBuild bool `json:"android_split_build"`
- // Kernel subsystem with paths to each subsystem
+ // Kernel subsystem with paths to each subsystem, paths starting with "-" will be excluded
// "kernel_subsystem": [
- // { "name": "sound", "path": ["sound", "techpack/audio"]},
+ // { "name": "sound", "path": ["sound", "techpack/audio", "-techpack/audio/dsp"]},
// { "name": "mydriver": "path": ["mydriver_path"]}
// ]
KernelSubsystem []Subsystem `json:"kernel_subsystem,omitempty"`