Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FFS Gluon
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor 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
firmware
FFS Gluon
Commits
160ad7ee
Unverified
Commit
160ad7ee
authored
3 years ago
by
Matthias Schiffer
Committed by
GitHub
3 years ago
Browse files
Options
Downloads
Plain Diff
Merge pull request #2313 from lemoer/pr_x86_dont_build_ext4_images
x86: don't build ext4 images
parents
98664fdc
53434127
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
.github/filters.yml
+11
-5
11 additions, 5 deletions
.github/filters.yml
Makefile
+1
-1
1 addition, 1 deletion
Makefile
contrib/actions/generate-target-filters.py
+14
-0
14 additions, 0 deletions
contrib/actions/generate-target-filters.py
targets/x86.inc
+3
-0
3 additions, 0 deletions
targets/x86.inc
with
29 additions
and
6 deletions
.github/filters.yml
+
11
−
5
View file @
160ad7ee
...
...
@@ -21,7 +21,8 @@
"
Makefile"
,
"
patches/**"
,
"
targets/generic"
,
"
targets/targets.mk"
"
targets/targets.mk"
,
"
targets/bcm27xx.inc"
],
"
bcm27xx-bcm2709"
:
[
"
targets/bcm27xx-bcm2709"
,
...
...
@@ -29,7 +30,8 @@
"
Makefile"
,
"
patches/**"
,
"
targets/generic"
,
"
targets/targets.mk"
"
targets/targets.mk"
,
"
targets/bcm27xx.inc"
],
"
ipq40xx-generic"
:
[
"
targets/ipq40xx-generic"
,
...
...
@@ -133,7 +135,8 @@
"
Makefile"
,
"
patches/**"
,
"
targets/generic"
,
"
targets/targets.mk"
"
targets/targets.mk"
,
"
targets/x86.inc"
],
"
x86-geode"
:
[
"
targets/x86-geode"
,
...
...
@@ -149,7 +152,8 @@
"
Makefile"
,
"
patches/**"
,
"
targets/generic"
,
"
targets/targets.mk"
"
targets/targets.mk"
,
"
targets/x86.inc"
],
"
x86-64"
:
[
"
targets/x86-64"
,
...
...
@@ -158,6 +162,7 @@
"
patches/**"
,
"
targets/generic"
,
"
targets/targets.mk"
,
"
targets/x86.inc"
,
"
contrib/ci/minimal-site/**"
,
"
package/**"
],
...
...
@@ -167,7 +172,8 @@
"
Makefile"
,
"
patches/**"
,
"
targets/generic"
,
"
targets/targets.mk"
"
targets/targets.mk"
,
"
targets/bcm27xx.inc"
],
"
mvebu-cortexa9"
:
[
"
targets/mvebu-cortexa9"
,
...
...
This diff is collapsed.
Click to expand it.
Makefile
+
1
−
1
View file @
160ad7ee
...
...
@@ -104,7 +104,7 @@ update-modules: FORCE
@
scripts/update-modules.sh
update-ci
:
FORCE
@
scripts/update-ci.sh
@
$(
GLUON_ENV
)
scripts/update-ci.sh
GLUON_TARGETS
:=
...
...
This diff is collapsed.
Click to expand it.
contrib/actions/generate-target-filters.py
+
14
−
0
View file @
160ad7ee
...
...
@@ -3,6 +3,8 @@
# Update target filters using
# make update-ci
import
re
import
os
import
sys
import
json
...
...
@@ -23,6 +25,13 @@ extra = [
_filter
=
dict
()
# INCLUDE_PATTERN matches:
# include '...'
# include "..."
# include("...")
# include('...')
INCLUDE_PATTERN
=
"
^
\\
s*include *
\\
(? *[
\"
'
]([^
\"
'
]+)[
\"
'
]
"
# construct filters map from stdin
for
target
in
sys
.
stdin
:
target
=
target
.
strip
()
...
...
@@ -31,6 +40,11 @@ for target in sys.stdin:
f
"
targets/
{
target
}
"
]
+
common
target_file
=
os
.
path
.
join
(
os
.
environ
[
'
GLUON_TARGETSDIR
'
],
target
)
with
open
(
target_file
)
as
f
:
includes
=
re
.
findall
(
INCLUDE_PATTERN
,
f
.
read
(),
re
.
MULTILINE
)
_filter
[
target
].
extend
([
f
"
targets/
{
i
}
"
for
i
in
includes
])
if
target
==
"
x86-64
"
:
_filter
[
target
].
extend
(
extra
)
...
...
This diff is collapsed.
Click to expand it.
targets/x86.inc
+
3
−
0
View file @
160ad7ee
...
...
@@ -40,6 +40,9 @@ packages {
'kmod-mt7615e'
,
}
--
We
do
not
use
the
ext4
images
,
so
we
do
not
want
to
build
them
.
config
(
'TARGET_ROOTFS_EXT4FS'
,
false
)
defaults
{
factory
=
'-squashfs-combined'
,
factory_ext
=
{
'.img.gz'
,
'.vmdk'
,
'.vdi'
},
...
...
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