aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorHauke Mehrtens <hauke@hauke-m.de>2021-10-16 17:46:32 +0200
committerHauke Mehrtens <hauke@hauke-m.de>2021-10-18 23:01:19 +0200
commitb2264a1ae44f94e5305de0e542a2e57f6e339528 (patch)
tree23ccc85df7cc7d10424256c7a4f7a9607d6f8f0b
parent6ef63cae325453ec28112e4aa489adcd34fe2280 (diff)
downloadbackports-b2264a1ae44f94e5305de0e542a2e57f6e339528.tar.gz
backports: print error for unknown config symbol
When a default configuration is not copied because of a missing configuration symbol print a warning message. This Helps to find Configuration symbols which were removed from the upstream kernel. Signed-off-by: Hauke Mehrtens <hauke@hauke-m.de>
-rwxr-xr-xgentree.py2
1 files changed, 2 insertions, 0 deletions
diff --git a/gentree.py b/gentree.py
index ae2b1a73..05bb91b3 100755
--- a/gentree.py
+++ b/gentree.py
@@ -1012,6 +1012,8 @@ def process(kerneldir, copy_list_file, git_revision=None,
line_ok = True
break
if not line_ok:
+ if args.verbose:
+ logwrite('can not find "%s" from "%s"\n' % (line.strip(), dfsrc))
copy_defconfig = False
break
if copy_defconfig: