summaryrefslogtreecommitdiffstats
path: root/scripts/combo-layer.conf.example
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/combo-layer.conf.example')
-rw-r--r--scripts/combo-layer.conf.example14
1 files changed, 14 insertions, 0 deletions
diff --git a/scripts/combo-layer.conf.example b/scripts/combo-layer.conf.example
index 427c1b399f..38bc53c59f 100644
--- a/scripts/combo-layer.conf.example
+++ b/scripts/combo-layer.conf.example
@@ -42,6 +42,20 @@ last_revision =
42# file_filter = src/*.c : only include the src *.c file 42# file_filter = src/*.c : only include the src *.c file
43# file_filter = src/main.c src/Makefile.am : only include these two files 43# file_filter = src/main.c src/Makefile.am : only include these two files
44 44
45# file_exclude: filter out these file(s)
46# file_exclude = [path] [path] ...
47#
48# Each entry must match a file name. In contrast do file_filter, matching
49# a directory has no effect. To achieve that, use append a * wildcard
50# at the end.
51#
52# Wildcards are applied to the complete path and also match slashes.
53#
54# example:
55# file_exclude = src/foobar/* : exclude everything under src/foobar
56# file_exclude = src/main.c : filter out main.c after including it with file_filter = src/*.c
57# file_exclude = *~ : exclude backup files
58
45# hook: if provided, the tool will call the hook to process the generated 59# hook: if provided, the tool will call the hook to process the generated
46# patch from upstream, and then apply the modified patch to the combo 60# patch from upstream, and then apply the modified patch to the combo
47# repo. 61# repo.