mirror of
https://github.com/torvalds/linux.git
synced 2026-05-28 00:53:34 +02:00
As it is used only to parse ioctl numbers, not to build perf and so far no other tools/ living tool uses it, so to clean up tools/include/ to be used just for building tools, to have access to things available in the kernel and not yet in the system headers, move it to the directory where just the tools/perf/trace/beauty/ scripts can use to generate tables used by perf. Signed-off-by: Arnaldo Carvalho de Melo <acme@redhat.com> Signed-off-by: Namhyung Kim <namhyung@kernel.org>
16 lines
644 B
Bash
Executable File
16 lines
644 B
Bash
Executable File
#!/bin/sh
|
|
# SPDX-License-Identifier: LGPL-2.1
|
|
|
|
[ $# -eq 1 ] && header_dir=$1 || header_dir=tools/perf/trace/beauty/include/uapi/drm/
|
|
|
|
printf "#ifndef DRM_COMMAND_BASE\n"
|
|
grep "#define DRM_COMMAND_BASE" $header_dir/drm.h
|
|
printf "#endif\n"
|
|
|
|
printf "static const char *drm_ioctl_cmds[] = {\n"
|
|
grep "^#define DRM_IOCTL.*DRM_IO" $header_dir/drm.h | \
|
|
sed -r 's/^#define +DRM_IOCTL_([A-Z0-9_]+)[ ]+DRM_IO[A-Z]* *\( *(0x[[:xdigit:]]+),*.*/ [\2] = "\1",/g'
|
|
grep "^#define DRM_I915_[A-Z_0-9]\+[ ]\+0x" $header_dir/i915_drm.h | \
|
|
sed -r 's/^#define +DRM_I915_([A-Z0-9_]+)[ ]+(0x[[:xdigit:]]+)/\t[DRM_COMMAND_BASE + \2] = "I915_\1",/g'
|
|
printf "};\n"
|