forked from opengauss-mirror/openGauss-server
-
Notifications
You must be signed in to change notification settings - Fork 0
/
get_PlatForm_str.sh
147 lines (133 loc) · 4.57 KB
/
get_PlatForm_str.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
#!/bin/bash
#Copyright (c) 2020 Huawei Technologies Co.,Ltd.
#
#openGauss is licensed under Mulan PSL v2.
#You can use this software according to the terms and conditions of the Mulan PSL v2.
#You may obtain a copy of Mulan PSL v2 at:
#
# http://license.coscl.org.cn/MulanPSL2
#
# THIS SOFTWARE IS PROVIDED ON AN "AS IS" BASIS, WITHOUT WARRANTIES OF ANY KIND,
# EITHER EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO NON-INFRINGEMENT,
# MERCHANTABILITY OR FIT FOR A PARTICULAR PURPOSE.
# See the Mulan PSL v2 for more details.
#-------------------------------------------------------------------------
#
# get_PlatForm_str.sh
# Acording plat form, get the string info, like "redhat6.4_x86_64".
# return: $plat_form_str : we support the platform and put out $plat_form_str
# "Failed" : the plat form, not supported
#
# IDENTIFICATION
# src/get_PlatForm_str.sh
#
#-------------------------------------------------------------------------
set -e
##############################################################################################
# common paremeters:
# lsb_release and uname both suit almost all linux platform, including Redhat,CentOS,SuSE,Debian and so on.
##############################################################################################
# get os name
kernel=""
if [ -f "/etc/euleros-release" ]
then
kernel=$(cat /etc/euleros-release | awk -F ' ' '{print $1}' | tr A-Z a-z)
elif [ -f "/etc/openEuler-release" ]
then
kernel=$(cat /etc/openEuler-release | awk -F ' ' '{print $1}' | tr A-Z a-z)
else
kernel=$(lsb_release -d | awk -F ' ' '{print $2}'| tr A-Z a-z)
fi
## to solve kernel="name=openeuler"
if echo $kernel | grep -q 'openeuler'
then
kernel="openeuler"
fi
# get cpu bit
cpu_bit=$(uname -p)
# the result info
plat_form_str=""
##################################################################################
# redhat platform
# the result form like this: redhat6.4_x86_64
##################################################################################
if [ "$kernel"x = "red"x ]
then
plat_form_str=redhat6.4_"$cpu_bit"
fi
##################################################################################
# fedora platform
# the result form like this: redhat6.4_x86_64
##################################################################################
if [ "$kernel"x = "fedora"x ]
then
plat_form_str=redhat6.4_"$cpu_bit"
fi
##################################################################################
# suse platform
# the result form like this: suse11_sp1_x86_64
##################################################################################
if [ "$kernel"x = "suse"x ]
then
version=$(lsb_release -r | awk -F ' ' '{print $2}')
if [ "$version"x = "12"x ]
then
plat_form_str=suse12_"$cpu_bit"
else
plat_form_str=suse11_sp1_"$cpu_bit"
fi
fi
##################################################################################
# euler platform
# the result form like this: euleros2.0_sp8_aarch64
##################################################################################
if [ "$kernel"x = "euleros"x ]
then
version=$(cat /etc/euleros-release | awk -F '(' '{print $2}'| awk -F ')' '{print $1}' | tr A-Z a-z)
plat_form_str=euleros2.0_"$version"_"$cpu_bit"
fi
##################################################################################
# deepin platform
# the result form like this: deepin_aarch64
##################################################################################
if [ "$kernel"x = "deepin"x ]
then
if [ X"$cpu_bit" = X"unknown" ]
then
cpu_bit=$(uname -m)
fi
plat_form_str=deepin15.2_"$cpu_bit"
fi
##################################################################################
# centos7.6_x86_64 platform
# centos7.5+aarch64 platform
# the result form like this: centos7.6_x86_64 or centos_7.5_aarch64
##################################################################################
if [ "$kernel"x = "centos"x ]
then
if [ X"$cpu_bit" = X"aarch64" ]
then
plat_form_str=centos_7.5_aarch64
else
plat_form_str=centos7.6_"$cpu_bit"
fi
fi
##################################################################################
# openeuler platform
# the result form like this: openeuler_aarch64
##################################################################################
if [ "$kernel"x = "openeuler"x ]
then
plat_form_str=openeuler_"$cpu_bit"
fi
##################################################################################
#
# other platform
#
##################################################################################
if [ -z "$plat_form_str" ]
then
echo "Failed"
else
echo $plat_form_str
fi