-
Notifications
You must be signed in to change notification settings - Fork 4
/
mkinitrd.conf
29 lines (24 loc) · 887 Bytes
/
mkinitrd.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
#
# This file is sourced by mkinitrd
#
# add your extra binaries to initrd
# for binary outside PATH, enter absolute path
# shared libraries will automatically detected and added
BINARIES=()
# add your extra files from your system to initrd
# use absolute path
# if symlink, real file automatically detected and added
FILES=()
# add your extra kernel modules to initrd
# module dependencies will automatically detected and added
# firmware also automatically detected and added
MODULES=()
# build/run/cleanup hook
# hook directory is /etc/mkinitrd.d
# only build hook (*.build) will be executed when building initrd
# run (*.run) and cleanup (*.cleanup) hook if exist will be added into initrd
# order is matter for run and cleanup hook
# cleanup hook will be executed reversely
HOOKS=(base udev modules)
# change custom name and path for initrd output
#INITRD="initrd-$KERNEL.img"