Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
openairinterface5G
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
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
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
Worker.N
openairinterface5G
Commits
4766a694
Commit
4766a694
authored
6 years ago
by
Raphael Defosseux
Browse files
Options
Downloads
Patches
Plain Diff
RHE7.6: UHD installation should be now correct
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
d035be0d
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
ci-scripts/Jenkinsfile-gitlab
+1
-1
1 addition, 1 deletion
ci-scripts/Jenkinsfile-gitlab
ci-scripts/reportBuildLocally.sh
+1
-1
1 addition, 1 deletion
ci-scripts/reportBuildLocally.sh
cmake_targets/tools/build_helper
+4
-3
4 additions, 3 deletions
cmake_targets/tools/build_helper
with
6 additions
and
5 deletions
ci-scripts/Jenkinsfile-gitlab
+
1
−
1
View file @
4766a694
...
...
@@ -260,7 +260,7 @@ pipeline {
expression
{
doRedHatBuild
}
}
steps
{
gitlabCommitStatus
(
name:
"Build eNb-USRP-
CentOS
"
)
{
gitlabCommitStatus
(
name:
"Build eNb-USRP-
RHE
"
)
{
script
{
try
{
withCredentials
([
...
...
This diff is collapsed.
Click to expand it.
ci-scripts/reportBuildLocally.sh
+
1
−
1
View file @
4766a694
...
...
@@ -492,7 +492,7 @@ function report_build {
if
[
-e
./archives/red_hat
]
then
echo
" <h2>Red Hat
(CentOS Linux
release 7.
4.1708
) -- Summary</h2>"
>>
./build_results.html
echo
" <h2>Red Hat
Enterprise Linux Server
release 7.
6
) -- Summary</h2>"
>>
./build_results.html
summary_table_header
"Red Hat -- OAI Build eNB -- USRP option"
./archives/red_hat
summary_table_row
"LTE SoftModem - Release 14"
./archives/red_hat/lte-softmodem.Rel14.txt
"Built target lte-softmodem"
./enb_usrp_rh_row1.html
...
...
This diff is collapsed.
Click to expand it.
cmake_targets/tools/build_helper
+
4
−
3
View file @
4766a694
...
...
@@ -311,15 +311,16 @@ install_usrp_uhd_driver() {
# On newer kernels, it fails to install
$SUDO apt-get -y install uhd-host
fi
# quick workaround for RHE7.6
local distribution=$(get_distribution_release)
if [ -z $1 ]; then
# quick workaround
if [[ "$OS_DISTRO" == "rhel7.6" ]]; then
if [[ "$distribution" == "rhel7.6" ]]; then
$SUDO /usr/local/bin/uhd_images_downloader
else
$SUDO uhd_images_downloader
fi
else
if [[ "$
OS_DISTRO
" == "rhel7.6" ]]; then
if [[ "$
distribution
" == "rhel7.6" ]]; then
$SUDO /usr/local/bin/uhd_images_downloader -i $1
else
$SUDO uhd_images_downloader -i $1
...
...
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