blob: 1b52a68b66dbf20fc4d445846a3792b5830f247f (
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
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
|
# /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"
# Bootstrap config (Default: empty)
#LIVE_BOOTSTRAP_CONFIG=""
# 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=""
# Kernel packages (Default: auto-detected)
#LIVE_KERNEL_PACKAGES=""
# 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=""
# Custom repositories (Default: none)
#LIVE_REPOSITORIES=""
# Custom repository list
LIVE_REPOSITORY_bpo="http://www.backports.org/debian/"
LIVE_REPOSITORY_KEY_bpo="http://backports.org/debian/archive.key"
LIVE_REPOSITORY_KEYRING_bpo=""
LIVE_REPOSITORY_DISTRIBUTION_bpo="sarge-backports"
LIVE_REPOSITORY_SECTIONS_bpo="main contrib non-free"
LIVE_REPOSITORY_edu="http://ftp.skolelinux.org/skolelinux/"
LIVE_REPOSITORY_KEY_edu=""
LIVE_REPOSITORY_KEYRING_edu="debian-edu-archive-keyring"
LIVE_REPOSITORY_DISTRIBUTION_edu="etch-test"
LIVE_REPOSITORY_SECTIONS_edu="local"
LIVE_REPOSITORY_restricted="http://ftp.debian-unofficial.org/debian-restricted/"
LIVE_REPOSITORY_KEY_restricted="http://ftp-master.debian-unofficial.org/key_2007.asc"
LIVE_REPOSITORY_KEYRING_restricted=""
LIVE_REPOSITORY_DISTRIBUTION_restricted=""
LIVE_REPOSITORY_SECTIONS_restricted="restricted"
LIVE_REPOSITORY_fai="http://www.informatik.uni-koeln.de/fai/download/"
LIVE_REPOSITORY_KEY_fai=""
LIVE_REPOSITORY_KEYRING_fai=""
LIVE_REPOSITORY_DISTRIBUTION_fai="etch"
LIVE_REPOSITORY_SECTIONS_fai="koeln"
# 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"
|