提交 3ba6d887 编写于 作者: B bernard.xiong@gmail.com

update mkromfs script.

git-svn-id: https://rt-thread.googlecode.com/svn/trunk@1192 bbd45198-f89e-11dd-88c7-29a3b14d5316
上级 fdfe4f47
......@@ -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:]
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册