From 2763cd390eea8e5bda0b289acb9b40c6571d6729 Mon Sep 17 00:00:00 2001 From: Eric Engestrom Date: Wed, 23 Oct 2019 23:32:54 +0100 Subject: [PATCH] exynos: convert to new symbols check Signed-off-by: Eric Engestrom --- exynos/exynos-symbol-check | 42 -------------------------------------- exynos/exynos-symbols.txt | 23 +++++++++++++++++++++ exynos/meson.build | 11 ++++++---- 3 files changed, 30 insertions(+), 46 deletions(-) delete mode 100755 exynos/exynos-symbol-check create mode 100644 exynos/exynos-symbols.txt diff --git a/exynos/exynos-symbol-check b/exynos/exynos-symbol-check deleted file mode 100755 index d2c362e1..00000000 --- a/exynos/exynos-symbol-check +++ /dev/null @@ -1,42 +0,0 @@ -#!/bin/sh - -set -u - -# The following symbols (past the first five) are taken from the public headers. -# A list of the latter should be available Makefile.am/libdrm_exynos*_HEADERS - -FUNCS=$($NM -D --format=bsd --defined-only ${1-.libs/libdrm_exynos.so} | awk '{print $3}'| while read func; do -( grep -q "^$func$" || echo $func ) <