Commit Graph

33231 Commits

Author SHA1 Message Date
dima
ee5e508394 Reenable fstat for alpha. 1998-11-09 11:08:48 +00:00
dima
2c16d6276e Reenable systat/vmstat for alpha. 1998-11-09 10:52:43 +00:00
dima
9350eb30ef Add some bogus stuff to make systat/vmstat happy.
Reviewed by:	dfr
1998-11-09 10:47:19 +00:00
peter
68c08cdb68 ifioctl takes a u_long rather than an int on 3.0 1998-11-09 09:34:00 +00:00
peter
efa47e68d1 Add #include to get a prototype for update_intr_masks(). 1998-11-09 09:30:55 +00:00
peter
0b04784d79 "fix" a warning that has been bugging me for ages. Eliminate a couple
of temporary variables since they are only used once and their types
were the cause of the warnings.
1998-11-09 09:21:25 +00:00
peter
1034ece765 s/%#p/%p/ to fix a warning. This looks like a leftover of once being
%#x, which causes a leading 0x to be prepended. %p has this by default
and the '#' is ignored by the kernel prinf code for %p.
1998-11-09 08:08:06 +00:00
peter
c541680191 Fix a warning (#include the apic_next_irq() prototype for APIC_IO) 1998-11-09 08:03:01 +00:00
peter
cfa66ece23 Delete stray extern declaration for non-existing variables. 1998-11-09 07:03:04 +00:00
peter
c227178f58 Remove [apparently] bogus casts to u_long for the vnode_pager_setsize()
second argument.  np_size is a 64 bit int, so is the second arg.  This
might have caused needless 2G/4G file size problems.

I believe it was Bruce who queried this.
1998-11-09 07:00:14 +00:00
jkoshy
6fb504f49b Fix a .Nm -> .Fn fix that was missed in the previous commit.
Pointed-out-by:	Bruce Evans
1998-11-09 06:52:46 +00:00
peter
49826d7340 Fix typo (if it's not a typo, then it doesn't make sense IMHO) 1998-11-09 05:40:22 +00:00
truckman
232677bd5d Fix some calculations that use sizeof to attempt to find the end of an
array that were doing sizeof on an unrelated variable.  This just happened
to work right on the i386, but would not on the alpha.

PR: bin/8427
1998-11-09 03:43:55 +00:00
steve
0e1e2dce28 Do a better job of determining if we were called as uptime(1).
PR:		8593
1998-11-09 01:19:30 +00:00
des
c67faadd9a main.c:
Fix usage string. Fix getopt() string. Fix ordering of compatibility options.
fetch.1:
 Fix synopsis. Fix ordering of T and t options. Fix minor grammar nit.
1998-11-08 23:18:48 +00:00
jkh
646f1b0ce5 Whoops, properly compress doc files again. 1998-11-08 20:47:57 +00:00
phk
f9fcff6b76 Allow for printing out integer arrays. 1998-11-08 19:27:43 +00:00
phk
3d402eedd3 Update interface to timecounter to last change to the generic code. 1998-11-08 19:26:23 +00:00
nsouch
fe59e67e6a Add semicolon to INTERFACE declaration. 1998-11-08 18:51:38 +00:00
dfr
50dd4b4d31 Port the ps/2 mouse driver to the alpha. 1998-11-08 18:43:03 +00:00
nsouch
d29f8d5e02 Check if devclass exists for probed devices before
declaring the device 'alive'.
1998-11-08 18:42:34 +00:00
nsouch
3c1698865a Update configuration files for the perl based makedevops script.
Submitted by: Nick Hibma <nick.hibma@jrc.it>
Approved by:  Doug Rabson <dfr@nlsystems.com>
1998-11-08 18:39:57 +00:00
rnordier
dc45a79b52 Prevent boot.config being parsed more than once. 1998-11-08 18:37:28 +00:00
nsouch
e2c3811a93 Add semicolon to INTERFACE declarations 1998-11-08 18:35:53 +00:00
nsouch
cc64727aee "Here is the most recent version of makedevops.pl. I've made the parsing
of the input file more strict and the error messages more elaborate.
Second, the output file has slightly improved looks when >80 character
lines are concerned (I needed a 80 character line formatter anyway for
work...)."

Submitted by: Nick Hibma <nick.hibma@jrc.it>
1998-11-08 18:33:11 +00:00
rnordier
7385d1af71 Drop the familiar 'text=xxxx data=xxxx bss=xxxx ...' display while
loading.  This eliminates noise when loading boot/loader; and when
loading a kernel, they generally flash by too fast to be
intelligible anyway.
1998-11-08 18:29:29 +00:00
rnordier
7c887cb15d boot1: Eliminate EDD detection and optional use of disk packet
interface.  Do some general consistency fixes and space optimizations.
Use of some freed-up space to defend against possible BIOS misfeatures.

boot2: Revise disk read interface to provide for boot1 changes.  Free
up space for this.
1998-11-08 15:36:35 +00:00
brian
04a516b615 Explain what the command line switches do and what the
various prompts signify.
1998-11-08 13:06:19 +00:00
brian
9e850ba8f4 Fix a few typos
Submitted by: Forgotten (sorry)
1998-11-08 13:05:30 +00:00
dfr
cda8a342be * Fix a couple of places in the device pager where an address was
truncated to 32 bits.
* Change the calling convention of the device mmap entry point to
  pass a vm_offset_t instead of an int for the offset allowing
  devices with a larger memory map than (1<<32) to be supported
  on the alpha (/dev/mem is one such).

These changes are required to allow the X server to mmap the various
I/O regions used for device port and memory access on the alpha.
1998-11-08 12:39:07 +00:00
gpalmer
5a8921b934 dig, dnsquery & host seem to work on the alpha now 1998-11-08 12:37:30 +00:00
asami
c1c389e55b (1) New variable MAKE_ARGS: will be appended to build/install make argument
list.  The old MAKE_FLAGS was a little hard to use since it had a weird
    default ("-f").
Suggested by:	Shigeyuki FUKUSHIMA <shige@kuis.kyoto-u.ac.jp>

(2) Add new targets clean-restricted and clean-for-cdrom, which will
    delete RESTRICTED and NO_CDROM packages and distfiles from the top.
Reviewed by:	jkh

(3) Add depends to list of things to recurse on.  It will help people
    who are trying to fetch some ports plus their dependencies.

Requested by:	Chris Dillon <cdillon@wolves.k12.mo.us>
1998-11-08 10:29:53 +00:00
peter
be4a48fe99 Missing newline at end of file causes syntax error. 1998-11-08 09:57:28 +00:00
dima
2215710c14 64bit clean now 1998-11-08 08:27:16 +00:00
msmith
50c207cd0e Enable 686 class optimisations for all 686-class processors, not just the
Pentium Pro.  This resolves the "Dog slow SMP" issue for Pentium II
systems.
1998-11-08 02:26:14 +00:00
wpaul
82c45919b6 Spell November correctly. 1998-11-07 17:54:11 +00:00
wpaul
494031c8f8 Add man page for the RealTek 8129/8139 driver. 1998-11-07 17:40:18 +00:00
jkh
759a9b6b00 o Add proper stack checking to all file words
o add fkey and fread
o eliminate fexists now that this can be expressed in HLL forth
  ( : fexists fopen dup -1 <> if fclose 1 else drop 0 then ; ) :-)

