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
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
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
darkbit
ffbs-gluon
Commits
faceb393
Unverified
Commit
faceb393
authored
7 years ago
by
Matthias Schiffer
Browse files
Options
Downloads
Patches
Plain Diff
config: check if GLUON_DEBUG is 1 rather than nonempty
parent
a99fdf79
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
Makefile
+3
-3
3 additions, 3 deletions
Makefile
targets/generic
+1
-2
1 addition, 2 deletions
targets/generic
with
4 additions
and
5 deletions
Makefile
+
3
−
3
View file @
faceb393
...
...
@@ -35,12 +35,12 @@ $(GLUON_SITEDIR)/site.mk:
include
$(GLUON_SITEDIR)/site.mk
GLUON_WLAN_MESH
?=
11s
GLUON_RELEASE
?=
$(
error GLUON_RELEASE not set. GLUON_RELEASE can be
set
in
site.mk or on the
command
line
)
GLUON_WLAN_MESH
?=
11s
GLUON_DEBUG
?=
0
export
GLUON_RELEASE
GLUON_
WLAN_MESH
GLUON_REGION
GLUON_DEBUG
export
GLUON_RELEASE
GLUON_
REGION
GLUON_WLAN_MESH
GLUON_DEBUG
show-release
:
@
echo
'
$(
GLUON_RELEASE
)
'
...
...
This diff is collapsed.
Click to expand it.
targets/generic
+
1
−
2
View file @
faceb393
...
...
@@ -24,8 +24,7 @@ config 'CONFIG_PACKAGE_ATH_DEBUG=y'
try_config 'CONFIG_TARGET_MULTI_PROFILE=y'
try_config 'CONFIG_TARGET_PER_DEVICE_ROOTFS=y'
if [ "$GLUON_DEBUG" ]
then
if [ "$GLUON_DEBUG" = 1 ]; then
config 'CONFIG_DEBUG=y'
config 'CONFIG_NO_STRIP=y'
config '# CONFIG_USE_STRIP is not set'
...
...
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