repo.or.cz
/
kugel-rb.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
D2: Configure NAND GPIO lines /before/ attempting to use them. Should fix 16Gb support.
[kugel-rb.git]
/
tools
/
database.c
blob
9f0c620c2a386df8c9b686185f6583f201c07af0
1
/* A _very_ skeleton file to demonstrate building tagcache db on host. */
2
3
#include <stdio.h>
4
#include
"tagcache.h"
5
6
int
main
(
int
argc
,
char
**
argv
)
7
{
8
tagcache_init
();
9
tagcache_build
(
"/export/stuff/mp3"
);
10
tagcache_reverse_scan
();
11
12
return
0
;
13
}
14