1
0
Fork 0
forked from len0rd/rockbox

Enable ROM file generation for H120/H140.

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@11947 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Miika Pekkarinen 2007-01-08 18:21:12 +00:00
parent dc040f0c8a
commit b1af4e6cc8
4 changed files with 68 additions and 18 deletions

View file

@ -216,6 +216,16 @@ sub buildzip {
if( filesize("rombox.ucl") > 1000) {
`cp rombox.ucl .rockbox/`; # UCL for flashing
}
# Check for rombox.target
if ($image=~/(.*)\.(\w+)$/)
{
my $romfile = "rombox.$2";
if (filesize($romfile) > 1000)
{
`cp $romfile .rockbox/`;
}
}
}
mkdir ".rockbox/docs", 0777;