Garrett Wollman
c9b1d6048d
More loadable VFS changes:
...
- Make a number of filesystems work again when they are statically compiled
(blush)
- FIFOs are no longer optional; ``options FIFO'' removed from distributed
config files.
1994-09-22 19:38:41 +00:00
Paul Traina
af2c9cfd5b
Make iso_addr's output conform to modern conventions for NSAP
...
representation. Original code by pst but ported in as part of
enhancements to BIND 4.9.2 and returned to Vixie.
1994-09-22 19:31:29 +00:00
David Greenman
6ce81dd1b2
From 1.1.5:
...
>revision 1.8
>date: 1994/06/03 06:42:30; author: davidg; state: Exp; lines: +2 -2
>Patch from Bruce Evans: npxintr() needs to mask softclock().
1994-09-22 14:44:16 +00:00
Rodney W. Grimes
9093632c7d
Root should NEVER have . in the path.
1994-09-22 08:32:39 +00:00
Rodney W. Grimes
50db970974
Revert the change that removed the -k flag from the ls alias, we have ls -k
...
again.
1994-09-22 08:23:02 +00:00
Steven Wallace
5df5c6ab16
change COOKIE directory from .CURDIR to WRKDIR since a user may not have
...
write permission to .CURDIR but write permission to WRKDIR.
Also, WRKDIR may be deleted and cookie still exist in CURDIR.
1994-09-22 07:45:30 +00:00
Andrey A. Chernov
fd437b2bb2
Attention to all cc hackers, here workaround for gcc 2.6.0
...
optimizer bug (old code works without -O and don't works with -O)
old !(x & y) != !(a & b) changed to !!(x & y) != !!(a & b)
1994-09-22 03:58:43 +00:00
Andrey A. Chernov
8354392e6b
Fix mvcur typo bug from my previous fix
1994-09-22 03:09:04 +00:00
Poul-Henning Kamp
b7e9accbaa
Various cleanup and fixes.
1994-09-22 02:49:24 +00:00
Garrett Wollman
5ba34297b9
Fix stupid memory-allocation error.
1994-09-22 02:17:26 +00:00
Garrett Wollman
fed2752194
Automatically load filesystem if not present in system and loadable.
1994-09-22 02:15:34 +00:00
Garrett Wollman
c974f9c6a6
Use getvfs* functions to map between VFS types and names.
...
Automatically load UFS if it is not present but is loadable.
(This won't happen now, but could happen if we fix NFS diskless support.)
1994-09-22 02:07:33 +00:00
Garrett Wollman
862cdb8eb6
Call ffs ``ufs'' for the benefit of poor, confused user-land programs.
1994-09-22 01:57:27 +00:00
Garrett Wollman
839f16ab63
Build lsvfs.
1994-09-22 01:26:58 +00:00
Garrett Wollman
2a136300ac
Added lsvfs command to show loaded VFS modules (including statically-linked
...
ones).
1994-09-22 01:25:57 +00:00
Andrey A. Chernov
c8939366a1
1) Make ctype-aware expect chars in range 0200-0204 treated
...
as controls in any case.
2) Fix bug with incorrect column position when standouts occurse
3) Fix bug when last standouted char cause clearing next line
in standout
1994-09-22 01:19:13 +00:00
Garrett Wollman
8e2331ca34
Added VFS functions: getvfsvbyname, getvfsbytype, getvfsent, setvfsent,
...
endvfsent, vfsisloadable, vfsload.
Someday these will even be documented.
1994-09-22 01:07:37 +00:00
Garrett Wollman
dff55bb5c2
mount.h: Declare getvfs* functions from libc.
...
vfs_init.c: Fix fs_sysctl() so that getvfs* functions actually work.
1994-09-22 01:05:09 +00:00
Garrett Wollman
4b1e44f14a
Build LKMs for all ``easy'' filesystems. (lfs can be done, but it's more
...
work; ditto NFS and it's even more work.)
1994-09-21 23:27:16 +00:00
Garrett Wollman
67bfdf835b
Fix a few niggling little bugs:
...
- set args->lkm_offset correctly so that VFS modules can be unloaded
- initialize _fs_vfsops.vfc_refcount correctly so that VFS modules can
be unloaded
- include kernel.h in a few placves to get the correct definition of DATA_SET
1994-09-21 23:22:52 +00:00
Bruce Evans
0e4885ff09
Remove bogus cast that was introduced in the previous commit.
1994-09-21 22:34:38 +00:00
Bruce Evans
9fb420314e
Remove redundant declarations that were added in the previous commit.
1994-09-21 22:31:01 +00:00
Bruce Evans
f6d370a798
Fix the consistent mistranslation of Linux's get_fs_word() and
...
put_fs_word() to fuword() and suword(). Linux words are 16 bits
but BSD words are 32-bits, at least on vax's. Writing a too-large
word trashed the neighbouring short word.
Bruce
1994-09-21 22:22:48 +00:00
Bruce Evans
ccadde2151
Fix compiler warnings.
1994-09-21 21:58:39 +00:00
Andrey A. Chernov
24891fb1df
Make ls ctype-aware
1994-09-21 20:23:07 +00:00
David Greenman
36317691a4
#if 0'd evil dynamic fifo trigger level adjustment; it just bit me and
...
a couple of other people again.
1994-09-21 19:39:25 +00:00
David Greenman
354c733261
From 1.1.5:
...
>date: 1994/05/27 01:09:16; author: ache; state: Exp; lines: +3 -3
>Russian keymap: Ctrl-Alt-Del with NumLock on fixed
1994-09-21 18:43:08 +00:00
David Greenman
11fe0935dd
From 1.1.5:
...
>date: 1994/06/15 14:35:30; author: paul; state: Exp; lines: +3 -3
>CHanged MAXMEM to ISMAXMEM for safety
1994-09-21 18:33:23 +00:00
David Greenman
868424648b
Fixed up a couple of comments.
1994-09-21 18:17:56 +00:00
Andrey A. Chernov
b3673749c7
Add BINDIR=/usr/sbin for install, fails in other case
1994-09-21 18:12:10 +00:00
Andrey A. Chernov
3724878728
Add BINDIR=/usr/sbin for install, fails in other case
...
Remove -g from CFLAGS
1994-09-21 18:11:56 +00:00
Poul-Henning Kamp
caabd87d0a
The next batch of refinements. Now it no longer needs to call on ed(1) to
...
fix our files, it has a builtin "diff -n" editor.
1994-09-21 04:38:48 +00:00
Garrett Wollman
1aa57be361
Make it easier to create filesystem LKMs by doing most of the
...
work in the Makefile. Just define VFS_LKM and you're off!
1994-09-21 03:49:59 +00:00
Garrett Wollman
c901836c14
Implemented loadable VFS modules, and made most existing filesystems
...
loadable. (NFS is a notable exception.)
1994-09-21 03:47:43 +00:00
Jordan K. Hubbard
84cc2dc332
Add entry for transputer (cdev 8).
...
Reviewed by: jkh
Submitted by: luigi
1994-09-21 01:33:00 +00:00
Jordan K. Hubbard
db814a26b3
Add entries for transputer driver.
...
Reviewed by: jkh
Submitted by: luigi
1994-09-21 01:30:15 +00:00
Jordan K. Hubbard
27552c6f58
Add the transputer driver from Christoph Niemann, Luigi Rizzo and
...
Lorenzo Vicisano
Reviewed by: jkh
Submitted by: luigi
1994-09-21 01:29:41 +00:00
Garrett Wollman
f274239ba0
Documented YP functionality, part II.
1994-09-20 22:44:37 +00:00
Bruce Evans
8793135f2d
Don't provide bogus source operands in some asms. This probably shouldn't
...
matter, but similar bogusness in npx.c causes compiling without -O to fail.
Use __volatile in all asms.
Parenthesize macro args.
Change the names of the macros to avoid namespace pollution.
Remove unnecessary "#ifdef __i386__".
Sort #defines.
Add comments.
1994-09-20 22:26:37 +00:00
Adam David
f89971dfe7
Better documentation, 1ms calibration, default 5 seconds BOOTWAIT
...
Reviewed by: adam
Submitted by: rgrimes
1994-09-20 22:25:00 +00:00
Bruce Evans
2c5bafb1f8
Parenthesize macro args.
...
Comment #endif's.
1994-09-20 22:24:26 +00:00
Bruce Evans
00f21b4680
Don't build profiled library.
1994-09-20 22:03:09 +00:00
Garrett Wollman
6af9798fed
Document YP support.
1994-09-20 22:02:20 +00:00
Garrett Wollman
9486c394b4
My implementation of YP group file support, modeled after the
...
password file support done yesterday.
1994-09-20 21:43:27 +00:00
Garrett Wollman
468bb86a7d
Second half of YP security hole fix. Needs updated password
...
database in order to operate.
1994-09-20 21:42:12 +00:00
Garrett Wollman
ab5f8d28a4
Fix security hole in YP password support, which wouldmake +user entries
...
act like + entries in some cases. Requires support in libc from next
commit.
1994-09-20 21:40:12 +00:00
Bruce Evans
38a03467df
Don't supply the `usermode' arg to softclock(). The 2.0 softclock() doesn't
...
take an arg.
1994-09-20 21:35:49 +00:00
Bruce Evans
7fecb8e845
Don't lose the RTC interrupt in resettodr().
1994-09-20 21:20:46 +00:00
David Greenman
db3170abc8
Sorted.
1994-09-20 15:55:09 +00:00
David Greenman
348c7a1250
Fixed bug where /etc/ftpusers was ineffective. Caused by the wrong
...
pointer being passed to strcmp(). Bug noticed by Matthew Green.
1994-09-20 15:53:30 +00:00