annotate etc/3B-MAXMEM @ 27260:ec1a21729421

(xemacsp, version18p, version-20p): Add ispell- prefix. Only define dictionaries in menus when they exist. (version18p): New variable. (version20p): New variable. (xemacsp): New variable. (ispell-choices-win-default-height): Fix for XEmacs visibility. (ispell-dictionary-alist1): Added Brasileiro dictionary. (ispell-dictionary-alist6): Russian command lines no longer accept run-together words. (ispell-local-dictionary-alist): Add koi8-r to customize definition. (ispell-dictionary-alist): Add koi8-r to customize definition. (check-ispell-version): Added documentation string. Returns library path when called non-interactively. (ispell-menu-map-needed): Uses new variables. (ispell-library-path): New variable. (ispell-decode-string): XEmacs fix for bogus variable bindings. (ispell-word): Improved documentation string. Test for valid character mappings. Correctly check typed in word changes that can result in single words split into multiple words. Returns replacement word. (ispell-command-loop): Fixes XEmacs display bugs. Show word to replace in recursive query replace mode. Help message for recursive edit mode. (ispell-show-choices): Protect against bad framepop bindings. (ispell-help): Fix to work with XEmacs. (ispell-highlight-spelling-error): Use new variables. (ispell-overlay-window): Fix to work with XEmacs. (ispell-parse-output): Passed and returns location information tracking spelling corrections. Doesn't recheck same word on current line. (ispell-init-process): Protect against bogus XEmacs variable binding. Fix call to single argument in sleep-for. Use new variables. (ispell-region): Passed and returns location information tracking spelling corrections. Doesn't check same word on current line. Improved documentation string. Doesn't resend a line already checked to the ispell process - fixes bug in LaTeX parsing. (ispell-begin-skip-region-regexp): No longer skips <TT> in SGML. (ispell-skip-region): No longer skips <TT> in SGML. (ispell-process-line): Tracks location information with spelling corrections. Added documentation string. Accounts for words already accepted on this line. Don't allow query-replace on line starting with math characters. Doesn't resend a line already sent to ispell process. Fixes alignment error bug.
author Gerd Moellmann <gerd@gnu.org>
date Mon, 10 Jan 2000 12:02:49 +0000
parents e96ffe544684
children
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
25853
Dave Love <fx@gnu.org>
parents:
diff changeset
1 Date: Mon, 16 Feb 87 15:04:41 EST
Dave Love <fx@gnu.org>
parents:
diff changeset
2 From: katinsky@gauss.rutgers.edu (David Katinsky)
Dave Love <fx@gnu.org>
parents:
diff changeset
3 To: rms@prep.ai.mit.edu
Dave Love <fx@gnu.org>
parents:
diff changeset
4 Subject: 3b2 procedure to raise MAXMEM
Dave Love <fx@gnu.org>
parents:
diff changeset
5
Dave Love <fx@gnu.org>
parents:
diff changeset
6 Below is the procedure I followed to allow enough memory for GnuEmacs to run
Dave Love <fx@gnu.org>
parents:
diff changeset
7 on my 3b2/400. The end result of this is that a process can snarf up to 2Mb
Dave Love <fx@gnu.org>
parents:
diff changeset
8 of memory. This can be a bit dangerous on a 2Mb machine, but I tried it and
Dave Love <fx@gnu.org>
parents:
diff changeset
9 it worked ok.
Dave Love <fx@gnu.org>
parents:
diff changeset
10
Dave Love <fx@gnu.org>
parents:
diff changeset
11 -------------------------------------------------------------------------------
Dave Love <fx@gnu.org>
parents:
diff changeset
12
Dave Love <fx@gnu.org>
parents:
diff changeset
13 In the simplest case, these are the procedures to reconfigure a 3bx kernel.
Dave Love <fx@gnu.org>
parents:
diff changeset
14
Dave Love <fx@gnu.org>
parents:
diff changeset
15
Dave Love <fx@gnu.org>
parents:
diff changeset
16
Dave Love <fx@gnu.org>
parents:
diff changeset
17 1] cd /etc/master.d
Dave Love <fx@gnu.org>
parents:
diff changeset
18
Dave Love <fx@gnu.org>
parents:
diff changeset
19 `ls` shows the files to be:
Dave Love <fx@gnu.org>
parents:
diff changeset
20
Dave Love <fx@gnu.org>
parents:
diff changeset
21 README ctc* hdelog idisk ipc iuart kernel mau
Dave Love <fx@gnu.org>
parents:
diff changeset
22 mem msg ports* prf sem shm stubs sxt
Dave Love <fx@gnu.org>
parents:
diff changeset
23 sys xt
Dave Love <fx@gnu.org>
parents:
diff changeset
24
Dave Love <fx@gnu.org>
parents:
diff changeset
25 2] Edit the file which contains the parameter[s] you wish to change.
Dave Love <fx@gnu.org>
parents:
diff changeset
26 In the following excerpt from /etc/master.d/kernel the value MAXMEM
Dave Love <fx@gnu.org>
parents:
diff changeset
27 was raised from 256 to 1024.
Dave Love <fx@gnu.org>
parents:
diff changeset
28
Dave Love <fx@gnu.org>
parents:
diff changeset
29 In V.3.0 and later releases, the parameter in question is MAXUMEM
Dave Love <fx@gnu.org>
parents:
diff changeset
30 instead of MAXMEM.
Dave Love <fx@gnu.org>
parents:
diff changeset
31
Dave Love <fx@gnu.org>
parents:
diff changeset
32
Dave Love <fx@gnu.org>
parents:
diff changeset
33 *
Dave Love <fx@gnu.org>
parents:
diff changeset
34 * The following entries form the tunable parameter table.
Dave Love <fx@gnu.org>
parents:
diff changeset
35 *
Dave Love <fx@gnu.org>
parents:
diff changeset
36
Dave Love <fx@gnu.org>
parents:
diff changeset
37
Dave Love <fx@gnu.org>
parents:
diff changeset
38 NCALL = 30
Dave Love <fx@gnu.org>
parents:
diff changeset
39 NPROC = 60
Dave Love <fx@gnu.org>
parents:
diff changeset
40 NTEXT = 58
Dave Love <fx@gnu.org>
parents:
diff changeset
41 NCLIST = 188
Dave Love <fx@gnu.org>
parents:
diff changeset
42 * maxmem is number of pages (2K) was 256 --dmk
Dave Love <fx@gnu.org>
parents:
diff changeset
43 MAXMEM = 1024
Dave Love <fx@gnu.org>
parents:
diff changeset
44 MAXUP = 25
Dave Love <fx@gnu.org>
parents:
diff changeset
45 * hashbuf must be a power of 2
Dave Love <fx@gnu.org>
parents:
diff changeset
46 NHBUF = 128
Dave Love <fx@gnu.org>
parents:
diff changeset
47 NPBUF = 8
Dave Love <fx@gnu.org>
parents:
diff changeset
48
Dave Love <fx@gnu.org>
parents:
diff changeset
49 3] cd /boot
Dave Love <fx@gnu.org>
parents:
diff changeset
50
Dave Love <fx@gnu.org>
parents:
diff changeset
51 4] mkboot -k KERNEL
Dave Love <fx@gnu.org>
parents:
diff changeset
52
Dave Love <fx@gnu.org>
parents:
diff changeset
53 5] shutdown -i5 -g0 -y
Dave Love <fx@gnu.org>
parents:
diff changeset
54
Dave Love <fx@gnu.org>
parents:
diff changeset
55 This will take the machine down and bring it back up into firmware
Dave Love <fx@gnu.org>
parents:
diff changeset
56 mode. When you see that the machine has reached this state, type the
Dave Love <fx@gnu.org>
parents:
diff changeset
57 firmware password (default=mcp). The machine will ask for the name of
Dave Love <fx@gnu.org>
parents:
diff changeset
58 a program to execute. At this prompt enter /etc/system . The machine
Dave Love <fx@gnu.org>
parents:
diff changeset
59 should start to boot and display its configuration data.
Dave Love <fx@gnu.org>
parents:
diff changeset
60
Dave Love <fx@gnu.org>
parents:
diff changeset
61
Dave Love <fx@gnu.org>
parents:
diff changeset
62
Dave Love <fx@gnu.org>
parents:
diff changeset
63 8701271222 dmk
Dave Love <fx@gnu.org>
parents:
diff changeset
64
Dave Love <fx@gnu.org>
parents:
diff changeset
65 [katinsky@topaz.rutgers.edu]
Dave Love <fx@gnu.org>
parents:
diff changeset
66 -------------------------------------------------------------------------------
Dave Love <fx@gnu.org>
parents:
diff changeset
67
Dave Love <fx@gnu.org>
parents:
diff changeset
68
Dave Love <fx@gnu.org>
parents:
diff changeset
69
Dave Love <fx@gnu.org>
parents:
diff changeset
70 I do not feel that having the default firmware password is a
Dave Love <fx@gnu.org>
parents:
diff changeset
71 problem... but if you wish to edit it out, feel free.
Dave Love <fx@gnu.org>
parents:
diff changeset
72
Dave Love <fx@gnu.org>
parents:
diff changeset
73 dmk
Dave Love <fx@gnu.org>
parents:
diff changeset
74
Dave Love <fx@gnu.org>
parents:
diff changeset
75