blob: ff0c1efc29bcbdf900be67c794c4858ed28405dd (
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
|
#
# Global settings, these are passed on to all modules
#
[global]
fstype=ext2
# How large to create the initial image (MB). Be generous, as image
# creation will fail if it is too small, and it will be created as a
# sparse file, making it relatively inexpensive
initialsize=1024
# Will be resized to leave this much free space when building is
# complete. Leave unset or set to 0 to disable resizing.
freespace=0
# Which modules to invoke. Each module can have its own section
# below, with module-specific settings
modules=network mkfs mount debian uml umount
# Global environment variables
PATH=/bin:/sbin:/usr/bin:/usr/sbin
# Use of a caching proxy is highly recommended where a local mirror is
# not available, so that packages are not fetched many times
# unnecessarily. I use squid.
#http_proxy=http://192.168.10.1:3128
#
# Networking
#
# required unless you have a local copy of all packages to be installed
# these settings are only used during installation
[network]
interface=eth0
transport=slirp
host=
uml=10.0.2.15
nameserver=10.0.2.3
gateway=10.0.2.2
netmask=255.255.0.0
slirp=slirp-fullbolt
#
# Debian module
#
[debian]
dist=sid
# A local mirror is best, a caching proxy (such as squid) is almost as
# good
mirror=http://ring.asahi-net.or.jp/archives/linux/debian/debian
# Packages which should not be installed in the first place (be sure
# you know what you're doing)
exclude=pcmcia-cs setserial dhcp-client
# Packages which should be purged after the initial install
purge=base-config console-common console-tools console-data console-tools-libs
# Extra packages to install via debootstrap
#include=myfavoritepackage someotherpackage
# Extra packages to install via apt after initial debootstrap install
#install=myfavoritepackage someotherpackage
[uml]
install_modules=yes
|