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
6992a3d1
Commit
6992a3d1
authored
4 years ago
by
Martin Weinelt
Committed by
Jan-Niklas Burfeind
2 years ago
Browse files
Options
Downloads
Patches
Plain Diff
scripts: fix mixed indentation
parent
6ed243fb
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
scripts/copy_output.lua
+7
-7
7 additions, 7 deletions
scripts/copy_output.lua
scripts/update.sh
+2
-2
2 additions, 2 deletions
scripts/update.sh
with
9 additions
and
9 deletions
scripts/copy_output.lua
+
7
−
7
View file @
6992a3d1
...
...
@@ -69,16 +69,16 @@ end
-- copy kernel image with debug symbols
local
kernel_debug_glob
=
string.format
(
'%s/gluon-\0-%s-kernel-debug.tar.zst'
,
env
.
GLUON_DEBUGDIR
,
target
)
env
.
GLUON_DEBUGDIR
,
target
)
lib
.
exec
{
'rm'
,
'-f'
,
kernel_debug_glob
}
local
kernel_debug_source
=
string.format
(
'openwrt/bin/targets/%s/kernel-debug.tar.zst'
,
bindir
)
bindir
)
local
kernel_debug_dest
=
string.format
(
'%s/gluon-%s-%s-%s-kernel-debug.tar.zst'
,
env
.
GLUON_DEBUGDIR
,
lib
.
site_code
,
env
.
GLUON_RELEASE
,
target
)
env
.
GLUON_DEBUGDIR
,
lib
.
site_code
,
env
.
GLUON_RELEASE
,
target
)
lib
.
exec
{
'cp'
,
kernel_debug_source
,
kernel_debug_dest
}
...
...
This diff is collapsed.
Click to expand it.
scripts/update.sh
+
2
−
2
View file @
6992a3d1
...
...
@@ -21,8 +21,8 @@ for module in $GLUON_MODULES; do
if
!
git branch
-f
base
"
$commit
"
2>/dev/null
;
then
git fetch
"
$repo
"
"
$branch
"
git branch
-f
base
"
$commit
"
||
{
echo
"unable to find commit
\"
$commit
\"
on branch
\"
$branch
\"
in repo
\"
$repo
\"
."
>
&2
exit
1
echo
"unable to find commit
\"
$commit
\"
on branch
\"
$branch
\"
in repo
\"
$repo
\"
."
>
&2
exit
1
}
fi
done
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