update mkromfs script.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1192 bbd45198-f89e-11dd-88c7-29a3b14d5316
This commit is contained in:
bernard.xiong@gmail.com 2010-12-12 23:37:56 +00:00
parent fdfe4f4781
commit 3ba6d887da
1 changed files with 3 additions and 0 deletions

View File

@ -12,6 +12,7 @@ def mkromfs_output(out):
def mkromfs_file(filename, arrayname):
f = file(filename, "rb")
arrayname = arrayname.replace('.', '_')
arrayname = arrayname.replace('-', '_')
mkromfs_output('const static unsigned char %s[] = {\n' % arrayname)
count = 0
@ -76,6 +77,7 @@ def mkromfs_dir(dirname, is_root = False):
items = subpath.split('\\')
item_name = string.join(items, '_')
item_name = item_name.replace('.', '_')
item_name = item_name.replace('-', '_')
subpath = subpath.replace('\\', '/')
if subpath[0] == '/':
subpath = subpath[1:]
@ -98,6 +100,7 @@ def mkromfs_dir(dirname, is_root = False):
items = subpath.split('\\')
item_name = string.join(items, '_')
item_name = item_name.replace('.', '_')
item_name = item_name.replace('-', '_')
subpath = subpath.replace('\\', '/')
if subpath[0] == '/':
subpath = subpath[1:]