Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
U
Ubuntu Realtime Kernel
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
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
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CeTI
ROS
Ubuntu Realtime Kernel
Commits
07264753
Commit
07264753
authored
3 years ago
by
Johannes Mey
Browse files
Options
Downloads
Patches
Plain Diff
fix download locations
parent
01fd87c9
No related branches found
No related tags found
No related merge requests found
Pipeline
#13436
failed
3 years ago
Stage: build
Changes
1
Pipelines
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
compile.bash
+8
-6
8 additions, 6 deletions
compile.bash
with
8 additions
and
6 deletions
compile.bash
+
8
−
6
View file @
07264753
...
@@ -2,7 +2,7 @@
...
@@ -2,7 +2,7 @@
# get current kernel and realtime patch version
# get current kernel and realtime patch version
VERSION
=
5.13
VERSION
=
5.13
FILE
=
`
curl
-s
https://mirrors.edge.kernel.org/pub/linux/kernel/projects/rt/
5.13
/
`
FILE
=
`
curl
-s
https://mirrors.edge.kernel.org/pub/linux/kernel/projects/rt/
${
VERSION
}
/
`
KERNEL
=
19
KERNEL
=
19
RTPATCH
=
1
RTPATCH
=
1
echo
"using kernel
$VERSION
.
$KERNEL
with realtime patch
$RTPATCH
"
echo
"using kernel
$VERSION
.
$KERNEL
with realtime patch
$RTPATCH
"
...
@@ -15,17 +15,19 @@ KERNELFILE=linux-${VERSION}.${KERNEL}.tar
...
@@ -15,17 +15,19 @@ KERNELFILE=linux-${VERSION}.${KERNEL}.tar
KERNELFILEXZ
=
linux-
${
VERSION
}
.
${
KERNEL
}
.tar.xz
KERNELFILEXZ
=
linux-
${
VERSION
}
.
${
KERNEL
}
.tar.xz
KERNELSIGN
=
linux-
${
VERSION
}
.
${
KERNEL
}
.tar.sign
KERNELSIGN
=
linux-
${
VERSION
}
.
${
KERNEL
}
.tar.sign
PATCHURL
=
https://www.kernel.org/pub/linux/kernel/projects/rt/
${
VERSION
}
/
PATCHURL
=
https://www.kernel.org/pub/linux/kernel/projects/rt/
${
VERSION
}
/
PATCHFILE
=
patch-
${
VERSION
}
.
${
KERNEL
}
-rt
${
RTPATCH
}
.patch
PATCHFILE
=
patch-
${
VERSION
}
-rt
${
RTPATCH
}
.patch
PATCHFILEXZ
=
patch-
${
VERSION
}
.
${
KERNEL
}
-rt
${
RTPATCH
}
.patch.xz
PATCHFILEXZ
=
patch-
${
VERSION
}
-rt
${
RTPATCH
}
.patch.xz
PATCHSIGN
=
patch-
${
VERSION
}
.
${
KERNEL
}
-rt
${
RTPATCH
}
.patch.sign
PATCHSIGN
=
patch-
${
VERSION
}
-rt
${
RTPATCH
}
.patch.sign
# download kernel
# download kernel
echo
"downloading kernel from
${
PATCHURL
}${
PATCH
FILE
}
"
echo
"downloading kernel from
${
KERNELURL
}${
KERNEL
FILE
XZ
}
"
curl
-SLO
${
KERNELURL
}${
KERNELFILEXZ
}
curl
-SLO
${
KERNELURL
}${
KERNELFILEXZ
}
echo
"downloading kernel signature from
${
KERNELURL
}${
KERNELSIGN
}
"
curl
-SLO
${
KERNELURL
}${
KERNELSIGN
}
curl
-SLO
${
KERNELURL
}${
KERNELSIGN
}
echo
"downloading patch from
${
PATCHURL
}${
PATCH
SIGN
}
"
echo
"downloading patch
file
from
${
PATCHURL
}${
PATCH
FILEXZ
}
"
curl
-sLO
${
PATCHURL
}${
PATCHFILEXZ
}
curl
-sLO
${
PATCHURL
}${
PATCHFILEXZ
}
echo
"downloading patch signature from
${
PATCHURL
}${
PATCHSIGN
}
"
curl
-sLO
${
PATCHURL
}${
PATCHSIGN
}
curl
-sLO
${
PATCHURL
}${
PATCHSIGN
}
# unzip kernel (required for verification)
# unzip kernel (required for verification)
...
...
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