summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | Fix typo in comment.jdp1999-02-191-2/+2
| |
* | On the i386, load the ELF dynamic linker where an mmap(0, ...) wouldjdp1999-02-192-10/+14
| | | | | | | | | | | | | | | | | | put it, just like on the Alpha. It was wrong to load it at the fixed address 0x08000000. That should only be done if the dynamic linker is an executable (not a shared object) with a specific load address encoded in the object file itself. This fixes the recent breakage in the Linux emulator.
* | Document a changed variable name.jkh1999-02-183-9/+9
| |
* | Moved [uo]hci_pci.c from /sys/dev/pci to /sys/pci after Sorenn_hibma1999-02-185-3/+461
| | | | | | | | | | | | | | threatened to send Bruce. These files are no longer shared with NetBSD anyway. Requires a config and make depend.
* | Change to a proper numbering scheme for the ugen device. It requiresn_hibma1999-02-182-6/+26
| | | | | | | | | | a unit and endpoint number. This is combined into a minor number. The naming of the devices in /dev is now /dev/ugen<unit>.<endpoint>
* | Set the devstat priority for ccd devices to DEVSTAT_PRIORITY_CCDken1999-02-182-4/+4
| | | | | | | | instead of DEVSTAT_PRIORITY_OTHER.
* | Moved busreset in uhci_init up to avoid clearing of FLBASE in Via 83572n_hibma1999-02-181-11/+8
| | | | | | | | (PR1)
* | Limit number of simultanious asynchronous swap pager I/Os that candillon1999-02-181-13/+109
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | be in progress at any given moment. Add two swap tuneables to sysctl: vm.swap_async_max: 4 vm.swap_cluster_max: 16 Recommended values are a cluster size of 8 or 16 pages. async_max is about right for 1-4 swap devices. Reduce to 2 if swap is eating too much bandwidth, or even 1 if swap is both eating too much bandwidth and sitting on a slow network (10BaseT). The defaults work well across a broad range of configurations and should normally be left alone.
* | Build correctly when -DNOCRYPT is used.brian1999-02-182-19/+81
| |
* | Don't expect a chap response if we haven't negotiatedbrian1999-02-181-2/+3
| | | | | | | | chap 0x80.
* | More style fixes to bring this almost to bde's suggested version.obrien1999-02-181-17/+13
| |
* | Undo Nicolas' changes (1.91->1.92, added USB controller in pcisupport.c).n_hibma1999-02-181-3/+1
| | | | | | | | Please don't.
* | Fix sync rate and transfer rate printouts in xpt_announce_periph().ken1999-02-181-6/+18
| | | | | | | | | | | | | | | | | | | | | | Sync rates like 4.032MHz were getting printed as 4.32MHz. Also, add a quirk entry for the 18G Quantum Atlas III. Like most other recent Quantum drives, it bogusly reports queue full. Thanks to Andre Albsmeier <andre.albsmeier@mchp.siemens.de> for the Atlas III inquiry information. Reviewed by: gibbs
* | Make .Os behave as defined (unrecognized arguments displayed as given).fenner1999-02-181-12/+8
| | | | | | | | | | Add a warning for unknown BSD versions. Make ".Os FreeBSD" work without a warning (fix bug in previous commit).
* | Spell ".Fx" properly.fenner1999-02-181-2/+2
| |
* | bde suggests not to trust ${COPY} to always be defined.obrien1999-02-181-17/+13
| | | | | | | | also fix style bugs submitted by Bruce
* | Move the declaration of the vfs.nfs sysctl node outside an ifdef so thatdfr1999-02-183-9/+9
| | | | | | | | | | | | it builds if NFS_NOSERVER is defined. Spotted by: Bruce Evans <bde@zeta.org.au>
* | Add a little bit more identifying information to the myriad PCI networkwollman1999-02-182-28/+34
| | | | | | | | drivers.
* | Fully support both NT and LANMan CHAP type 0x80 as bothbrian1999-02-1812-173/+444
| | | | | | | | authenticator and authenticatee.
* | Initialize procsig0.ps_refcnt to 1 (instead of 2), this would silenceluoqi1999-02-171-2/+2
| | | | | | | | | | | | | | | | complaints about ps_refcnt greater than two when we try to fork() a kthread from proc0 with RFSIGSHARE flag set. Noticed by: Tor Egge <tegge@fast.no> Reviewed by: Richard Seaman, Jr. <dick@tar.com>
* | Use ${MAKE} not 'make -f'msmith1999-02-172-8/+8
| | | | | | | | Submitted by: tfreak@fluffybunny.jaded.net
* | fix double LIST_REMOVE; other cosmetic changes to match version 9.32.mckusick1999-02-173-36/+39
| | | | | | | | Obtained from: Jeffrey Hsu <hsu@FreeBSD.ORG>
* | Fixed bitrot in NFS_ACDEBUG option.bde1999-02-174-4/+8
| |
* | Use `${CC} ${CFLAGS} ${LDFLAGS} -nostdlib -Wl...' instead ofbde1999-02-171-5/+5
| | | | | | | | | | | | | | `ld ... <fudged ${LDFLAGS}>' to invoke the linker. This gets the flags and standard library paths right without complications. Unfortunately, it doesn't help for the X11 library paths -- cc only appends /aout for standard library paths.
* | Submitted by: Luoqi Chen <luoqi@watermarkgroup.com>dillon1999-02-171-1/+12
| | | | | | | | | | | | | | Unlock vnode before messing with map to avoid deadlock between map and vnode ( e.g. with exec_map and underlying program binary vnode ). Solves a deadlock that most often occurs during a large -j# buildworld reported by three people.
* | Catch up with the past week:imp1999-02-171-2/+9
| | | | | | | | | | | | | | | | | | | | Add better text for the ppbus changes Add note about libdevstat changing forcing a recompile of some things in the tree as well as ports that use devstat. Thanks to those people that used HEADS UP in their message. Large, rabid mammals to those that wanted to beat the /etc/rc* horse with the phrase "heads up" in the subject line.
* | Document forward(1) better.jkoshy1999-02-171-1/+18
| | | | | | | | | | PR: docs/10126 Submitted by: Sue Blake <sue@welearn.com.au>
* | Add a note about ELF executables requiring to be linked with -export-dynamicjkoshy1999-02-171-0/+8
| | | | | | | | for dlsym() searches inside the executable to work.
* | Nuke any remaining auth timers when datalinks come back downbrian1999-02-171-9/+17
| | | | | | | | to DATALINK_LCP.
* | add now required queue.h includemjacob1999-02-161-1/+2
| |
* | Fix off-by-one error.fenner1999-02-161-2/+2
| |
* | Re-enable doscmd build.luoqi1999-02-161-1/+2
| |
* | Look for aout X libraries at the right place.luoqi1999-02-161-4/+10
| |
* | Better fix for the traceroute flood bug.des1999-02-161-7/+16
| | | | | | | | Submitted by: bde
* | - Cosmetic change.kato1999-02-162-10/+14
| | | | | | | | | | | | | | - Enable bs driver. - Add ax and xl drivers. Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
* | Merge with sys/i386/conf/options.i386 revision 1.102.kato1999-02-162-2/+6
| | | | | | | | Submitted by: Takahashi Yoshihiro <nyan@dd.catv.ne.jp>
* | Sync with sys/i386/i386/machdep.c revision 1.326.kato1999-02-162-4/+16
| |
* | * Change sysctl from using linker_set to construct its tree using SLISTs.dfr1999-02-1638-267/+337
| | | | | | | | | | | | | | | | | | | | This makes it possible to change the sysctl tree at runtime. * Change KLD to find and register any sysctl nodes contained in the loaded file and to unregister them when the file is unloaded. Reviewed by: Archie Cobbs <archie@whistle.com>, Peter Wemm <peter@netplex.com.au> (well they looked at it anyway)
* | Be more forgiving of PnP config saving failures.jkh1999-02-162-8/+14
| |
* | Wait by default for one second after the login scriptbrian1999-02-167-38/+141
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | is complete before checking carrier. If it's there, the device supports carrier. If it's not it doesn't. Add the ``set cd'' command for deciding how soon to check for carrier, and for deciding if carrier is REQUIRED. The default has changed: Pre 2.0 versions of ppp waited for 1 second. Version 2 didn't wait, but this causes problems with some (few?) modems that don't assert carrier immediately on reporting CONNECT. The one second delay is back now and can be removed with ``set cd 0''. Bump the ppp version number in case this needs to be changed again....
* | Applied patch from MAEKAWA Masahide <bishop@rr.iij4u.or.jp>. (PR2)n_hibma1999-02-151-0/+8
| | | | | | | | | | | | Seems to solve a problem with a mouse not responding to movements in the X direction. Problem description is still rather vague and solution is not exactly clear. Problem might be a compiler optimisation.
* | Added vendor Compaq/CMDTACH and USB067[03]n_hibma1999-02-151-0/+21
| |
* | Added more verbose debugging output to uhci_runn_hibma1999-02-151-2/+26
| |
* | Enable load of i386 ELF kernels with larger KVA range (e.g. starting attegge1999-02-151-2/+2
| | | | | | | | 0xe0100000u or 0xc0100000u instead of the usual 0xf0100000u).
* | back out obj/colldef PATH hack, it breaks cross-compiling per Bruceache1999-02-152-8/+2
| | | | | | | | There is _BUILD_TOOLS hack for. Plase all targets under it.
* | Fixed bitrot in usage message and disordering of options in previous commit.bde1999-02-151-7/+7
| | | | | | | | | | | | | | I'm not sure why we have `mvstat -z'. `sysctl vm.zone' gives more information. OTOH, `sysctl vm.zone' shouldn't return ASCII data, and reporting of memory use should be integrated, at least as an option.
* | Fixed disordering of options in previous commit.bde1999-02-151-4/+4
| |
* | EOPNOTSUPP also applies to fchflags().bde1999-02-151-0/+3
| |
* | Don't pass -static in ${LDFLAGS} to ld for building doscmd.kernel,bde1999-02-151-2/+2
| | | | | | | | | | | | since it means -s (strip), and static linkage is forced correctly anyway. Other things in ${LDFLAGS} are still bogusly passed to ld. This only affects the aout case.
* | Corrected ioctl numbers conflict.roger1999-02-153-111/+141
| | | | | | | | | | Thanks to Vsevolod Lobko <seva@alex-ua.com> for spotting this. P:
OpenPOWER on IntegriCloud