Add a sample.icons file, and add a few more files to the docs folder in the zips

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13664 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-06-18 09:32:28 +00:00
parent 24d167206f
commit 06797c2c7f
2 changed files with 18 additions and 0 deletions

9
docs/sample.icons Normal file
View file

@ -0,0 +1,9 @@
# this line sets the mpeg icon to the 4th icon in the viewers bmp file
# 0 is the first icon
mpeg: 3
# this one sets bmp to the 5th icon of the main iconset (0 is the first one again)
bmp: *5
# This sets no icon for wav
wav: -

View file

@ -356,9 +356,18 @@ STOP
mkdir ".rockbox/docs", 0777; mkdir ".rockbox/docs", 0777;
for(("COPYING", for(("COPYING",
"LICENSES", "LICENSES",
"KNOWN_ISSUES"
)) { )) {
`cp $ROOT/docs/$_ .rockbox/docs/$_.txt`; `cp $ROOT/docs/$_ .rockbox/docs/$_.txt`;
} }
if ($fonts) {
`cp $ROOT/docs/profontdoc.txt .rockbox/docs/`;
}
for(("sample.colors",
"sample.icons"
)) {
`cp $ROOT/docs/$_ .rockbox/docs/`;
}
# Now do the WPS dance # Now do the WPS dance
if(-d "$ROOT/wps") { if(-d "$ROOT/wps") {