summaryrefslogtreecommitdiffstats
path: root/scripts/kopt2mod
diff options
context:
space:
mode:
Diffstat (limited to 'scripts/kopt2mod')
-rwxr-xr-xscripts/kopt2mod3
1 files changed, 1 insertions, 2 deletions
diff --git a/scripts/kopt2mod b/scripts/kopt2mod
index adb95787..8eb540e4 100755
--- a/scripts/kopt2mod
+++ b/scripts/kopt2mod
@@ -9,13 +9,12 @@ for file in $FILES; do
while read line; do
if [[ "$line" =~ ^(config|menuconfig) ]]; then
CURRENT=$(awk '{print $2}' <<<$line)
- #echo "Jetz is $CURRENT dran"
continue
fi
[ -z "$CURRENT" ] && continue
MOD="$(echo "$line" | grep -o -E "called [a-z0-9_\-]+\." | awk '{print $2}')ko"
[[ "$MOD" == "ko" ]] && continue
- echo "$CURRENT aktiviert $(dirname $file)/$MOD"
+ echo "$CURRENT activates $(dirname $file)/$MOD"
CURRENT=
done < "$file"
done