summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Unbreak installworld.truckman2002-09-191-0/+4
| | | | | Apparently /usr/include/dev grew a couple of subdirectories, but nobody informed mtree.
* While well intentionned the check to see it there is a packetjulian2002-09-191-3/+0
| | | | | | | | | | | header and return that length, was misguided. The check itself didn't take into account the fact that the mbuf pointer pased in may be null, and the function is defined specifically for cases where the caller knows what it wants. Rather than fix the check I'm removing it as phk suggested. Submitted by: phk@freebsd.org
* reconnect libc_rjulian2002-09-191-1/+1
| | | | Hint from: deischen@freebsd.org
* Part of a bandaid to get libc_r on air again.julian2002-09-191-0/+4
| | | | | Submitted by: Dan Eischen (deischen@freebsd.org) Pointy hat for breakage just before going offline: Mini@freebsd.org
* - Use my freebsd email alias in the copyright.jeff2002-09-195-12/+5
| | | | - Remove redundant instances of my email alias in the file summary.
* - added macio and psim filesgrehan2002-09-191-1/+8
| | | | | | - removed unused extintr.c Approved by: benno
* psim device supportgrehan2002-09-191-0/+1
| | | | Approved by: benno
* Support files and a h/w tree description for the PSIM ppc simulatorgrehan2002-09-196-0/+1018
| | | | Approved by: benno
* Driver for the macio south bridge, and ATA cell contained within.grehan2002-09-193-0/+817
| | | | Approved by: benno
* softc and register defs for the UniNorth chipgrehan2002-09-191-1/+19
| | | | Approved by: benno
* - probe the UniNorth chip in addition to the PCI bridgesgrehan2002-09-191-3/+114
| | | | | | | - enable GEM ethernet cell if present - allow sparse address mapping for devices Approved by: benno
* Removed osigframe. No need for COMPAT_43 signal bin-compat in PPC.grehan2002-09-191-6/+0
| | | | Approved by: benno
* psim device supportgrehan2002-09-191-0/+1
| | | | Approved by: benno
* <machine/types.> -> <sys/types.h>grehan2002-09-191-1/+1
| | | | Approved by: benno
* Fix clearing of recoverable exception MSR bit when disablinggrehan2002-09-191-1/+1
| | | | | | interrupts Approved by: benno
* Additional machdep sysctl constants needed for userland utilsgrehan2002-09-191-2/+6
| | | | Approved by: benno
* Added sparse address support, required by the macio ATA devicegrehan2002-09-191-4/+9
| | | | Approved by: benno
* Fixed branch labelsgrehan2002-09-191-5/+5
| | | | Approved by: benno
* - bring vm_mapbuf/unmapbuf in line with other archsgrehan2002-09-192-84/+50
| | | | | | - update for recent KSE changes Approved by: benno
* - make sure recoverable interrupts are re-enabled in the trap handlergrehan2002-09-192-14/+6
| | | | | | - turn on ast() loop to enable signal delivery Approved by: benno
* - worked around 32-bit big-endian syscall return value problemgrehan2002-09-192-18/+40
| | | | | | | - syscall register spills weren't copied in correctly - removed VM_PROT_READ from the fault type on write protect faults Approved by: benno
* Add sync before isync for G4 cpusgrehan2002-09-191-1/+1
| | | | | Obtained from: NetBSD Approved by: benno
* - use symbol for user-context offsetgrehan2002-09-191-2/+7
| | | | | | - fix szsigcode size declaration Approved by: benno
* - use BAT registers to map device space and physical memorygrehan2002-09-193-84/+402
| | | | | | | | | | - remove test in pmap_activate that prevented vmspace sharing (v/rfork) - always sync icache in pmap_enter until problems are sorted - fix incorrect use of regions in pmap_kenter - bring in pmap_release from NetBSD - fix overwrite of bootstrap flag in pmap_pvo_enter Approved by: benno
* - psim device supportgrehan2002-09-191-17/+38
| | | | | | - comment out re-enabling of interrupts until problems are sorted Approved by: benno
* Clear on-demand BAT entries to properly restore OpenFirmware'sgrehan2002-09-192-0/+12
| | | | | | address space Approved by: benno
* psim device supportgrehan2002-09-192-0/+10
| | | | Approved by: benno
* - implemented sendsig/sigreturngrehan2002-09-192-676/+338
| | | | | | | | | - sysctl for cacheline size, required by libc/rtld - init'd more exception vectors - fixed problem with register overwrite in exec_setregs - removed redundant NetBSD code Approved by: benno
* - moved intrcnt/intrnames to locore.s to fix sysctl -a panicgrehan2002-09-195-12/+36
| | | | Approved by: benno
* - rationalised includesgrehan2002-09-191-11/+13
| | | | | | - added sigframe offset Approved by: benno
* - removed unnecessary includesgrehan2002-09-191-28/+7
| | | | | | | - converted inline asm to C for int enable - shifted clearing of 'cold' to end of routine Approved by: benno
* Repo copied to <sys/smbus/smb.h>peter2002-09-191-64/+0
|
* Repo copied to <sys/iicbus/iic.h>peter2002-09-191-47/+0
|
* intmax_t is printed with %jd, not %lld.obrien2002-09-191-7/+7
|
* Return the correct environment name for 64-bit platforms in thewollman2002-09-191-1/+2
| | | | _CS_POSIX_V6_WIDTH_RESTRICTED_ENVS case.
* simos.c needs a to be updated from the old pci shims. Yell loudly butpeter2002-09-191-0/+7
| | | | stop breaking alpha LINT.
* Completely revamp the way getconf(1) works, for better adherence to thewollman2002-09-1910-189/+457
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | intent of the Standard. - Make getconf able to distinguish between configuration variables which are entirely unknown and those which are merely not defined in the compilation environment. The latter now get a more appropriate "undefined\n" result rather than a diagnostic. This may not be exactly right, but it's closer to the intent of the Standard than the previous behavior. - Support ``programming environments'' by validating that the environment requested with the `-v' flag is the one-and-only execution environment. (If more environments are supported for some platforms in the future, multiple getconf(1) executables will be required, but a simple edit in progenv.gperf will enable automatic support for it.) Document POSIX standard programming environments. - Add all of the 1003.1-2001 configuration variables. FreeBSD does not support all of these (including some that are mandatory); getconf will later be fixed to break the world should a required variable not be defined. As a result of all these changes, gperf is no longer adequate. Keep the overall format and names of the files for now, to preserve revision history. Use an awk script to process the .gperf files into C source, which does a few things that gperf, as a more general tool, cannot do. The keyword recognition function is no longer a perfect hash function. This may obviate the need for gperf in the source tree. - Add a small compile-time regression test to break the build if any of the .gperf files declare conflicting token sets. (gperf itself would have done this for the simple case of duplicate tokens in the same input file.)
* Add Yet Another Duplicate of the font.h and ukbdmap.h rules. Removepeter2002-09-191-4/+9
| | | | | the font8x16.o glue, since that appears to have died ages ago and has no remaining references.
* Add dev/iicbus and dev/smbus to LSUBDIRS listpeter2002-09-191-1/+2
|
* move <machine/iic.h> and <machine/smb.h> to <dev/iicbus/iic.h> andpeter2002-09-192-5/+2
| | | | <dev/smbus/smb.h> - there is nothing MD about these ioctl definitions.
* fix style.. Return in the kernel always has () around the arguments.julian2002-09-191-1/+1
|
* Compiler was correct:julian2002-09-191-1/+1
| | | | m WAS being used uninitialized..
* move wl (isa wavelan card, not "wi") to i386-onlypeter2002-09-192-7/+6
|
* move "profile 2" to i386peter2002-09-192-4/+4
|
* move ncv, nsp, stg to i386-only section (there is no pc98-specific version)peter2002-09-192-9/+14
|
* Move dgb to the i386 sectionpeter2002-09-192-11/+11
|
* Update the KSE test utility to the new KSE API.mini2002-09-193-319/+482
|
* Add some extra directories created by recent versions of XFree86-4kris2002-09-191-0/+10
| | | | | Reviewed by: anholt (XFree86-4 maintainer) MFC after: 1 day
* If M_PKTHDR is set then we don't need to do a loop to find the total length.darrenr2002-09-191-0/+3
|
* Welcome the sem_ API to libc!alfred2002-09-193-1/+709
|
OpenPOWER on IntegriCloud