|
@@ -1,17 +1,66 @@
|
1
|
1
|
#!/bin/bash
|
2
|
2
|
# script enable nvidia module from UEFI
|
|
3
|
+## add name module: module-re4uefi nvidia
|
|
4
|
+#
|
|
5
|
+# author="Koshuba V."
|
|
6
|
+# (c) 2023
|
|
7
|
+#
|
|
8
|
+version="0.0.2";
|
3
|
9
|
opt=$1
|
4
|
|
-
|
5
|
10
|
path_script="$(dirname $(readlink --canonicalize-existing "$0"))"
|
6
|
|
-sudo openssl req -new -x509 -newkey rsa:2048 -keyout $pash_script/MOK.priv -outform DER -out $pash_script/MOK.der -nodes -days 36500 -subj "/CN=YOUR_NAME/"
|
7
|
|
-eval mod_ls="(" $(find /lib/modules/$(uname -r) -type f -name "$opt".ko -printf '%f\n') ")";
|
8
|
|
-if [[ "$(echo -e ${#mod_ls[@]})" != "0' ]]; then
|
9
|
|
- for ((i_md = 0; i_md != ${#mod_ls[@]}; i_md++)); do
|
10
|
|
- echo "Signing ${mod_ls[$i_md]}"
|
11
|
|
- /usr/src/linux-headers-$(uname -r)/scripts/sign-file sha256 \
|
12
|
|
- $path_script/MOK.priv \
|
13
|
|
- $path_script/MOK.der "${mod_ls[$i_md]}"
|
|
11
|
+##--@S static values
|
|
12
|
+# depends
|
|
13
|
+pkgdep=("moktool") # packages
|
|
14
|
+get_tools=("mokutil")
|
|
15
|
+
|
|
16
|
+#--@F Check the program dependency
|
|
17
|
+function checkDep() {
|
|
18
|
+ # - msg debug
|
|
19
|
+ echo "check depends..."
|
|
20
|
+ for ((itools = 0; itools != ${#get_tools[@]}; itools++)); do
|
|
21
|
+ checktool=$(whereis -b ${get_tools[$itools]} | awk '/^'${get_tools[$itools]}':/{print $2}')
|
|
22
|
+ if [[ $checktool = "" ]]; then
|
|
23
|
+ sudo apt install ${pkgdep[$itools]}
|
|
24
|
+ fi
|
|
25
|
+ checktool=$(whereis -b ${get_tools[$itools]} | awk '/^'${get_tools[$itools]}':/{print $2}')
|
|
26
|
+ if [[ $checktool != "" ]]; then
|
|
27
|
+ eval get_${get_tools[$itools]}=$(whereis -b ${get_tools[$itools]} | awk '/^'${get_tools[$itools]}':/{print $2}')
|
|
28
|
+ list_tools[${#list_tools[@]}]="$(whereis -b ${get_tools[$itools]} | awk '/^'${get_tools[$itools]}':/{print $2}')"
|
|
29
|
+ else
|
|
30
|
+ ## lang messages if yes then lang else us...
|
|
31
|
+ echo "Sorry, there are no required packages to work, please install:${pkgdep[@]}"
|
|
32
|
+ exit
|
|
33
|
+ fi
|
14
|
34
|
done
|
|
35
|
+}
|
|
36
|
+
|
|
37
|
+#--@F active module from UEFI
|
|
38
|
+function regMod() {
|
|
39
|
+if mokutil --import $path_script/MOK.der then
|
|
40
|
+ sudo openssl req -new -x509 -newkey rsa:2048 -keyout $pash_script/MOK.priv -outform DER -out $pash_script/MOK.der -nodes -days 36500 -subj "/CN=YOUR_NAME/"
|
|
41
|
+ eval mod_ls="(" $(find /lib/modules/$(uname -r) -type f -name "$opt".ko -printf '%f\n') ")";
|
|
42
|
+ if [[ "$(echo -e ${#mod_ls[@]})" != "0" ]]; then
|
|
43
|
+ for ((i_md = 0; i_md != ${#mod_ls[@]}; i_md++)); do
|
|
44
|
+ echo "Signing ${mod_ls[$i_md]}"
|
|
45
|
+ /usr/src/linux-headers-$(uname -r)/scripts/sign-file sha256 \
|
|
46
|
+ $path_script/MOK.priv \
|
|
47
|
+ $path_script/MOK.der "${mod_ls[$i_md]}"
|
|
48
|
+ done
|
|
49
|
+ else
|
|
50
|
+ echo "Not found module.."
|
|
51
|
+ fi
|
|
52
|
+else
|
|
53
|
+ echo "not import MOK.der"
|
|
54
|
+fi
|
|
55
|
+}
|
|
56
|
+
|
|
57
|
+if [[ "$opt" != "" ]] && [[ $(echo $opt|grep -e '^[::a-z::]'|wc -l) != "0" ]] ; then
|
|
58
|
+ checkDep;
|
|
59
|
+ regMod;
|
15
|
60
|
else
|
16
|
|
- echo "Not found module.."
|
|
61
|
+ echo "example: module-reg4uefi <module name>"
|
|
62
|
+ echo "example module name: nvidia"
|
|
63
|
+
|
17
|
64
|
fi
|
|
65
|
+
|
|
66
|
+exit
|