mirror of
https://gitdl.cn/https://github.com/chakralinux/core.git
synced 2025-02-03 14:57:14 +08:00
27 lines
685 B
Bash
27 lines
685 B
Bash
# vim: set ft=sh:
|
|
|
|
install ()
|
|
{
|
|
if [ -z "${CRYPTO_MODULES}" ]; then
|
|
MODULES=" dm-crypt $(all_modules "/crypto/") "
|
|
else
|
|
MODULES=" dm-crypt ${CRYPTO_MODULES} "
|
|
fi
|
|
FILES=""
|
|
SCRIPT="encrypt"
|
|
add_dir "/dev/mapper"
|
|
[ -f "/sbin/cryptsetup" ] && add_binary "/sbin/cryptsetup" "/sbin/cryptsetup"
|
|
[ -f "/usr/sbin/cryptsetup" ] && add_binary "/usr/sbin/cryptsetup" "/sbin/cryptsetup"
|
|
add_binary "/sbin/dmsetup"
|
|
add_file "/lib/udev/rules.d/10-dm.rules"
|
|
add_file "/lib/udev/rules.d/13-dm-disk.rules"
|
|
add_file "/lib/udev/rules.d/95-dm-notify.rules"
|
|
}
|
|
|
|
help ()
|
|
{
|
|
cat<<HELPEOF
|
|
This hook allows for an encrypted root device.
|
|
HELPEOF
|
|
}
|