Once we get the ability to write files, it should be possible to do
stand-alone rescue work from the 3rd stage boot. :)
1998-11-07 17:38:40 +00:00
nsouch
8ffcf3d619 Change METHODE (french) to METHOD.
Submitted by: Nick Hibma <nick.hibma@jrc.it>
1998-11-07 14:56:04 +00:00
nsouch
d446bd7575 Define DEBUG only if not already defined, avoiding confusions with
opt_global.h
1998-11-07 14:35:41 +00:00
nsouch
62e30fa2d7 Add iic driver iff the corresponding devclass exists. 1998-11-07 14:33:46 +00:00
nsouch
2628e5544d Return to previous check_for_i2c_devices() behaviour.
Cast the cmd parameter to unsigned char in every smbus call.

Submitted by: Roger Hardiman <roger@cs.strath.ac.uk>
1998-11-07 14:30:48 +00:00
des
e4c71cd391 fetch_err.h is a generated file, so don't look for it in ${.CURDIR}. 1998-11-07 08:59:38 +00:00
jkh
24dd9999f4 Eliminate much code cruft by extending simple file I/O API to include
fopen and fclose.
1998-11-07 06:18:06 +00:00
jkh
6901718ae1 Eliminate much code cruft by extending simple file I/O API to include
fopen and fclose.  Also look for /boot/boot.4th now and, if found,
load its contents.
1998-11-07 06:18:00 +00:00
jkh
c2367684c4 Take init out of here - it's a layering violation. 1998-11-07 05:01:25 +00:00
peter
c5ab27e586 oops! s/vfs_register/vfs_unregister/ in the unload case..
Mentioned by: dfr
1998-11-07 04:51:36 +00:00
peter
aaa24cb3d8 Don't define the module glue if building as an LKM, this happens to have
a same symbol name as the LKM glue.
1998-11-07 04:34:02 +00:00
jkh
4a00a3763a Don't have debugging on by default - it makes testing annoying. :) 1998-11-07 03:44:10 +00:00
jdp
c2e4cecfcd Fix a bug in the handling of minor version numbers. Formerly, the
rtld would accept the first shared library it found with the right
major version number, even if the minor version number was too low.
If a different version of the shared library with an adequate minor
version number appeared later in the search path, it would not be
found.

Now the rtld searches all locations first looking for a library
with a minor version that is high enough.  Only if such a library
is not found will it fall back to accepting a minor version number
that is too low.  As before, a warning comes out in that case.

This solves some problems encountered when building an older world
on a -current system.
1998-11-07 01:59:39 +00:00