annotate etc/3B-MAXMEM @ 26847:2f17ea330dae

Include composite.h. (DECODE_CHARACTER_ASCII): Don't handle composition here. (DECODE_CHARACTER_DIMENSION1): Likewise. Don't check the validity of multibyte code here. (DECODE_CHARACTER_DIMENSION2): Likewise. (detect_coding_emacs_mule): Change the case label from EMACS_leading_code_composition to 0x80. (detect_coding_iso2022): Handle new composition sequence. (DECODE_ISO_CHARACTER): Likewise. (check_composing_code): Deleted. (coding_allocate_composition_data): New function. (CODING_ADD_COMPOSITION_START) (CODING_ADD_COMPOSITION_END) (CODING_ADD_COMPOSITION_COMPONENT) (DECODE_COMPOSITION_START) (DECODE_COMPOSITION_END) (DECODE_COMPOSITION_RULE): New macros. (decode_coding_iso2022): Handle new composition sequence. (ENCODE_ISO_CHARACTER): Don't check composition here. (ENCODE_COMPOSITION_RULE) (ENCODE_COMPOSITION_START): New macros. (ENCODE_COMPOSITION_NO_RULE_START) (ENCODE_COMPOSITION_WITH_RULE_START): Deleted. (ENCODE_COMPOSITION_END): Handle new composition sequence. (ENCODE_COMPOSITION_FAKE_START): New macro. (encode_coding_iso2022): Handle new composition sequence. (ENCODE_SJIS_BIG5_CHARACTER): Delete superfluous `;' at the tail. (encode_coding_sjis_big5): Ignore composition. (setup_coding_system): Initialize new members of struct coding_system. Enable composition only when the coding system has `composition' property t. (coding_free_composition_data) (coding_adjust_composition_offset) (coding_save_composition) (coding_restore_composition): New functions. (code_convert_region): Call coding_save_composition for encoding and coding_allocate_composition_data for decoding. Don't skip ASCII characters if we handle composition on encoding. Call signal_after_change with Check_BORDER. (code_convert_string): Call coding_save_composition for encoding and coding_allocate_composition_data for decoding. Don't skip ASCII characters if we handle composition on encoding. (code_convert_string1): Set Vlast_coding_system_used after calling code_convert_string. (code_convert_string_norecord): Disable composition. (Fset_terminal_coding_system_internal): Likewise. (Fset_safe_terminal_coding_system_internal): Likewise. (Fset_keyboard_coding_system_internal): Likewise. (init_coding_once): Set emacs_code_class[0x80] to EMACS_invalid_code.
author Kenichi Handa <handa@m17n.org>
date Wed, 15 Dec 1999 00:06:45 +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