forked from FreedomBen/rtl8188ce-linux-driver
-
Notifications
You must be signed in to change notification settings - Fork 0
/
am_i_using_this_driver.sh
executable file
·39 lines (33 loc) · 1.08 KB
/
am_i_using_this_driver.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
#!/bin/sh
if [ ! -f "functions.sh" ]; then
echo "Required file \"functions.sh\" not found!"
exit
fi
. "$(readlink -f functions.sh)"
if runningAnyRtlwifi; then
if runningOurRtlwifi; then
echo -e "${green}[*] You are running the new rtlwifi${restore}"
else
echo -e "${yellow}[*] Not running the new rtlwifi (running stock driver)${restore}"
fi
else
echo -e "${red}[*] Not running any rtlwifi${restore}"
fi
if runningAnyRtl8192c_common; then
if runningOurRtl8192c_common; then
echo -e "${green}[*] You are running the new rtl8192c_common${restore}"
else
echo -e "${yellow}[*] Not running the new rtl8192c_common (running stock driver)${restore}"
fi
else
echo -e "${red}[*] Not running any rtl8192c_common${restore}"
fi
if runningAnyRtl8192ce; then
if runningOurRtl8192ce; then
echo -e "${green}[*] You are running the new rtl8192ce${restore}"
else
echo -e "${yellow}[*] Not running the new rtl8192ce (running stock driver)${restore}"
fi
else
echo -e "${red}[*] Not running any rtl8192ce${restore}"
fi