GNU Linux-libre 4.19.245-gnu1
[releases.git] / tools / perf / trace / beauty / kcmp_type.sh
1 #!/bin/sh
2
3 [ $# -eq 1 ] && header_dir=$1 || header_dir=tools/include/uapi/linux/
4
5 printf "static const char *kcmp_types[] = {\n"
6 regex='^[[:space:]]+(KCMP_(\w+)),'
7 egrep $regex ${header_dir}/kcmp.h | grep -v KCMP_TYPES, | \
8         sed -r "s/$regex/\1 \2/g" | \
9         xargs printf "\t[%s]\t= \"%s\",\n"
10 printf "};\n"