projects
/
platform
/
upstream
/
connman.git
/ blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
|
commitdiff
|
tree
history
|
raw
|
HEAD
manager: Remove DefaultTechnology and associated function
[platform/upstream/connman.git]
/
src
/
genbuiltin
1
#!/bin/sh
2
3
for i in $*
4
do
5
echo "extern struct connman_plugin_desc __connman_builtin_$i;"
6
done
7
8
echo
9
echo "static struct connman_plugin_desc *__connman_builtin[] = {"
10
11
for i in $*
12
do
13
echo " &__connman_builtin_$i,"
14
done
15
16
echo " NULL"
17
echo "};"