summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Change 93-11-XX for the FreeBSD 1.0 release to 93-11-01, based on thisnik2001-06-151-1/+1
| | | | | | | | | announcement from JKH (back when he was still working for Lotus) http://minnie.tuhs.org/cgi-bin/newsread?23150 This also means that if, as Microsoft say, Linux is a Cancer, FreeBSD is a Scorpio.
* oops. prepare_usermode() died in August 2000 in the MI and x86 code.peter2001-06-153-22/+0
| | | | Issue raised by: scottl
* Add a new category of fortunes, 'freebsd-tips'. Useful hints, advice, andnik2001-06-152-3/+281
| | | | | pointers to areas of the system that might not be apparent on first inspection.
* Include a mention of WRKDIRPREFIX, useful when mounting /usr/ports readonlynik2001-06-152-0/+8
| | | | from another host.
* Bah, back out part of previous commit. I got too carried away.peter2001-06-151-1/+1
| | | | linux_debug_map[] is referred to from elsewhere.
* Unbreak OpenSSH for the KRB5-and-no-KRB4 case. Asking for KRB5 doesmarkm2001-06-151-1/+3
| | | | not imply that you want, need or have kerberosIV headers.
* Fix warning:peter2001-06-151-1/+1
| | | | 163: passing arg 4 of `resource_string_value' from incompatible pointer type
* Fix warnings:peter2001-06-151-48/+48
| | | | | 585: warning: missing braces around initializer 605: warning: missing braces around initializer
* Fix warnings:peter2001-06-153-9/+9
| | | | | 908: warning: long unsigned int format, unsigned int arg (arg 3) 887: warning: `timezero' defined but not used
* Fix warnings:peter2001-06-151-5/+5
| | | | | 235: warning: unsigned int format, pointer arg (arg 3) 621: warning: cast discards qualifiers from pointer target type
* Fix warning:peter2001-06-151-2/+2
| | | | 239: warning: no previous prototype for `linux_debug'
* Fix warning:peter2001-06-151-1/+1
| | | | 413: warning: long unsigned int format, vm_offset_t arg (arg 2)
* Fix warning:peter2001-06-151-1/+1
| | | | 1973: warning: int format, long int arg (arg 5)
* Fix warning:peter2001-06-151-2/+2
| | | | 298: warning: assignment makes pointer from integer without a cast
* Fix warnings:peter2001-06-151-3/+6
| | | | | | 412: warning: long unsigned int format, unsigned int arg (arg 3) 418: warning: long unsigned int format, unsigned int arg (arg 3) 424: warning: long unsigned int format, unsigned int arg (arg 3)
* Fix warning: 203: implicit declaration of function `kernel_sysctlbyname'peter2001-06-151-0/+1
|
* Fix warning: (int/long mixup in printf)peter2001-06-151-1/+1
| | | | 475: warning: unsigned int format, long unsigned int arg (arg 3)
* Fix warning. s/char/unsigned char/ in "(char *)eth"peter2001-06-151-1/+1
| | | | 294: warning: ethernet address is not type unsigned char *
* Fix warning: 848: warning: label `nosupport' defined but not usedpeter2001-06-151-1/+0
|
* Fix warning; remove unused variablepeter2001-06-151-1/+1
|
* Remove unused variablepeter2001-06-151-1/+0
|
* Fix some warnings in kern_environment.c. Make the getenv*() familypeter2001-06-152-6/+6
| | | | | | take a const 'name', since they dont modify anything. 159: warning: passing arg 1 of `getenv_int' discards qualifiers... 167: warning: passing arg 1 of `getenv' discards qualifiers from pointer..
* Fix warning: 186: warning: label `done' defined but not usedpeter2001-06-151-1/+0
|
* remove most of the warningsassar2001-06-1516-277/+144
|
* Fix warning: 568: warning: `portal_badop' defined but not usedpeter2001-06-151-13/+0
|
* Fix a stack of KAME netinet6/in6.h warnings:peter2001-06-151-2/+4
| | | | | 592: warning: `struct mbuf' declared inside parameter list 595: warning: `struct ifnet' declared inside parameter list
* Fix warning (exposed NetBSD code):peter2001-06-151-1/+1
| | | | 94: warning: `ntfs_bmap' declared `static' but never defined
* Fix warnings (mostly harmless, due to struct bio being embedded in buf):peter2001-06-151-2/+2
| | | | | 738: warning: passing arg 1 of `biodone' from incompatible pointer type 745: warning: passing arg 1 of `biodone' from incompatible pointer type
* Fix warning: 552: warning: `fdesc_badop' defined but not usedpeter2001-06-151-12/+0
|
* Fix warning: 128: warning: initialization makes pointer from integerpeter2001-06-151-1/+4
| | | | | Note: this file has lots of #if __FreeBSD__ >= 4 etc which needs to be changed to __FreeBSD_version >= 400000 etc.
* add the option -S for printing port numbers symbolically but addressesassar2001-06-1510-45/+55
| | | | numerically. clean up the CFLAGS in Makefile.
* Fix warnings:peter2001-06-151-1/+0
| | | | | | | | | vinumhdr.h:80: warning: redundant redeclaration of `vinum_cdevsw' vinumext.h:239: warning: previous declaration of `vinum_cdevsw' in each of the following files: vinum.c, vinumconfig.c, vinumdaemon.c, vinuminterrupt.c, vinumio.c, vinumioctl.c, vinumlock.c, vinummemory.c, vinumraid5.c, vinumrequest.c, vinumrevive.c, vinumstate.c, vinumutil.c
* Fix warnings:peter2001-06-151-4/+5
| | | | | | | | | musycc.c:449: warning: long unsigned int format, unsigned int arg (arg 3) musycc.c:449: warning: long unsigned int format, unsigned int arg (arg 4) musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 3) musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 4) musycc.c:453: warning: long unsigned int format, unsigned int arg (arg 5) These warnings used to be confined to the alpha but are on all now.
* Fix warning: 110: initialization makes pointer from integer without a castpeter2001-06-151-2/+1
| | | | | This was passing a (d_kqfilter_t *)-1 as the kqfilter function pointer. Fortunately there was no D_KQFILTER in d_flags, so this was harmless.
* Fix warning: 193: warning: label `done' defined but not usedpeter2001-06-151-1/+0
|
* Fix warnings:peter2001-06-151-1/+1
| | | | | | 554: passing arg 4 of `resource_string_value' from incompatible pointer type 576: passing arg 4 of `resource_string_value' from incompatible pointer type 593: passing arg 4 of `resource_string_value' from incompatible pointer type
* Fix warnings:peter2001-06-151-1/+0
| | | | | 1831: warning: unused variable `noise' 1831: warning: unused variable `sig'
* Fix warning: 179: warning: label `done' defined but not usedpeter2001-06-151-1/+0
|
* Fix warnings:peter2001-06-151-4/+4
| | | | | 1267: warning: suggest parentheses around comparison in operand of & 2087: warning: unused variable `li'
* Warning fix: coda_fbsd.c:113: warning: unused variable `ret'peter2001-06-152-2/+0
|
* Temporarily disable INTRO_USERCONFIG for the moment.peter2001-06-141-1/+1
| | | | Noted by: Dave Cornejo <dave@dogwood.com>
* Don't hardcode in "/release/doc/"; instead, make it the default of add2001-06-141-2/+5
| | | | | | new RELN_ANCHOR variable. It may be necessary to override this if the path to the checked out release notes tree doesn't end with "release/doc".
* If we're not going to use am7990_shutdown, comment it all out.mjacob2001-06-141-0/+4
| | | | MFC after: 2 weeks
* Fix Assembler buglet: Warning: .end directive names different symbol than .entmjacob2001-06-141-1/+1
| | | | MFC after: 2 weeks
* New release notes: New arp(8) keywords for proxy entries, new localebmah2001-06-142-0/+66
| | | | | names, route(8) has better error messages, new route(8) host/bits syntax, route(8) proxy-only published ARP entries, pkg_version(1) -s.
* We've had problems with data corruption occuring onmjacob2001-06-141-0/+21
| | | | | | | | | | commands that complete (with no apparent error) after we receive a LIP. This has been observed mostly on Local Loop topologies. To be safe, let's just mark all active commands as dead if we get a LIP and we're on a private or public loop. MFC after: 4 weeks
* New release notes: orm(4), VM out-of-swap fixes, IPv6 update frombmah2001-06-142-12/+72
| | | | | | | | KAME, isp(4) Fibre Channel update, dump(8) -T doesn't gobble its argument, libfetch authentication callback, libfetch HTTP_USER_AGENT, install(1) -d -C generates a warning, du(1) -I MFCs noted: RFC 1323/1644 back-off.
* Restore -M -N support for -m.ru2001-06-144-32/+69
| | | | PR: 20808
* Implement a loadable module for the oltr Olicom Token Ring driver. Ijoerg2001-06-142-1/+36
| | | | | | | | | | | | | | | | | | could only get a chance of testing it under 4.3, but together with the if_oltr.c fixes at least it seems to work now. If someone has the chance to test this under -current, please do. Unfortunaltey, the TR code itself (if_iso88025subr.c) is not written in a way that would allow to make a seaparate KLD out of it. By now, just link it directly into the oltr KLD since it's probably the POLA to be able to load the TR code together with the only TR hardware driver we've got by now. I've got one single unexplained panic (in doreti_switch or somewhere there, calling a 0xc1XXXXXX address that did no longer belong to the kernel at all) after unloading the modules once, thus i don't propose a MFC of this module despite my testing has been done solely on 4.3, unless someone is really going to test this stuff in -current.
* Do only call oltr_stop() if we are not already in OL_STOPPED state.joerg2001-06-141-3/+14
| | | | | | | | | | This avoids a null pointer deref panic in TRlldClose() inside the vendor-supplied object code. It's now possible to unload the driver at all. Implement deallocation of malloc()ed memory regions. MFC after: 2 months
OpenPOWER on IntegriCloud