~ubuntu-branches/ubuntu/wily/marionnet/wily

« back to all changes in this revision

Viewing changes to share/filesystems/machine-template.conf

  • Committer: Package Import Robot
  • Author(s): Lucas Nussbaum
  • Date: 2013-03-29 15:57:12 UTC
  • Revision ID: package-import@ubuntu.com-20130329155712-o0b9b96w8av68ktq
Tags: upstream-0.90.6+bzr407
Import upstream version 0.90.6+bzr407

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
# Marionnet filesystem's configuration file.
 
2
# The full Bash syntax may be used here.
 
3
#
 
4
# Some assignments used in this template are kept 
 
5
# from our old machine-pinocchio-14787
 
6
 
 
7
# The output of the command `md5sum' on the filesystem:
 
8
MD5SUM=1899ad5902a9491bb6f7e642e3352426
 
9
 
 
10
# The output (first field) of the command `sum' on the filesystem:
 
11
SUM=14787
 
12
 
 
13
# The creator of the filesystem:
 
14
AUTHOR="Jonathan Roudiere"
 
15
 
 
16
# The creation date:
 
17
DATE=2008
 
18
 
 
19
# The modification time (MTIME). Because of a user-mode-linux's protection
 
20
# mechanism, this setting is very important for sharing marionnet's projects
 
21
# between different installations. For instance, if you open on your laptop 
 
22
# a project created at the university, the involved filesystems must be the 
 
23
# same, of course, but they must also have exactly the same MTIME.
 
24
#
 
25
# Thus, it's a good idea to run this post-installation command:
 
26
#
 
27
# sudo touch -d $(date -d "@$MTIME") $FILESYSTEM
 
28
#
 
29
# where $MTIME is the value indicated below, and $FILESYSTEM is the location 
 
30
# of the filesystem image on your disk.
 
31
#
 
32
# On the other hand, if you are providing a new filesystem, you can set this 
 
33
# variable (once your filesystem is completely finished and stable) simply 
 
34
# running the command:
 
35
#
 
36
# stat -c "%Y" $FILESYSTEM 
 
37
#
 
38
MTIME=1291054770
 
39
 
 
40
# Supported kernel(s) with their console-related parameters (according to the
 
41
# content of /etc/inittab). The variable SUPPORTED_KERNELS may contain a list
 
42
# of statements of the form:
 
43
#
 
44
#   KERNEL [PARAMS]  [KERNEL [PARAMS]]..
 
45
#
 
46
# where
 
47
#
 
48
#   KERNEL ::= "[" EPITHET "]"
 
49
#            | "/" REGEXP  "/"
 
50
#
 
51
#   PARAMS is a string
 
52
#   EPITHET
 
53
#     is the suffix (the substring after "linux-") of an available 
 
54
#     kernel in a "kernels/" directory
 
55
#   REGEXP is a regular expression (possibly denoting some epithets)
 
56
#
 
57
# Several statements KERNEL [PARAMS] may be specified. Note that if you are
 
58
# using the += assignment operator to catenate statements, please dont forget
 
59
# the blank character to separe words (example: SUPPORTED_KERNELS+=" ...").
 
60
 
61
# Examples:
 
62
# SUPPORTED_KERNELS='[2.6.18-ghost] con=none ssl=xterm console=ttyS0'
 
63
# SUPPORTED_KERNELS+=' /3[.]0[.].*/ con=none con0=xterm ssl=xterm'
 
64
#
 
65
SUPPORTED_KERNELS='[2.6.18-ghost] con=none ssl=xterm console=ttyS0'
 
66
 
 
67
# X11 compliance. The possible (multiple) choices are "xhosted" and "xnested".
 
68
# The value "none" is equivalent to leave this variable empty, which means
 
69
# that the filesystem doesn't have the support to display X programs.
 
70
#
 
71
# Examples:
 
72
# X11_SUPPORT+="xhosted"
 
73
# X11_SUPPORT+="xnested"
 
74
# X11_SUPPORT="none"
 
75
#
 
76
X11_SUPPORT="none"
 
77