-
Notifications
You must be signed in to change notification settings - Fork 0
/
install-xenomai-kernel.sh
executable file
·57 lines (52 loc) · 2.32 KB
/
install-xenomai-kernel.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
#!/bin/bash
if [ `id -u` -ne 0 ] ; then
echo "You must be root to do this."
exit 1
fi
for file in \
./kernel-6.10.10-300.xenomai.fc39.src.rpm \
./kernel-core-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-modules-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-modules-core-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-modules-extra-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-modules-internal-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-ipaclones-internal-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-tools-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-tools-libs-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-tools-libs-devel-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-devel-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-devel-matched-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-uki-virt-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-headers-6.10.10-300.xenomai.fc39.x86_64.rpm \
./bpftool-7.3.0-300.xenomai.fc39.x86_64.rpm \
./perf-6.10.10-300.xenomai.fc39.x86_64.rpm \
./python3-perf-6.10.10-300.xenomai.fc39.x86_64.rpm \
./rtla-6.10.10-300.xenomai.fc39.x86_64.rpm \
./rv-6.10.10-300.xenomai.fc39.x86_64.rpm
do
if [ ! -f ${file} ] ; then
echo "RPM ${file} does not exist."
exit 1
fi
done
dnf localinstall \
./kernel-core-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-modules-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-modules-core-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-modules-extra-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-modules-internal-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-ipaclones-internal-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-tools-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-tools-libs-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-tools-libs-devel-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-devel-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-devel-matched-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-uki-virt-6.10.10-300.xenomai.fc39.x86_64.rpm \
./kernel-headers-6.10.10-300.xenomai.fc39.x86_64.rpm \
./bpftool-7.3.0-300.xenomai.fc39.x86_64.rpm \
./perf-6.10.10-300.xenomai.fc39.x86_64.rpm \
./python3-perf-6.10.10-300.xenomai.fc39.x86_64.rpm \
./rtla-6.10.10-300.xenomai.fc39.x86_64.rpm \
./rv-6.10.10-300.xenomai.fc39.x86_64.rpm
rpm -ivh ./kernel-6.10.10-300.xenomai.fc39.src.rpm
echo "Done."