From: Erik Faye-Lund Date: Wed, 29 Mar 2017 22:24:24 +0000 (+0000) Subject: tegra: update symbol-check X-Git-Tag: libdrm-2.4.77~3 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=e5053343de6f910882a43214ce5c7b69a9b07927;p=platform%2Fupstream%2Flibdrm.git tegra: update symbol-check I get a few more symbols in my build tegra-libraries, so let's include these in the whitelist as well. While we're at it, update the comment at the top. Signed-off-by: Erik Faye-Lund Reviewed-by: Emil Velikov --- diff --git a/tegra/tegra-symbol-check b/tegra/tegra-symbol-check index 4020831..420469f 100755 --- a/tegra/tegra-symbol-check +++ b/tegra/tegra-symbol-check @@ -1,11 +1,14 @@ #!/bin/bash -# The following symbols (past the first five) are taken from the public headers. -# A list of the latter should be available Makefile.sources/LIBDRM_FREEDRENO_H_FILES +# The following symbols (past the first nine) are taken from tegra.h. FUNCS=$(nm -D --format=bsd --defined-only ${1-.libs/libdrm_tegra.so} | awk '{print $3}'| while read func; do ( grep -q "^$func$" || echo $func ) <