~ubuntu-branches/ubuntu/feisty/basilisk2/feisty

« back to all changes in this revision

Viewing changes to src/Windows/prefs_windows.cpp

  • Committer: Bazaar Package Importer
  • Author(s): Jonas Smedegaard
  • Date: 2006-06-01 01:11:16 UTC
  • mfrom: (1.1.2 upstream)
  • Revision ID: james.westby@ubuntu.com-20060601011116-xjhegbgyfsxag5fl
Tags: 0.9.20060529-1
* New upstream CVS snapshot.
* Update local cdbs snippet copyright-check.mk:
  + Broaden scan to also look for "(c)" by default.
  + Make egrep options configurable.
  + Ignore auto-tools files.
* Bump up standards-version to 3.7.2 (no changes needed).
* Let dh_strip do the stripping (not the make install target).

Show diffs side-by-side

added added

removed removed

Lines of Context:
41
41
#ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
42
42
        {"ignoresegv", TYPE_BOOLEAN, false,    "ignore illegal memory accesses"},
43
43
#endif
 
44
        {"idlewait", TYPE_BOOLEAN, false,      "sleep when idle"},
44
45
        {"enableextfs", TYPE_BOOLEAN, false,   "enable extfs system"},
45
46
        {"debugextfs", TYPE_BOOLEAN, false,    "debug extfs system"},
46
47
        {"extdrives", TYPE_STRING, false,      "define allowed extfs drives"},
47
48
        {"pollmedia", TYPE_BOOLEAN, false,     "poll for new media (e.g. cd, floppy)"},
 
49
        {"etherguid", TYPE_STRING, false,      "GUID of the ethernet device to use"},
48
50
        {"etherpermanentaddress", TYPE_BOOLEAN, false,  "use permanent NIC address to identify itself"},
49
51
        {"ethermulticastmode", TYPE_INT32, false,       "how to multicast packets"},
50
52
        {"etherfakeaddress", TYPE_STRING, false,        "optional fake hardware address"},
128
130
#ifdef HAVE_SIGSEGV_SKIP_INSTRUCTION
129
131
        PrefsAddBool("ignoresegv", false);
130
132
#endif
 
133
        PrefsAddBool("idlewait", true);
131
134
        PrefsReplaceBool("etherpermanentaddress", true);
132
135
        PrefsReplaceInt32("ethermulticastmode", 0);
133
 
        PrefsReplaceBool("routerenabled", false);
134
136
        PrefsReplaceString("ftp_port_list", "21");
 
137
        PrefsReplaceString("seriala", "COM1");
 
138
        PrefsReplaceString("serialb", "COM2");
135
139
        PrefsReplaceString("portfile0", "C:\\B2TEMP0.OUT");
136
140
        PrefsReplaceString("portfile1", "C:\\B2TEMP1.OUT");
137
141
}