1#!/bin/bash 2 3# The following symbols (past the first five) are taken from the public headers. 4# A list of the latter should be available Makefile.sources/LIBDRM_NOUVEAU_H_FILES 5 6FUNCS=$(nm -D --format=bsd --defined-only ${1-.libs/libdrm_nouveau.so} | awk '{print $3}'| while read func; do 7( grep -q "^$func$" || echo $func ) <<EOF 8__bss_start 9_edata 10_end 11_fini 12_init 13nouveau_bo_map 14nouveau_bo_name_get 15nouveau_bo_name_ref 16nouveau_bo_new 17nouveau_bo_prime_handle_ref 18nouveau_bo_ref 19nouveau_bo_set_prime 20nouveau_bo_wait 21nouveau_bo_wrap 22nouveau_bufctx_del 23nouveau_bufctx_mthd 24nouveau_bufctx_new 25nouveau_bufctx_refn 26nouveau_bufctx_reset 27nouveau_client_del 28nouveau_client_new 29nouveau_device_del 30nouveau_device_new 31nouveau_device_open 32nouveau_device_open_existing 33nouveau_device_wrap 34nouveau_drm_del 35nouveau_drm_new 36nouveau_getparam 37nouveau_object_del 38nouveau_object_mclass 39nouveau_object_mthd 40nouveau_object_new 41nouveau_object_sclass_get 42nouveau_object_sclass_put 43nouveau_pushbuf_bufctx 44nouveau_pushbuf_data 45nouveau_pushbuf_del 46nouveau_pushbuf_kick 47nouveau_pushbuf_new 48nouveau_pushbuf_refd 49nouveau_pushbuf_refn 50nouveau_pushbuf_reloc 51nouveau_pushbuf_space 52nouveau_pushbuf_validate 53nouveau_setparam 54EOF 55done) 56 57test ! -n "$FUNCS" || echo $FUNCS 58test ! -n "$FUNCS" 59