summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* `unexpand -a' should be run _before_ sed 's/^#define /#define^I/g'.obrien2002-05-1414-1088/+1088
|
* Tighten up the defined()'s.obrien2002-05-147-31/+31
|
* - Make use of DEPOROGINs (if there are any) when installing package;sobomax2002-05-147-137/+267
| | | | | | | - fix few bogosities here and there; - move some common routines into the library. MFC after: 2 weeks
* After some comments from bde, rewrite the loops to avoid turning thejoerg2002-05-142-86/+58
| | | | | | | | | | | | | | | | | previously used "micro-optimization" (count-down loop) into a pessimization. Now the loops are written in the more natural count-up form. Also, while being there, i made the logic in out_fdc() similar to the logic in in_fdc(). The old implementation was a bit bogus anyway since it first tested the DIO bit and only afterwards the RQM bit. However, according to the description of the i82077, the DIO bit is only guaranteed to be valid once the RQM bit is set. Thus, the old implementatoin would have had the chance to misbehave on a controller that is implemented in accordance with the i82077 description (but is not bug-for-bug compatible). MFC after: 3 days
* Trivial language fixes.dannyboy2002-05-141-3/+3
| | | | | PR: 38015 Submitted by: Chris Pepper <pepper@mail.rockefeller.edu>
* Move MI stuff out of MD param.h files.phk2002-05-147-268/+68
| | | | It can all still be overridden in the MD files should need suddenly arise.
* Remove the unused definitions of ctod() and dotc().phk2002-05-144-16/+0
|
* Build using pregenerated manpages; don't use perl to translate .pod's.markm2002-05-142-12/+2
| | | | The translated .pod's have already been committed.
* Modify the arguments to syncache_socket() to include the mbuf (m) thatrwatson2002-05-141-4/+6
| | | | | | | | | | | | results in the syncache entry being turned into a socket. While it's not used in the main tree, this is required in the MAC tree so that labels can be propagated from the mbuf to the socket. This is also useful if you're doing things like transparent IP connection hijacking and you want to use the syncache/cookie mechanism, but we won't go there. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* Remove a printf(3) argument with no corresponding format specifier.des2002-05-141-1/+1
|
* Make our version tag unique due to our local changes.mp2002-05-142-2/+4
| | | | | | PR: 19733 Submitted by: sheldonh MFC after: 3 days
* Updated release notes: BIND 8.3.2-T1B, gcc-3.1.0 (and a bigbmah2002-05-142-10/+20
| | | | | | <warning>). Markup change: Use manpage entity for devinfo(8).
* Fix an include for NetBSDbrian2002-05-141-0/+3
|
* Following a repo-copy from src/sys/ufs/ufs, rename functions andiedowse2002-05-147-305/+216
| | | | | | | | | | structures etc. to ext2fs-specific names, and remove ufs-specific code that is no longer required. As a first stage, the code will still convert back and forth between the on-disk format and struct inode, so the struct dinode fields have been added to struct inode for now. Note that these files are not yet connected to the build.
* This commit was generated by cvs2svn to compensate for changes in r96593,markm2002-05-14223-0/+52244
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * As the perl-generated assembler files have been committed, add themarkm2002-05-14223-0/+52244
| | | | | | | | | | perl-generated (.pod) manual pages too. This is another nail in the perl5 coffin (for base perl, not the port or the language in general).
* | Make this -j safe.ru2002-05-142-0/+2
| |
* | Strategic diff reduction against TrustedBSD MAC branch: introduce anrwatson2002-05-141-0/+1
| | | | | | | | | | | | | | | | | | additional system boot ordering entry, SI_SUB_MAC_LATE, which occurs after all MAC policies have been initialized, permitting the MAC subsystem to take action once all "early loaded" modules are in place. Obtained from: TrustedBSD Project Sponsored by: DARPA, NAI Labs
* | Regen:sheldonh2002-05-141-17/+47
| | | | | | | | | | * Hart: rev 298 of pcidevs.txt (2002-05-10) * Boemler: vendors.txt (2002-05-07)
* | Grammar fix: cause -> causes.keramida2002-05-141-1/+1
| | | | | | | | | | PR: docs/38059 Submitted by: Chris Pepper <pepper@rockefeller.edu>
* | Split release.2 into two stages. release.2 now install the baseru2002-05-142-32/+43
| | | | | | | | | | dist, while release.3 makes and installs crypto, krb4, and krb5 dists. This makes release.3 restartable (with "make rerelease").
* | Make sure the first ${CHROOTDIR} installworld is done for the correctru2002-05-141-2/+3
| | | | | | | | | | | | | | arch. This makes "make release TARGET_ARCH=foo" really work. (I only tested with "make rerelease" before to save some time and did not notice the problem.)
* | GC now redundant BOOTSTRAPUTILS stuff.ru2002-05-141-20/+1
| |
* | Avoid a rather bizarre warning from gcc 3.1:brian2002-05-141-1/+1
| | | | | | | | /usr/src/usr.sbin/ppp/cbcp.c:566:61: warning: trigraph ??! ignored
* | Even more BBSIZE related breakage.ru2002-05-141-0/+1
| |
* | o Clean up some #includesbrian2002-05-1442-133/+163
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | o Bump version number to 3.0.4 o When talking to a RADIUS server, provide a NAS-Port-Type. When the NAS-Port-Type is Ethernet, provide a NAS-Port value equal to the SESSIONID from the environment in direct mode or the NGM_PPPOE_SESSIONID message in other modes. If no SESSIONID is found, default to the interface index in client mode or zero in server mode. When the NAS-Port-Type is ISDN, set the NAS-Port to the minor number of the physical device (ie, the N in /dev/i4brbchN). This makes it easier for the RADIUS server to identify the client WRT accounting data etc. Prompted by: lsz8425 <lsz8425@mail.cd.hn.cn>
* | Fixed to build for GCC 3.1nyan2002-05-146-17/+16
| |
* | Understand the new NGM_PPPOE_SESSIONID message and set SESSIONIDbrian2002-05-141-2/+9
| | | | | | | | | | | | in the environment to it's value. Approved by: archie (after a very cursory glance)
* | Add -ffreestanding to CFLAGS.nyan2002-05-141-1/+1
| |
* | Add a NGM_PPPOE_SESSIONID message to the ng_pppoe node.brian2002-05-142-1/+21
| | | | | | | | | | | | | | This message is sent to the control socket when the SessionID is established. Approved by: archie (after a very cursory glance)
* | MFi386: revision 1.519nyan2002-05-142-2/+2
| |
* | Merged from sys/isa/fd.c revisions from 1.229 to 1.232.nyan2002-05-142-36/+130
| |
* | Merged from sys/dev/syscons/syscons.c revision 1.384nyan2002-05-141-1/+2
| |
* | I somehow managed to forgot to commit this in my INCS sweep.ru2002-05-141-4/+0
| | | | | | | | We don't need the `beforeinstall' here, INCS handles this.
* | New cpp(1) doesn't like -I${DESTDIR}/usr/include.ru2002-05-141-1/+1
| |
* | Make daddr_t and u_daddr_t 64bits wide.phk2002-05-1414-31/+30
| | | | | | | | | | | | Retire daddr64_t and use daddr_t instead. Sponsored by: DARPA & NAI Labs.
* | Match prototypes to functions over in fsck_ffs.phk2002-05-141-3/+3
| |
* | Restore comment that got lost in revision 1.265.ru2002-05-141-0/+4
| |
* | Roll the LOG2 macro up again, I don't belive unrolling this for 64bitsphk2002-05-141-31/+13
| | | | | | | | | | | | make sense. Sponsored by: DARPA & NAI Labs.
* | Check that kldxref(8) exists before running it.ru2002-05-143-10/+9
| |
* | Do not run `includes' and `incsinstall' in parallel.ru2002-05-141-1/+1
| | | | | | | | | | | | Spotted by: jhay Parallel worlds and releases should be working again.
* | Make the mtio data structures explicitly sized.phk2002-05-141-13/+13
| | | | | | | | | | | | A couple of the fields should probably be 64bits in the future. Sponsored by: DARPA & NAI Labs.
* | Document Q_GETQUOTA returning EINVAL when quotas are not enabledroam2002-05-141-0/+4
| | | | | | | | | | | | | | | | | | on the filesystem. PR: doc/37839 Submitted by: "Michael R. Wayne" <wayne@staff.msen.com> Approved by: silence on -doc MFC after: 3 days
* | Use explicitly sized fields for the tape format definition.phk2002-05-141-1/+1
| | | | | | | | Sponsored by: DARPA & NAI Labs.
* | Move a few ancient minor-number definitions for tapedrives to thephk2002-05-143-20/+8
| | | | | | | | only driver which uses them. Remove the rest.
* | Sync with reality.ume2002-05-141-4/+4
| | | | | | | | | | | | | | IPV6CTL_MAPPED_ADDR was obsoleted by IPV6CTL_V6ONLY. MFC after: 2 days and approved by re
* | string cleanup:ken2002-05-141-14/+12
| | | | | | | | | | | | | | | | | | | | | | - fix a potential overrun made worse by rev 1.5 of camlib.h - change strncpy() and strcpy() calls to strlcpy() - use sizeof(string[]) instead of STRING_LEN to avoid future problems - get rid of an unused variable Thanks to BDE for pointing out some of the problems. MFC after: 2 weeks
* | Merge c-common.c rev 1.10 into GCC 3.1obrien2002-05-141-1/+3
| | | | | | | | | | | | | | Clarify that the "yields only last 2 digits of year in some locales" warning does not apply to BSD. Submitted by: ache
* | If you want to not warn on K&R main(); this is how it should be implemented.obrien2002-05-142-1/+17
| |
* | Tweak the include dirs w/o incurring extra warningsobrien2002-05-141-1/+1
| |
OpenPOWER on IntegriCloud