mirror of
https://gitlab.alpinelinux.org/alpine/aports.git
synced 2025-07-15 04:05:15 +03:00
16 lines
357 B
Bash
16 lines
357 B
Bash
#!/bin/sh
|
|
|
|
ln -s /usr/share/kernel-hooks.d/ukify.hook /etc/kernel-hooks.d/50-ukify.hook
|
|
|
|
case "$(. /etc/mkinitfs/mkinitfs.conf 2>/dev/null; printf %s "$disable_trigger")" in
|
|
yes | true | 1) exit 0;;
|
|
esac
|
|
|
|
cat >&2 <<EOF
|
|
*
|
|
* After configuring Secure Boot, disable mkinitfs trigger:
|
|
* echo 'disable_trigger=yes' >> /etc/mkinitfs/mkinitfs.conf
|
|
*
|
|
EOF
|
|
|
|
exit 0
|