Blob: genbuiltin

Blob id: 010e4ed2f0a069b3b5dfd36fed3121f0e48f6486

Size: 268 B

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
#!/bin/sh

for i in $*
do
	echo "extern const struct bluetooth_plugin_desc __bluetooth_builtin_$i;"
done

echo
echo "static const struct bluetooth_plugin_desc *__bluetooth_builtin[] = {"

for i in $*
do
	echo "  &__bluetooth_builtin_$i,"
done

echo "  NULL"
echo "};"