tinyramfs/hooks/luks/luks.init

18 lines
475 B
Plaintext
Raw Normal View History

# vim: set ft=sh:
2020-07-03 21:19:09 +05:30
# shellcheck shell=sh
#
2021-05-10 16:53:34 +05:30
# https://www.shellcheck.net/wiki/SC2154
2020-07-03 21:19:09 +05:30
# shellcheck disable=2154
2020-09-11 01:23:39 +05:30
[ "$break" = luks ] && { print "break before luks.init"; sh; }
2020-09-11 01:23:39 +05:30
mkdir -p /run/cryptsetup
2020-09-11 01:23:39 +05:30
resolve_device "$luks_root"
2021-05-10 16:53:34 +05:30
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 16:53:34 +05:30
"${luks_name:-crypt-${device##*/}}" || panic "failed to unlock LUKS"