forked from andreyv/sbupdate
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathsbupdate.conf
37 lines (34 loc) · 1.33 KB
/
sbupdate.conf
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
# Configuration file for sbupdate
#
# Commented-out variables show default values.
# Common settings
#
# KEY_DIR Directory with the custom Secure Boot keys
# ESP_DIR EFI System Partition location
# OUT_DIR Relative path on ESP for signed kernel images
# SPLASH Splash image file. Use "/dev/null" to disable splash.
# BACKUP Whether to back up old signed kernel images
# EXTRA_SIGN An array of additional files to sign
# CMDLINE_DEFAULT Default kernel command line (REQUIRED)
#KEY_DIR="/etc/efi-keys" # Uncomment and change to use the old dir
#ESP_DIR="/boot"
#OUT_DIR="EFI/Arch"
#SPLASH="/usr/share/systemd/bootctl/splash-arch.bmp"
#BACKUP=1
#EXTRA_SIGN=()
#CMDLINE_DEFAULT=""
# Per-kernel configuration
#
# For each kernel <NAME> the following optional settings may be added:
#
# CMDLINE[<NAME>]="..." # Alternative kernel command line
# # Default value: ${CMDLINE_DEFAULT}
# INITRD[<NAME>]="..." # Alternative initramfs files (space separated)
# # Default value: /boot/initramfs-<NAME>.img
#
# Examples:
# CMDLINE["linux-lts"]="custom command line"
# INITRD["linux"]="/boot/initramfs-linux.img /boot/initramfs-linux-fallback.img"
#
# Note: Intel and AMD microcode updates are handled automatically and
# do not need to be specified in INITRD.