mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-06-08 12:15:02 +02:00
The only reason for this is systemd-efistub which is currently the only functional and supported EFI stub.
11 lines
183 B
Bash
11 lines
183 B
Bash
#!/bin/sh
|
|
|
|
HOOK_FILE='/usr/share/kernel-hooks.d/ukify.hook'
|
|
|
|
for link in /etc/kernel-hooks.d/*; do
|
|
if [ "$(readlink -f "$link")" = "$HOOK_FILE" ]; then
|
|
rm "$link"
|
|
fi
|
|
done
|
|
|
|
exit 0
|