Sign in
gfiber
/
vendor
/
opensource
/
bluez
/
d0dbd130fb3b892a6cf04bcffb9410895af19c59
/
.
/
src
/
genbuiltin
blob: 8b6f047612ec62b9d9a38d62d1a29650be12315b [
file
] [
log
] [
blame
]
#!/bin/sh
for
i
in
$
*
do
echo
"extern struct bluetooth_plugin_desc __bluetooth_builtin_$i;"
done
echo
echo
"static struct bluetooth_plugin_desc *__bluetooth_builtin[] = {"
for
i
in
$
*
do
echo
" &__bluetooth_builtin_$i,"
done
echo
" NULL"
echo
"};"