✏️ 正在编辑: cryptkeyctl
路径:
/usr/share/initramfs-tools/hooks/cryptkeyctl
提示:
您可以编辑任何文件(包括二进制文件),但请注意不当修改可能导致文件损坏。
#!/bin/sh set -e PREREQ="cryptroot" prereqs() { echo "$PREREQ" } case $1 in prereqs) prereqs exit 0 ;; esac . /usr/share/initramfs-tools/hook-functions # Hooks for loading keyctl software into the initramfs # Check whether cryptroot hook has installed decrypt_keyctl script if [ ! -x ${DESTDIR}/lib/cryptsetup/scripts/decrypt_keyctl ]; then exit 0 fi # Install binaries into initramfs copy_exec /bin/keyctl copy_exec /bin/stty exit 0
💾 保存文件
← 返回文件管理器