summaryrefslogtreecommitdiff
path: root/generate-configlist.sh
blob: 8692fe5cf4d5e4025265e6110254b05640615fea (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
#!/bin/sh
 
echo "/* Automatically generated by generate-configlist.sh */"
echo
 
print_config_list () {
	cat <<EOF
static const char *config_name_list[] = {
EOF
	grep -h '^[a-zA-Z].*\..*::$' Documentation/*config.txt Documentation/config/*.txt |
	sed '/deprecated/d; s/::$//; s/,  */\n/g' |
	sort |
	sed 's/^.*$/	"&",/'
	cat <<EOF
	NULL,
};
EOF
}
 
echo
print_config_list