| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
| |
Otherwise the length of the name is limited to 32 characters only.
|
| |
|
| |
|
|
|
|
|
| |
first. :)
PR: 6848
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
miscconfigured case) if the port is the console. This fixes several
bugs:
- if all sioprobe()s failed, then the console driver followed null
pointers in cdevsw[].
- if the sioprobe() for the console failed but another sioprobe()
succeeded, then init hung early when the console couldn't be
opened.
- it was silly for the console to not be there after printing boot
messages on it.
Bugs introduced by this are hopefully no worse than old ones caused
by forcing the success of the `cn' level probe.
|
|
|
|
| |
time() requires a time_t pointer, not a long.
|
|
|
|
|
|
|
|
|
| |
Only complain about an irq mismatch in the probe if the configured
irq doesn't become active, and then print the bitmap of irqs that
became active (including clock irqs) instead of just the first
(not including clock irqs).
Bugs reported by: msmith
|
|
|
|
| |
NetBSD syscalls are defined in sys.mk if they are being used.
|
|
|
|
| |
so that it works all the time.
|
| |
|
|
|
|
| |
don't try to use it to set special priorities.
|
|
|
|
|
| |
NetBSD syscalls are being used, so spam all compiles with the define
that indicates this.
|
|
|
|
|
| |
PR: 6760
Reviewed by: joerg
|
|
|
|
|
| |
PR: 4043
Submitted by: Joe Orthoefer <j_orthoefer@tia.net>
|
|
|
|
|
| |
PR: 6829
Submitted by: Josh Gilliam <josh@quick.net>
|
|
|
|
|
| |
PR: 6836
Submitted by: Andrew <andrew@ugh.net.au>
|
|
|
|
|
| |
PR: 6844
Submitted by: Adrian Filipi-Martin <adrian@ubergeeks.com>
|
|
|
|
|
|
| |
probe and intialisation. This will ultimately remove the grubby (but
functional) hack that copies a real-mode function into low memory
early in locore.s.
|
|
|
|
|
| |
Submitted by: zerium@webindex.no
MF22: remove '.' after weekday abbreviation.
|
|
|
|
| |
in <sys/sem.h>.
|
| |
|
|
|
|
|
|
|
| |
Submitted by: njs3@doc.ic.ac.uk
Obtained from: NetBSD
Implement embedded variable expansion
|
|
|
|
|
|
|
|
| |
layer does not like the null shmid_ds buffer pointer. The emulation layer
returned an error without ever calling FreeBSD's shmctl, so the segments
were not being deleted when the reference count went to zero."
Submitted by: Kevin Street <street@iname.com>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| |
it if flags were explicitly specified on the command line. Do not warn
if we were merely trying to preserve flags or remove UF_NODUMP. NFS does
not support flags.
I'm not sure that this is ideal, but it should do for now. Installing
a plain file onto a NFS server must work, we used to silently ignore the
attempt. Doing a binary install looses the flags anyway since cpio
doens't preserve them with the cdrom/network images.
XXX make world should not use flags or chown/chgrp in the obj/tmp area.
This is based on a suggestion from Ken Merry <ken@plutotech.com>.
|
|
|
|
|
|
| |
No comment. *-<:-)
Submitted by: "Pierre Y. Dampure" <pierre.dampure@k2c.co.uk>
|
|
|
|
|
|
|
| |
is blown away at boot. If sudo or other programs needs directories, they
had better make them in /usr/local/etc/rc.d/mumble.sh
PR: 4138 5619 6793
|
| |
|
| |
|
| |
|
| |
|
|
|
|
|
|
|
| |
o Make driver less chatty on boot (only announce version under
bootverbose)
Submitted by: Simon Shapiro <shimon@simon-shapiro.org>
|
| |
|
|
|
|
|
|
|
|
|
| |
available and the kernel MIB setting is zero.
Return the result from getpagesize() if the p1003_1b.pagesize MIB
value is zero.
Suggested by: Joerg Schilling <schilling@fokus.gmd.de>
|
|
|
|
| |
Submitted by: Micha Class <michael_class@hp.com>
|
|
|
|
| |
which do exist but are in the secure dist rather than the base.
|
| |
|
| |
|
| |
|
| |
|
| |
|
|
|
|
| |
usr.bin/ldd) as they stand alone and are under bsd-style license.
|
| |
|
|
|
|
| |
directory. The rcs files were repository copied.
|
| |
|
|
|
|
|
| |
from the gpl ld code. This is part 2 of something that I began in 1996.
A repository copy has happened behind cvs's back.
|
| |
|
|
|
|
|
|
|
|
| |
readrpc/writerpc, since they assume it's already been done. This could
break if the first read/write access to a nfs filesystem was an exec() or
mmap() instead of a read(), write() syscall. (or statfs()).
nfs_getpages() could return an errno (EOPNOTSUPP) instead of a VM_PAGER_*
return code. Some layout tweaks for the get/putpages code.
|
| |
|
| |
|
|
|
|
|
|
|
|
|
|
| |
an (over?) conservative assumption about what the client can store in it's
buffer cache using a signed 32-bit 512-byte block number index. Otherwise
it's possible for some file access when maxfilesize = 0 (eg: /usr is nfs
mounted and doing an execve())
Pointed out by: bde
XXX It might make sense to do a preemptive nfs_fsinfo() call at mount time.
|