summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* LIBDIR/INCLUDEDIR do not include DESTDIR.nectar2003-02-181-2/+2
| | | | Reported by: Andrzej Tobola <san@iem.pw.edu.pl>
* Follow-up to previous commit: we had a des.h symlink, too. Removenectar2003-02-181-0/+1
| | | | that.
* Correctly alphabetize options[] so we don't stop at -nouser when searchingdes2003-02-181-1/+1
| | | | | | | | for -not. PR: bin/48423 Submitted by: Matsumura Naoki <matsu@jp.FreeBSD.org> MFC after: 3 days
* Previously, libcrypto contained symbols that were identical to EAYnectar2003-02-181-0/+7
| | | | | | | | | libdes, and functionally close enough so that we created symlinks (libdes -> libcrypto) to help older applications. With the import of OpenSSL 0.9.7, this is no longer true and we no longer install these symlinks. However, systems that are upgraded may have these symlinks, which could cause non-obvious breakage at build-time. Therefore, blow any old symlinks away in the `afterinstall' target.
* Whack 28 unused variables.nectar2003-02-188-19/+9
|
* Properly terminate some warning messages.des2003-02-182-6/+6
|
* Remove these from libc; they are now system calls.deischen2003-02-182-532/+0
| | | | Prompted by: mini
* Yet another kernel diet: remove aacp and _KPOSIX_PRIORITY_SCHEDULING.matusita2003-02-182-0/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | aacp is a passthrough driver for aac, but it seems that aac kernel module has a feature provided by aacp; so it can be removed safely. _KPOSIX_PRIORITY_SCHEDULING provides P1003.1B realtime extension. However, in an installation phase, it seems that it helps a little for us, so we can remove this option from a kernel for floppy installation. I know _KPOSIX_PRIORITY_SCHEDULING option is defined in other architecture. However, I don't touch them at this time; I can't test it. Anyway here's result. Before diet: -rwxr-xr-x 1 matusita matusita 4849883 Feb 18 11:22 kernel -rwxr-xr-x 1 matusita matusita 1727143 Feb 18 11:47 kernel.kgz After diet: -rwxr-xr-x 1 matusita matusita 4840949 Feb 18 09:48 kernel -rwxr-xr-x 1 matusita matusita 1723911 Feb 18 11:47 kernel.kgz We've got extra 3232 bytes (using 5-current as of Feb/18/2003). In cooperation with: jwd (test ISO installation image) Boot tested on: several PCs around myself Installation tested on: VMware Workstation e.x.p build-4099
* Fix fwdev memory leak on detaching.simokawa2003-02-181-5/+13
|
* Explicitly set TZ to GMT (including in the build environment)des2003-02-181-0/+3
|
* Use pci_get_devid().simokawa2003-02-182-24/+24
|
* Add 'uPD72871/2 IEEE1394 1-Chip OHCI Host Controller'.simokawa2003-02-182-0/+5
|
* * firewire.csimokawa2003-02-182-1/+19
| | | | | | | | | - Fix memory leak in detaching. - Initialize fc->status to other than FWBUSREST. * fwohci.c - Ignore BUS reset events while BUS reset phase. We can't clear that flag during bus reset phase.
* Add central and fhc.jake2003-02-181-0/+2
|
* Add drivers for the central and fhc busses found in enterprise classjake2003-02-189-0/+1087
| | | | | | | | | | | | UltraSPARCs, and an eeprom attachment for fhc, which allows the date to be set properly on these machines. Central is a wierd bus which seems to only ever have 1 fhc attached to it. FHC (FireHose Controller) is another wierd bus with various things on it depending where its attached. The fhc attached to central has eeprom and zs, and the fhcs which attach directly to nexus have simm-status, environment and other nodes, none of which I'll probably ever have documentation for. Thanks to Ade Lovett for providing access to an 8 cpu e4500.
* remove stray debugging printfsam2003-02-181-1/+0
| | | | Noted by: Kasper Steensgaard <steensgaard@person.dk>
* M_MOVE_PKTHDR must happen before any cluster is attachedsam2003-02-181-2/+3
| | | | | Submitted by: Harti Brandt <brandt@fokus.fraunhofer.de> MFC after: 1 day
* Fix stupid whitespace typo.bmah2003-02-182-2/+2
|
* Initiate de-orbit burn for USE_PCI_BIOS_FOR_READ_WRITE. This has beenpeter2003-02-188-427/+87
| | | | | | | | | | | | | | #if'ed out for a while. Complete the deed and tidy up some other bits. We need to be able to call this stuff from outer edges of interrupt handlers for devices that have the ISR bits in pci config space. Making the bios code mpsafe was just too hairy. We had also stubbed it out some time ago due to there simply being too much brokenness in too many systems. This adds a leaf lock so that it is safe to use pci_read_config() and pci_write_config() from interrupt handlers. We still will use pcibios to do interrupt routing if there is no acpi.. [yes, I tested this] Briefly glanced at by: imp
* Remove contractions.trhodes2003-02-181-3/+3
| | | | Use `Force' in place of `Cause' which sounds better.
* Include class designation in pnpinfo for generic driver loadingimp2003-02-181-2/+3
|
* New release notes: Linux IPv6 support, cm support for IPX (+MFC),bmah2003-02-182-2/+74
| | | | | | | | FAST_IPSEC and INET6 can coexist (sort of), wfd/wst removal, compat4x adds libcrypto/libgmp/libssl libraries, config(8) nodevice, mount_nfs(8) -c (+MFC), ping(8) -M. Modified release notes: Explicitly name wlan module.
* Revert ALIGN change for the second and last time. I can't figure outtjr2003-02-183-6/+56
| | | | why this is breaking sparc64.
* Use arc4random() instead of random() when generating the master key.kris2003-02-181-2/+3
| | | | MFC after: 1 week
* Nuke xargs, I haven't had to help anyone with it, so I assume it stands onjmallett2003-02-181-4/+1
| | | | | | | its own just fine. Nuke request for heads-up on libufs, most of my work on it these days is gradual, and mention that I'm willing to help with work in it, so that others can feel free to make it suck less, and get feedback from me in a purely "I understand this crud" sort of way.
* Sanity check the BAR length reported by the CIS with the BAR length thatscottl2003-02-171-4/+22
| | | | | | | | is encoded in the PCI BAR. The latter is more reliable. This allows the sio/modem function of the Xircom RealPort ethernet+modem card to work. Note that there still seem to be issues with sio_pci not releasing resources on detach.
* Back out revision 1.34 until we can come up with a more accurate patch.chris2003-02-171-65/+0
|
* Add a section on Giant lock manipulation macros.chris2003-02-171-0/+65
| | | | | Submitted by: Hiten M. Pandya <hiten@angelica.unixdaemons.com> Reviewed by: bmilekic
* Xref miibus(4).trhodes2003-02-172-0/+2
|
* Move the pnp and location info into the common pci bus. Make all knownimp2003-02-174-46/+41
| | | | | | | | | pci busses implement this. Also minor comment smithing in cardbus. Fix copyright to this year with my name on it since I've been doing a lot to this file. Reviewed by: jhb
* Do not remove object from the lists at the unref_dag() stage.kan2003-02-171-8/+26
| | | | | | | Introduce a new unlink_object() function and call it in unload_object() instead. Removing the object in unref_dag() is too early, rtld calls _fini() function after that and shared objects might fail resolve their own symbols.
* o Add a note explaining the meaning of mls/equal beyond "equal to allchris2003-02-171-2/+30
| | | | | | | | | | | labels" o Remove the ++ compartment range notation example as this has not yet been merged into CVS. o Include a "Runtime Configuration" section listing all of the relevant sysctl knobs for this policy. Sponsored by: DARPA, Network Associates Laboratories Obtained from: TrustedBSD Project
* - Document some of the sysctl parameters. The read-only ones will go intochris2003-02-171-42/+64
| | | | | | | | | | | another subsection, but I'm not quite sure where yet. Right now it's just the configurable bits. - Move the label format off into another subsection to match other labeling policy man pages. - Make the sample range label look like the form specified. Sponsored by: DARPA, Network Associates Laboratories Obtained from: TrustedBSD Project
* an driver now needs wlan, so put the required explicit dependsimp2003-02-173-0/+3
| | | | | | into the source. Reviewed by: ambrisko
* - build powerpc world on 9balldes2003-02-171-52/+117
| | | | | - log directly into two files: a full log and a summary - set timezone to GMT before starting
* Kill a now-bogus commentimp2003-02-171-4/+0
|
* These don't need to be semi-public after all.imp2003-02-172-5/+5
|
* Bump pnpinfo and location size to 128 bytes. Since these are computedimp2003-02-171-2/+2
| | | | | | | on the fly and read into userland one at a time, this costs very little total memory. The pnpinfo sizes of pccard is more than 64 bytes due to the length of the strings that man cards have in their CIS.
* -v now also prints the pnpinfo and location information for the devicesimp2003-02-171-1/+6
| | | | whose bus' provide this information.
* Expand length of pnpinfo and length fields since pccard pnpinfo canimp2003-02-171-2/+2
| | | | easily be longer than 64 characters.
* Add a bunch of cards that we've added IDs for in the past few months:imp2003-02-171-2/+7
| | | | | | | | | +Allied Telesis WR211PCM Prism? PCMCIA +ArTem OnAir Prism? PCMCIA +Bay eMobility 11B Prism-2.5? PCMCIA +Blue Concentric Circle WL-379F Prism-II CF +Linksys WCF11 Prism-3 PCMCIA +YIS TWL-11B Prism-II PCMCIA
* Add libgmp.so.3 from 4.7-RELEASE CDs.obrien2003-02-172-0/+1552
| | | | Requested by: des
* Further fix PS_NEEDSIGCHKdavidxu2003-02-172-0/+4
|
* Move code for detecting PS_NEEDSIGCHK into thread_schedule_upcall,davidxu2003-02-173-2/+4
| | | | I think it is a better place to handle it.
* * firewire.csimokawa2003-02-172-48/+19
| | | | | | | | | | | | | - Don't initiate bus reset even if probe failed for some nodes to prevent infinite bus reset loop. Problem Reported by: Pierre Beyssac <pb@fasterix.frmug.org> - Protect timeout routine with splfw() for 4-stable. * sbp.c - Make sure to release devq when start request.
* Add libgmp.so.3 from 4.7-RELEASE CDs.nectar2003-02-172-0/+2
| | | | Requested by: des
* o Restore an interrupt priority level before return.maxim2003-02-171-0/+2
| | | | | | Submitted by: Roman Kurakin <rik@cronyx.ru> Reviewed by: joerg MFC after: 5 days
* o Fix ipfw uid rules: socheckuid() returns 0 when uid matches a socketmaxim2003-02-171-2/+2
| | | | | | | | | | | | cr_uid. Note: we do not have socheckuid() in RELENG_4, ip_fw2.c uses its own macro for a similar purpose that is why ipfw2 in RELENG_4 processes uid rules correctly. I will MFC the diff for code consistency. Reported by: Oleg Baranov <ol@csa.ru> Reviewed by: luigi MFC after: 1 month
* Fix missed patch in last commitjulian2003-02-172-10/+6
|
* Deliver signals posted via an upcall to the appropriate thread.mini2003-02-1712-1050/+548
|
OpenPOWER on IntegriCloud