forked from xmikos/cryptboot
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcryptboot.conf
More file actions
24 lines (17 loc) · 709 Bytes
/
cryptboot.conf
File metadata and controls
24 lines (17 loc) · 709 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# Encrypted boot device name (/dev/mapper/$BOOT_CRYPT_NAME)
# (have to be specified in /etc/crypttab)
BOOT_CRYPT_NAME="cryptboot"
# Boot partition mount point (have to be specified in /etc/fstab)
BOOT_DIR="/boot"
# EFI System partition mount point (have to be specified in /etc/fstab)
EFI_DIR="/boot/efi"
# Default boot loader (only GRUB is supported for now)
BOOT_LOADER="GRUB"
# Boot entry in UEFI Boot Manager (if using GRUB boot loader)
EFI_ID_GRUB="GRUB"
# Path to GRUB boot loader EFI file (relative to EFI System partition)
EFI_PATH_GRUB="EFI/grub/grubx64.efi"
# UEFI Secure Boot keys directory
EFI_KEYS_DIR="/boot/efikeys"
# Command run to upgrade system packages
PKG_UPGRADE_CMD="pacman -Syu"