2023-04-02 11:04:23 +08:00
|
|
|
#!/bin/bash -e
|
|
|
|
|
|
|
|
kver=$(uname -r)
|
|
|
|
while read -r line; do
|
|
|
|
# We only care about the running kernel
|
2023-05-31 14:02:04 +08:00
|
|
|
if [[ "$line" == usr/lib/modules/$kver/vmlinuz && -d /usr/lib/modules/running-kernel ]];then
|
|
|
|
systemd-mount --quiet --options=bind,ro --property=LazyUnmount=1 /usr/lib/modules/{running-kernel,$kver}
|
2023-04-02 11:04:23 +08:00
|
|
|
# Mounting read-only since the only modification here should be unmounting
|
|
|
|
# when rebooting or reinstalling the running kernel
|
2023-05-31 14:02:04 +08:00
|
|
|
# LazyUnmount at shutdown in case udevd is blocking us
|
2023-04-02 11:04:23 +08:00
|
|
|
fi
|
|
|
|
done
|