blob: a039aefd09ebbf9b2e44d27410fb61d3214f7054 (
plain)
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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
|
# /etc/make-live.conf - configuration file for make-live(8)
# make-live does work out of the box. However, if you want to customize it,
# you can edit the variables below. Look make-live.conf(8) for more information.
# Root directory (Default: `pwd`/debian-live)
#LIVE_ROOT="`pwd`/debian-live"
# Image type (Default: iso)
#LIVE_TYPE="iso"
# Bootstrap architecture (Default: auto-detected)
#LIVE_ARCHITECTURE="i386"
# Boot parameters (Default: empty)
#LIVE_BOOTAPPEND=""
# Chroot directory (Default: ${LIVE_ROOT}/chroot)
#LIVE_CHROOT="${LIVE_ROOT}/chroot"
# Configuration file (Default: /etc/make-live.conf)
#LIVE_CONFIG="/etc/make-live.conf"
# Debian distribution (Default: sid)
#LIVE_DISTRIBUTION="sid"
# Image filesystem (Default: squashfs for iso, plain for net)
#LIVE_FILESYSTEM="squashfs"
# Bootstrap flavour (Default: standard)
#LIVE_FLAVOUR="standard"
# User command (Default: empty)
#LIVE_HOOK=""
# Chroot includes (Default: empty)
#LIVE_INCLUDE_CHROOT=""
# Image includes (Default: empty)
#LIVE_INCLUDE_IMAGE=""
# Kernel flavour (Default: auto-detected)
#LIVE_KERNEL=""
# Desktop package manifest (Default: empty)
#LIVE_MANIFEST=""
# Debian mirror (Default: http://ftp.debian.org/debian/)
#LIVE_MIRROR="http://ftp.debian.org/debian/"
# Debian security mirror (Default: http://security.debian.org/)
#LIVE_MIRROR_SECURITY="http://security.debian.org/"
# Packages (Default: empty)
#LIVE_PACKAGES=""
# Package list (Default: standard)
#LIVE_PACKAGE_LIST="standard"
# Chroots ftp_proxy (Default: empty)
#LIVE_PROXY_FTP=""
# Chroots http_proxy (Default: empty)
#LIVE_PROXY_HTTP=""
# Debian section (Default: main)
#LIVE_SECTION="main"
# Netboot server (Default: 192.168.1.1)
#LIVE_SERVER_ADDRESS=""
# Netboot path (Default: /srv/debian-live/chroot)
#LIVE_SERVER_PATH=""
# Image templates (Default: /usr/share/make-live/templates)
#LIVE_TEMPLATES="/usr/share/make-live/templates"
# Generic package indices (Default: no)
#LIVE_GENERIC_INDICES="no"
# Source images (Default: no)
#LIVE_SOURCE="no"
|