Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
R
RIOT
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
cm-projects
RIOT
Commits
f124e384
Commit
f124e384
authored
7 years ago
by
Alexandre Abadie
Browse files
Options
Downloads
Patches
Plain Diff
dist/tools/mkconstfs: fix various flake8 issues
parent
2a0b34d2
No related branches found
No related tags found
Loading
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
dist/tools/mkconstfs/mkconstfs.py
+8
-5
8 additions, 5 deletions
dist/tools/mkconstfs/mkconstfs.py
with
8 additions
and
5 deletions
dist/tools/mkconstfs/mkconstfs.py
+
8
−
5
View file @
f124e384
...
@@ -5,6 +5,8 @@ import os
...
@@ -5,6 +5,8 @@ import os
import
sys
import
sys
FILE_TYPE
=
"
static const uint8_t
"
FILE_TYPE
=
"
static const uint8_t
"
FILES
=
[]
def
mkconstfs
(
root_path
,
mount_point
,
constfs_name
):
def
mkconstfs
(
root_path
,
mount_point
,
constfs_name
):
print
(
"
/* This file was automatically generated by mkconstfs */
"
)
print
(
"
/* This file was automatically generated by mkconstfs */
"
)
...
@@ -20,7 +22,7 @@ def mkconstfs(root_path, mount_point, constfs_name):
...
@@ -20,7 +22,7 @@ def mkconstfs(root_path, mount_point, constfs_name):
print
(
"
\n
static const constfs_file_t _files[] = {
"
)
print
(
"
\n
static const constfs_file_t _files[] = {
"
)
for
mangled_name
,
target_name
,
_
in
files
:
for
mangled_name
,
target_name
,
_
in
FILES
:
print
(
"
{
"
)
print
(
"
{
"
)
print
(
"
.path =
\"
%s
\"
,
"
%
target_name
)
print
(
"
.path =
\"
%s
\"
,
"
%
target_name
)
print
(
"
.data = %s,
"
%
mangled_name
)
print
(
"
.data = %s,
"
%
mangled_name
)
...
@@ -41,12 +43,14 @@ vfs_mount_t %s = {
...
@@ -41,12 +43,14 @@ vfs_mount_t %s = {
};
};
"""
%
(
constfs_name
,
mount_point
))
"""
%
(
constfs_name
,
mount_point
))
def
mangle_name
(
fname
):
def
mangle_name
(
fname
):
fname
=
fname
.
replace
(
"
/
"
,
"
__
"
)
fname
=
fname
.
replace
(
"
/
"
,
"
__
"
)
fname
=
fname
.
replace
(
"
.
"
,
"
__
"
)
fname
=
fname
.
replace
(
"
.
"
,
"
__
"
)
return
fname
return
fname
def
print_file_data
(
local_fname
,
target_fname
):
def
print_file_data
(
local_fname
,
target_fname
):
mangled_name
=
mangle_name
(
target_fname
)
mangled_name
=
mangle_name
(
target_fname
)
print
(
FILE_TYPE
,
mangled_name
,
"
[] = {
"
,
end
=
""
)
print
(
FILE_TYPE
,
mangled_name
,
"
[] = {
"
,
end
=
""
)
...
@@ -63,17 +67,16 @@ def print_file_data(local_fname, target_fname):
...
@@ -63,17 +67,16 @@ def print_file_data(local_fname, target_fname):
else
:
else
:
print
(
"
,
"
,
end
=
""
)
print
(
"
,
"
,
end
=
""
)
nread
+=
1
nread
+=
1
print
(
"
0x
"
+
codecs
.
encode
(
byte
,
'
hex
'
).
decode
(
'
ascii
'
),
end
=
""
)
print
(
"
0x
"
+
codecs
.
encode
(
byte
,
'
hex
'
).
decode
(
'
ascii
'
),
end
=
""
)
# Do stuff with byte.
# Do stuff with byte.
byte
=
f
.
read
(
1
)
byte
=
f
.
read
(
1
)
print
(
"
\n
};
"
)
print
(
"
\n
};
"
)
files
.
append
((
mangled_name
,
target_fname
,
nread
))
FILES
.
append
((
mangled_name
,
target_fname
,
nread
))
files
=
[]
if
__name__
==
"
__main__
"
:
if
__name__
==
"
__main__
"
:
mountpoint
=
"
/
"
mountpoint
=
"
/
"
constfs_name
=
"
_constfs
"
constfs_name
=
"
_constfs
"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment