1#!/bin/sh
2
3for i in $*
4do
5 echo "extern struct bluetooth_plugin_desc __bluetooth_builtin_$i;"
6done
7
8echo
9echo "static struct bluetooth_plugin_desc *__bluetooth_builtin[] = {"
10
11for i in $*
12do
13 echo " &__bluetooth_builtin_$i,"
14done
15
16echo " NULL"
17echo "};"
18