-
Notifications
You must be signed in to change notification settings - Fork 1
/
settings.env.example
35 lines (26 loc) · 1.33 KB
/
settings.env.example
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
###### Kernel Source and Version #######################################
## Kernel sources path
# KERNEL_SOURCE_PATH=/usr/src/linux
## Appends suffix to the kernel version (useful to get multiple kernels with same upstream version)
# KERNEL_LOCALVERSION=""
###### Kernel configuration ############################################
## Kernel arch (by obsolute path)
# CFG_DEFCONFIG="/usr/src/linux/arch/x86/configs/x86_64_defconfig" #(default)
## As alternative the distro default config provided by kernel_cfg
# CFG_DEFCONFIG="gentoo-fedora-x86_64.config" # from Gentoo sys-kernel/gentoo-kernel
# CFG_DEFCONFIG="gentoo-genkernel.config" # from Gentoo sys-kernel/genkernel
# CFG_DEFCONFIG="archlinux.config" # from Arch Linux package
## Configuration path. By default in application subdir
# CFG_PATH="$APPL_DIR"/cfg # Project path
# CFG_PATH="/etc/kernel/config.avail" # installation path (default)
# CFG_PATH="/etc/kernel/config.d/" # selected by eselect kernel-cfg
## Configuration Modules to be applied
CFG_MODULES="00_defaults.config
01_gentoo_base.config 01_gentoo_no-debug.config
10*
99*"
###### Kernel Installation #############################################
## Install target for bzImage and config file
# INSTALL_TARGET=/boot
## Post installation action script
# INSTALL_POST_ACTION='emerge -vaj @module-rebuild'