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

« back to all changes in this revision

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