tinyramfs/hooks/luks/luks.init

18 lines
475 B
Plaintext
Raw Normal View History

# vim: set ft=sh:
2020-07-03 18:49:09 +03:00
# shellcheck shell=sh
#
2021-05-10 14:23:34 +03:00
# https://www.shellcheck.net/wiki/SC2154
2020-07-03 18:49:09 +03:00
# shellcheck disable=2154
2020-09-10 22:53:39 +03:00
[ "$break" = luks ] && { print "break before luks.init"; sh; }
2020-09-10 22:53:39 +03:00
mkdir -p /run/cryptsetup
2020-09-10 22:53:39 +03:00
resolve_device "$luks_root"
2021-05-10 14:23:34 +03:00
DM_DISABLE_UDEV=1 cryptsetup open \
${luks_discard:+--allow-discards} \
${luks_header:+--header=$luks_header} \
${luks_key:+--key-file=$luks_key} -- "$device" \
2021-05-10 14:23:34 +03:00
"${luks_name:-crypt-${device##*/}}" || panic "failed to unlock LUKS"