Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
ffbs-gluon
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
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
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
ffbs
ffbs-gluon
Commits
3e66935a
Commit
3e66935a
authored
4 years ago
by
Matthias Schiffer
Committed by
David Bauer
4 years ago
Browse files
Options
Downloads
Patches
Plain Diff
build: introduce GLUON_AUTOREMOVE flag
(cherry picked from commit
ab659611
)
parent
f55c965c
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
Makefile
+2
-1
2 additions, 1 deletion
Makefile
docs/user/getting_started.rst
+6
-0
6 additions, 0 deletions
docs/user/getting_started.rst
targets/generic
+5
-0
5 additions, 0 deletions
targets/generic
with
13 additions
and
1 deletion
Makefile
+
2
−
1
View file @
3e66935a
...
...
@@ -40,10 +40,11 @@ $(eval $(call mkabspath,GLUON_TARGETSDIR))
$(
eval
$(
call mkabspath,GLUON_PATCHESDIR
))
GLUON_MULTIDOMAIN
?=
0
GLUON_AUTOREMOVE
?=
0
GLUON_DEBUG
?=
0
export
GLUON_RELEASE
GLUON_REGION
GLUON_MULTIDOMAIN
GLUON_DEBUG
GLUON_DEPRECATED
GLUON_DEVICES
\
GLUON_TARGETSDIR
GLUON_PATCHESDIR
GLUON_TMPDIR
GLUON_IMAGEDIR
GLUON_PACKAGEDIR
GLUON_TARGETSDIR
GLUON_PATCHESDIR
GLUON_TMPDIR
GLUON_IMAGEDIR
GLUON_PACKAGEDIR
GLUON_AUTOREMOVE
show-release
:
@
echo
'
$(
GLUON_RELEASE
)
'
...
...
This diff is collapsed.
Click to expand it.
docs/user/getting_started.rst
+
6
−
0
View file @
3e66935a
...
...
@@ -208,6 +208,12 @@ GLUON_TARGET
Special variables
.................
GLUON_AUTOREMOVE
Setting ``GLUON_AUTOREMOVE=1`` enables the ``CONFIG_AUTOREMOVE`` OpenWrt setting, which will delete package build
directories after a package build has finished to save space. This is mostly useful for CI builds from scratch. Do
not set this flag during development (or generally, when you want you reuse your build tree for subsequent builds),
as it significantly increases incremental build times.
GLUON_DEBUG
Setting ``GLUON_DEBUG=1`` will provide firmware images including debugging symbols usable with GDB or
similar tools. Requires a device or target with at least 16 MB of flash space, e.g. `x86-64`. Unset by default.
...
...
This diff is collapsed.
Click to expand it.
targets/generic
+
5
−
0
View file @
3e66935a
...
...
@@ -31,6 +31,7 @@ end
config '# CONFIG_TARGET_ROOTFS_INITRAMFS is not set'
config 'CONFIG_DEVEL=y'
config 'CONFIG_ALL_NONSHARED=y'
config '# CONFIG_PACKAGE_usbip is not set' -- fails to build
...
...
@@ -53,6 +54,10 @@ if envtrue.GLUON_MULTIDOMAIN then
config 'CONFIG_GLUON_MULTIDOMAIN=y'
end
if envtrue.GLUON_AUTOREMOVE then
config 'CONFIG_AUTOREMOVE=y'
end
if envtrue.GLUON_DEBUG then
config 'CONFIG_DEBUG=y'
config 'CONFIG_NO_STRIP=y'
...
...
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