Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
sneltved
openairinterface5G
Commits
4766a694
Commit
4766a694
authored
Feb 13, 2019
by
Raphael Defosseux
Browse files
RHE7.6: UHD installation should be now correct
Signed-off-by:
Raphael Defosseux
<
raphael.defosseux@eurecom.fr
>
parent
d035be0d
Changes
3
Hide whitespace changes
Inline
Side-by-side
ci-scripts/Jenkinsfile-gitlab
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
([
...
...
ci-scripts/reportBuildLocally.sh
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
...
...
cmake_targets/tools/build_helper
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
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment