-
-
Notifications
You must be signed in to change notification settings - Fork 24
/
config.conf
50 lines (40 loc) · 1.72 KB
/
config.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
38
39
40
41
42
43
44
45
46
47
48
49
######################### Configuration File #########################
# All property names are Bash variables.
# Variable names must be all capital letters, no underscores.
# Comment out to apply the corresponding property.
# Any property defined as non-empty in this file will ignore
# its .config counterpart. Also, a non-empty property defined here
# will not prompt for input. Empty properties such as
# PROPERTY=
# will be ignored.
# 'y' stands for yes and 'n' stands for no, that being said,
# everything that isn't a 'y' or 'Y' is taken as 'n',
# even 'yes' is taken as 'n'.
#
# N.B:
# This file *is* a Bash script.
# There must not be any spaces around the assignment operator =
######################################################################
# Name of the disk (below example inserts date in Tue-Mar-28-08:15:43-UTC-2017 format)
# DISKNAME="mylive-amd64-$(date -u |tr '[:blank:]' '-')"
# Whether to enable or disable access control
# Enabling it will prevent GUI apps to run.
# XHOST=n
# Whether to keep home or not
# RETAINHOME=n
# Whether fast compression to be performed, size will be larger.
# FASTCOMPRESSION=n
# Whether the image to be built is UEFI image
# UEFI=n
# Whether to prevent building hybrid image.
# NOHYBRID=n
# chroot command to be used. Do not use this unless you know what you are doing
## CHROOT='schroot -c sid --' # A schroot configured for sid
## default chroot is:
## CHROOT='chroot ./edit'
# Kernel (version). Automates kernel related operation such as rebuilding initramfs
# KERNEL=linux-lts # or linux, linux-hardened or whatever (for archlinux)
# KERNEL=4.4.0-75-generic # example for Ubuntu 16.04 LTS
# KERNEL=4.9.0-2-amd64 # example for debian
# Whether to rebuild initramfs.
# REBUILDINITRAMFS=n