summaryrefslogtreecommitdiffstats
path: root/scripts
diff options
context:
space:
mode:
authorJonathan Bauer2014-05-08 15:05:56 +0200
committerJonathan Bauer2014-05-08 15:05:56 +0200
commite38f60f0db283f3e299744d82ed3aa8e3b96b05b (patch)
tree54f1ca5444b057d92ee779399e20bde618489881 /scripts
parentremove old relic (diff)
downloadtm-scripts-e38f60f0db283f3e299744d82ed3aa8e3b96b05b.tar.gz
tm-scripts-e38f60f0db283f3e299744d82ed3aa8e3b96b05b.tar.xz
tm-scripts-e38f60f0db283f3e299744d82ed3aa8e3b96b05b.zip
englishized kopt2mod :)
Diffstat (limited to 'scripts')
-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