Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
firmware
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
External wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
card10
firmware
Commits
23aa643b
Commit
23aa643b
authored
4 years ago
by
schneider
Browse files
Options
Downloads
Plain Diff
Merge branch 'rahix/assorted-fixes' into 'master'
Assorted fixes/cleanups See merge request
!401
parents
0b136517
b9ebcd15
Branches
Branches containing commit
Tags
Tags containing commit
1 merge request
!401
Assorted fixes/cleanups
Pipeline
#4719
passed
4 years ago
Stage: build
Stage: deploy
Changes
3
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Documentation/conf.py
+8
-0
8 additions, 0 deletions
Documentation/conf.py
bootloader/build_multi_image.sh
+7
-3
7 additions, 3 deletions
bootloader/build_multi_image.sh
meson.build
+1
-0
1 addition, 0 deletions
meson.build
with
16 additions
and
3 deletions
Documentation/conf.py
+
8
−
0
View file @
23aa643b
...
...
@@ -15,6 +15,14 @@ sys.path.insert(0, os.path.abspath("./"))
logger
=
sphinx
.
util
.
logging
.
getLogger
(
"
card10/conf.py
"
)
# Hawkmoth does not yet support Sphinx 3
#
# See https://github.com/jnikula/hawkmoth/issues/17
if
sphinx
.
version_info
[
0
]
>
2
:
logger
.
warning
(
"
Sphinx versions >= 3 are not yet working properly with hawkmoth. Documentation of C items will probably be broken ...
"
)
# -- Project information -----------------------------------------------------
...
...
This diff is collapsed.
Click to expand it.
bootloader/build_multi_image.sh
+
7
−
3
View file @
23aa643b
...
...
@@ -6,8 +6,12 @@ BIN1="$2"
BIN2
=
"
$3
"
BINOUT
=
"
$4
"
dd
if
=
/dev/zero
ibs
=
1k
count
=
448 2>/dev/null |
LANG
=
C
LC_CTYPE
=
C
LC_ALL
=
C
LC_COLLATE
=
C
tr
"
\0
00"
"
\3
77"
>
"
$BINOUT
"
dd
if
=
"
$BIN1
"
of
=
"
$BINOUT
"
conv
=
notrunc 2>/dev/null
dd
if
=
"
$BIN2
"
>>
"
$BINOUT
"
2>/dev/null
if
[
"
$(
stat
-c
"%s"
"
${
BIN1
}
"
)
"
-gt
458752
]
;
then
echo
"
$0
:
${
BIN1
}
is too big to fit!"
>
&2
exit
1
fi
objcopy
-I
binary
-O
binary
--pad-to
=
458752
--gap-fill
=
255
"
${
BIN1
}
"
"
$BINOUT
"
cat
"
$BIN2
"
>>
"
$BINOUT
"
"
$PYTHON
"
"
$(
dirname
"
$0
"
)
/crc_patch.py"
"
$BINOUT
"
This diff is collapsed.
Click to expand it.
meson.build
+
1
−
0
View file @
23aa643b
...
...
@@ -20,6 +20,7 @@ assert(
add_global_arguments
(
'-Wno-unused-parameter'
,
'-Wno-old-style-declaration'
,
'-Wno-char-subscripts'
,
meson
.
get_cross_property
(
'target_defs'
),
language
:
'c'
,
)
...
...
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