Bruce Evans
22ddeb4b77
Fixed stripping of aout debugging kernels.
...
Fixed some style bugs (always use precisely 1 space after `:' in
dependency specifications).
Removed bogus dependency of ${FULLKERNEL} on ${BEFORE_DEPEND}.
1999-12-26 17:07:15 +00:00
Bruce Evans
3c7f758bda
Fixed spelling error in document title.
...
Fixed syntax error in synopsis.
1999-12-26 16:58:31 +00:00
Eivind Eklund
2b184c5087
Fix tab completion mounts (like /cdrom/)
...
Submitted by: Martin Blapp <mb@imp.ch>
1999-12-26 16:34:53 +00:00
Bruce Evans
9bcde22f7a
Don't include <isa/isavar.h> or compile code depending on it when isa
...
is not configured. Including <isa/isavar.h> when it is not used is
harmful as well as bogus, since it includes "isa_if.h" which is not
generated when isa is not configured.
1999-12-26 16:21:19 +00:00
Bruce Evans
bcf269395d
Moved $FreeBSD$ to its usual place after the CSRG id.
...
Fixed some style bugs for cam (superflous umask and missing newline).
Fixed bogons for apm. The pattern "apm*" matched too many things; apm
and apmctl were both made twice by `MAKEDEV all'. Hopefully no one
depends on `MAKEDEV apm0' making apm or on `MAKEDEV apm' making apmctl.
1999-12-26 15:24:58 +00:00
Peter Wemm
6e6afaaf50
Update the cvs pserver example so that it gives some more obvious clues
...
about the --allow-root switch.
PR: 14463
1999-12-26 15:18:58 +00:00
Bruce Evans
04d6f826d6
Updated a comment to match code.
1999-12-26 14:16:00 +00:00
Bruce Evans
f85bdfcc66
Removed unused includes.
...
Rumoved unused compatibility cruft for dup(). Using it today would just
break dup() on fd's >= 64.
Fixed some style bugs.
1999-12-26 14:07:43 +00:00
Bruce Evans
da211f5bf6
Use vfs_timestamp() instead of getnanotime() to set timestamps. This
...
fixee incoherency of pipe timestamps relative to file timestamps in
the usual case where getnanotime() is not used for the latter. (File
and pipe timestamps are still incoherent relative to real time unless
the vfs_timestamp_precision sysctl is set to 2 or 3).
1999-12-26 13:04:52 +00:00
Bruce Evans
ffd344ddbb
Replaced the INTRMASK and INTRUNMASK macros by "|" and "&~" operations.
...
Some interface botches went away, leaving the macros unused outside of
the implementation of interrupt masking, and it was silly for the
implementation to use the macros in only one place each.
1999-12-26 12:43:47 +00:00
Bruce Evans
265cdeddb7
Fixed breakage of read-only opening of /dev/*mem at securelevel > 0 in
...
previous pair of commits.
Spell the "securelevel > 0" check consistently.
Use the proc arg instead of curproc in mmopen() and mmclose().
1999-12-26 11:44:45 +00:00
Peter Wemm
7c361b70c5
Fix a mistake in the PNP EISA-encoding of the Avance ALS120 id.
...
Submitted by: Bryan Liesner <bleez@netaxs.com>
1999-12-26 10:51:47 +00:00
Bruce Evans
a824498e2d
Removed ex script left over from incomplete backout in previous commit.
...
Use SYMLINKS instead of an ad hoc rule for installing words -> web2.
Don't override the install target; doing so just breaks things like
SYMLINKS.
Don't override the correct defaults for the all, clean, depend, lint
and tags targets. Don't add a null rule to the cleandepend target.
1999-12-26 10:31:29 +00:00
KATO Takenori
1b1deb2dba
Oops, deactivate ed drivers because of undefiend references from
...
if_ed_pci.o.
1999-12-26 05:26:43 +00:00
KATO Takenori
26380d27fd
Added Allied Telesis SIU-98-D support.
...
Submitted by: Isizu Takaaki <isizu-t01@aso-group.co.jp>
chi@bd.mbn.or.jp (Chiharu Shibata)
(w/ minor change by kato)
1999-12-26 05:10:14 +00:00
Tim Vanderhoek
83d9b479e2
A missing verb to a sentence from last commit.
1999-12-26 04:41:29 +00:00
KATO Takenori
03d2edf1b2
- Cut down amount of memory in 64MB when BIOS tells the amount of
...
memory >= 64MB.
- Don't perform destructive memory inspection for 15 - 16MB system
area.
Submitted by: NOKUBI Hirotaka <hnokubi@yyy.or.jp>
chi@bd.mbn.or.jp (Chiharu Shibata)
1999-12-26 04:22:27 +00:00
Tim Vanderhoek
3fc3b10351
For some reason the HOME key wasn't documented. Document it. Expand
...
the docs on a couple other keys. While I'm here, document another ~3 bugs
that have been around for all eternity in the hope that I'll someday bother
to fix them.
1999-12-26 04:17:27 +00:00
Tim Vanderhoek
db0d7f4131
Allow excessive backspacing to correctly abort an input (most significantly
...
a search string input).
1999-12-26 03:03:04 +00:00
Tim Vanderhoek
9a49dca0b1
Expand source comments a little -=> increased readability.
1999-12-26 02:39:26 +00:00
Kris Kennaway
77142bf48c
This commit was generated by cvs2svn to compensate for changes in r55099,
...
which included commits to RCS files with non-trunk default branches.
1999-12-25 16:37:36 +00:00
Kris Kennaway
f595284587
Initial import of OpenSSL v0.9.4
1999-12-25 16:37:36 +00:00
Bruce Evans
0f19e631e2
Fixed races accessing the RTC. The races apparently caused
...
apm_default_resume() to sometimes set a very wrong time.
(1) Accesses to the RTC index and data registers were not atomic enough.
Interrupts were not masked. This was only good enough until an
interrupt handler (rtcintr()) started accessing the RTC in FreeBSD-2.0.
(2) Access to the block of time registers in inittodr() was not atomic
enough. inittodr() has 244us to read the time registers. Interrupts
were not masked. This was only good enough until something (apm)
started calling inittodr() after boot time in FreeBSD-2.0.
The fix for (2) also makes the timecounter update more atomic, although
this is currently unimportant due to the low resolution of the RTC.
Problem reported by: mckay
1999-12-25 15:30:31 +00:00
Kris Kennaway
2dc3a03235
Add directories: preparation for OpenSSL import.
1999-12-25 14:12:09 +00:00
Jordan K. Hubbard
5dee218bc4
Sacrifice, for now, NFS and NETGRAPH on the alpha boot floppy
...
so that we can get it back onto 1.44MB boot media again. This
does not affect the i386 class build.
1999-12-25 07:22:10 +00:00
Bill Fumerola
0aa40784a0
Backout rev1.7, as it broke adventure(6) (const'ing a non-r/o variable).
...
As wpaul notes, I was trying to fix something that wasn't broke.
1999-12-25 03:50:42 +00:00
Mike Smith
b9256fe34e
Fix the firmware build number output (again).
1999-12-25 01:45:22 +00:00
Doug Rabson
7e864cbf08
Don't pass u_int32_t pointers to BUS_READ_IVAR since it tends to make
...
alphas panic.
1999-12-24 16:22:45 +00:00
Doug Rabson
54ac5b9b76
* Set the devclass of a device before calling the probe method. This allows
...
device_printf() etc. to print something intelligible.
* Allow device_set_devclass(dev, 0) for clearing the devclass.
1999-12-24 16:21:15 +00:00
Bruce Evans
586453fee2
Fixed a cast of a pointer to an integer of a possibly different size.
...
Fixed casts of non-`void *' pointers to uintptr_t. Fixed related
style bugs. This file uses perfectly non-KNF formatting for casts.
1999-12-24 15:33:36 +00:00
Brian Feldman
9e5900ee43
Since we build and install gasp(1) in /usr/libexec/${OBJFORMAT}/,
...
and it is a user-run utility, it should be in objformat, so gasp
is in the ${PATH} :)
1999-12-24 15:18:19 +00:00
Bruce Evans
64c6ef6e8f
Removed unnecessary const poisoning (redundant casting) which was added
...
in rev.1.4.
1999-12-24 15:16:10 +00:00
KATO Takenori
cbdf33fa5d
Merge from sys/i386/conf/files.i386 rev 1.293.
1999-12-24 11:20:14 +00:00
KATO Takenori
a612687a3a
Merge from sys/i386/conf/GENERIC rev 1.218 & 1.219.
1999-12-24 11:12:43 +00:00
KATO Takenori
ece6ef6a7b
Removed -mno-486 from CFLAGS.
1999-12-24 11:09:40 +00:00
Sheldon Hearn
58db7ebe9b
Mandate the inclusion of <ieeefp.h> instead of <floatingpoint.h>. The
...
latter is just wrong.
There were many other problems spotted by bde, none of which are
addressed here.
Reviewed by: bde
1999-12-24 08:43:19 +00:00
Andrey A. Chernov
d595a9292e
Link la_LN*4 too
1999-12-24 08:10:48 +00:00
Andrey A. Chernov
907ddf9c39
Fix cut&paste error
1999-12-24 08:05:20 +00:00
Mike Smith
1a5bb1b602
Cosmetic fix; get the firmware build code and customisation tag the
...
right way around.
Submitted by: "Chris D. Faulhaber" <jedgar@fxp.org>
1999-12-24 07:04:23 +00:00
Andrey A. Chernov
86103e7efc
Add iso04 fonts
...
Submitted by: Ricardas Cepas <rch@writeme.com>
1999-12-24 06:30:43 +00:00
Andrey A. Chernov
fd7f33ad86
Add Lithuanian keyboard
...
Submitted by: Ricardas Cepas <rch@writeme.com>
1999-12-24 06:15:32 +00:00
Andrey A. Chernov
0e483924e4
Add lt_LT
...
Submitted by: Ricardas Cepas <rch@writeme.com>
1999-12-24 05:58:07 +00:00
Andrey A. Chernov
656f43ab9a
Add 8859-4 and lt_LT
...
Add missing dependance to cs_CZ
Submitted by: Ricardas Cepas <rch@writeme.com>
1999-12-24 05:47:10 +00:00
Andrey A. Chernov
a81c99add8
Add 8859-4 and lt_LT
...
Submitted by: Ricardas Cepas <rch@writeme.com>
1999-12-24 05:30:52 +00:00
Andrey A. Chernov
4a1cdbb167
Add 8859-4 and lt_LT entries
1999-12-24 05:27:04 +00:00
Andrey A. Chernov
70ccaafac0
Oops, fix typo in prev. commit
1999-12-24 05:01:14 +00:00
Andrey A. Chernov
15227b7d04
Add Latin2 FreeBSD consoles
...
Minor correction of comments
Submitted by: Latin2 console from Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
1999-12-24 04:55:06 +00:00
Andrey A. Chernov
942c101cfa
Add ACS support to 8859-2 fonts
...
Remove stale 8859-2 font
Fix Russian INDEX entries
Add more languages to FONT fields
Submitted by: fonts from Cejka Rudolf <cejkar@dcse.fee.vutbr.cz>
1999-12-24 04:35:33 +00:00
Andrey A. Chernov
fb46350574
Use 'i' for ACS lantern (as ncurses expect it)
1999-12-24 03:54:41 +00:00
Greg Lehey
587357da14
New man page. This will need modifications RSN.
1999-12-24 00:16:03 +00:00