Commit 3cf5c173 authored by Raymond Knopp's avatar Raymond Knopp Committed by Raphael Defosseux

minor modifications for rhel7.7 build

parent 0cccf1d0
...@@ -103,6 +103,7 @@ check_supported_distribution() { ...@@ -103,6 +103,7 @@ check_supported_distribution() {
"fedora24") return 0 ;; "fedora24") return 0 ;;
"rhel7") return 0 ;; "rhel7") return 0 ;;
"rhel7.6") return 0 ;; "rhel7.6") return 0 ;;
"rhel7.7") return 0 ;;
"centos7") return 0 ;; "centos7") return 0 ;;
esac esac
return 1 return 1
...@@ -319,13 +320,13 @@ install_usrp_uhd_driver() { ...@@ -319,13 +320,13 @@ install_usrp_uhd_driver() {
# quick workaround for RHE7.6 # quick workaround for RHE7.6
local distribution=$(get_distribution_release) local distribution=$(get_distribution_release)
if [ -z $1 ]; then if [ -z $1 ]; then
if [[ "$distribution" == "rhel7.6" ]]; then if [[ "$OS_DISTRO" == "rhel" ]]; then
$SUDO /usr/local/bin/uhd_images_downloader $SUDO /usr/local/bin/uhd_images_downloader
else else
$SUDO uhd_images_downloader $SUDO uhd_images_downloader
fi fi
else else
if [[ "$distribution" == "rhel7.6" ]]; then if [[ "$OS_DISTRO" == "rhel" ]]; then
$SUDO /usr/local/bin/uhd_images_downloader -i $1 $SUDO /usr/local/bin/uhd_images_downloader -i $1
else else
$SUDO uhd_images_downloader -i $1 $SUDO uhd_images_downloader -i $1
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment