aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAgeFilesLines
...
* | ccept of empty lines when reading from a file (this fixes a bugLuigi Rizzo2003-07-141-25/+52
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | introduced in the latest commits). Also: * update the 'ipfw -h' output; * allow rules of the form "100 add allow ..." i.e. with the index first. (requested by Paul Richards). This was an undocumented ipfw1 behaviour, and it is left undocumented. and minor code cleanups. Notes: svn path=/head/; revision=117544
* | Take advantage of the common_source/lp.cdefs.h file to change lprGarance A Drosehn2003-07-1412-42/+26
| | | | | | | | | | | | | | | | | | | | | | source to use __FBSDID() for setting rcsids. Also fix the format of 'sccsid' lines to consistently match style(9) guidelines. Reviewed by: discussed with bde and obrien MFC after: 15 days Notes: svn path=/head/; revision=117541
* | Introduce a new lp.cdefs.h file, which will be used to make itGarance A Drosehn2003-07-141-0/+107
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | somewhat easier to build this lpr on other operating systems. This simply includes <sys/cdefs.h> when that is appropriate, and then checks for any cdefs-ish macros that lpr uses, and defines them if they don't already exist. This is only a start at making freebsd's lpr less of a hassle to port. It is mainly added so all of lpr can be changed to use the __FBSDID() macro, without making it *more* of a hassle to build on other OS's. Reviewed by: discussed with bde and obrien MFC after: 15 days Notes: svn path=/head/; revision=117540
* | Change zzz to be a shell script that checks for APM or ACPI support andNate Lawson2003-07-143-3/+101
| | | | | | | | | | | | | | | | | | suspends the system appropriately. Submitted by: Mark Santcroos <marks@ripe.net> Notes: svn path=/head/; revision=117539
* | Document the existance of fla(4).David E. O'Brien2003-07-142-0/+60
| | | | | | | | Notes: svn path=/head/; revision=117538
* | _start() needed to be written in assembly. See crt1.S.Marcel Moolenaar2003-07-141-124/+0
| | | | | | | | Notes: svn path=/head/; revision=117537
* | This commit was generated by cvs2svn to compensate for changes in r117535,Nate Lawson2003-07-141-4/+0
|\ \ | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=117536
| * | Remove a multiply-defined function. The change has been submitted to theNate Lawson2003-07-141-4/+0
| | | | | | | | | | | | | | | | | | | | | vendor. Notes: svn path=/vendor-sys/acpica/dist/; revision=117535
* | | Fix build breakage on ia64. The second argument of AcpiOsReadable()Marcel Moolenaar2003-07-141-2/+2
| | | | | | | | | | | | | | | | | | | | | and AcpiOsWritable() have type ACPI_SIZE and not UINT32. Notes: svn path=/head/; revision=117534
* | | Remove reference to max block size. dump no longer limits the block size.Greg Lehey2003-07-141-13/+1
| | | | | | | | | | | | Notes: svn path=/head/; revision=117533
* | | New release notes: ACPI-CA 20030619.Hiroki Sato2003-07-132-0/+6
| | | | | | | | | | | | Notes: svn path=/head/; revision=117532
* | | Rewite _start(). We cannot use a C function due to the fact that weMarcel Moolenaar2003-07-132-2/+193
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | don't call it according to the runtime specification and especially WRT to gp this can cause trouble. The gcc 3.3.1 import broke the ia64 runtime because the compiler saved gp prior to us being able to set it properly. Restoring gp after the calls would then invalidate gp and cause segmentation faults later on. By rewriting _start() as an assembly function, we also avoided even more gcc dependences, by trying to use gcc specific features to work around the problem. This version of _start() does not reference _DYNAMIC. We register the cleanup function when it's a non-NULL pointer. The kernel will always pass a NULL pointer and dynamic linkers may pass a non-NULL pointer. The machine independent code to set __progname now unfortunately is written in assembly. So be it. Notes: svn path=/head/; revision=117531
* | | Update code to work with 0619 distNate Lawson2003-07-137-36/+92
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * Use ACPI_BUFFER as the type for AcpiGetObjectInfo * Remove AcpiEnableEvent/AcpiClearEvent for ACPI_EVENT_FIXED (power/sleep buttons) as they are no longer needed * Change calls to use the new GPE functions * Add AcpiOs*Lock functions Notes: svn path=/head/; revision=117530
* | | Add include file so this builds with new acpicaNate Lawson2003-07-131-0/+1
| | | | | | | | | | | | | | | | | | | | | Reported by: Kevin Oberman <oberman@es.net> Notes: svn path=/head/; revision=117529
* | | This commit was generated by cvs2svn to compensate for changes in r117527,Nate Lawson2003-07-131-7/+23
|\| | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=117528
| * | Fix handling of _BST in the new dist.Nate Lawson2003-07-131-7/+23
| | | | | | | | | | | | | | | | | | | | | Submitted by: kochi@netbsd.org Notes: svn path=/vendor-sys/acpica/dist/; revision=117527
* | | This commit was generated by cvs2svn to compensate for changes in r117525,Nate Lawson2003-07-131-2/+2
|\| | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=117526
| * | Patch for global lock error messages that the vendor will import eventually.Nate Lawson2003-07-131-2/+2
| | | | | | | | | | | | | | | | | | | | | Originally committed as 1.1.1.17 Notes: svn path=/vendor-sys/acpica/dist/; revision=117525
* | | Commit local patches for files off the vendor branch.Nate Lawson2003-07-133-56/+37
| | | | | | | | | | | | Notes: svn path=/head/; revision=117524
* | | Unmodified files from the vendor 0619 dist that should no longer be off theNate Lawson2003-07-1310-128/+258
| | | | | | | | | | | | | | | | | | | | | vendor branch. Notes: svn path=/head/; revision=117523
* | | This commit was generated by cvs2svn to compensate for changes in r117521,Nate Lawson2003-07-1386-2378/+4300
|\| | | | | | | | | | | | | | | | | | | | which included commits to RCS files with non-trunk default branches. Notes: svn path=/head/; revision=117522
| * | ACPICA import from the 0619 dist.Nate Lawson2003-07-1399-2562/+4595
| | | | | | | | | | | | Notes: svn path=/vendor-sys/acpica/dist/; revision=117521
* | | ioctl macros and defines are now present in ioccom.h, not ioctl.h.Ceri Davies2003-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Update the manpage to reflect this. PR: docs/54235 Submitted by: Karen Thode <thode12@msn.com> Notes: svn path=/head/; revision=117520
* | | Avoid an unnecessary calculation: there is no need to subtractRobert Drehmel2003-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | `firstaddr' from `v' if we know that the former equals zero. Notes: svn path=/head/; revision=117519
* | | Move the MAC entry point to label ethernet-sourced mbufs with a MAC labelRobert Watson2003-07-131-4/+8
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | from the network interface earlier in ether_input(). At some point (no fingers pointed), things were restructured and the labeling operation moved later. This wasn't a problem as BPF_MTAP() relies on the ifnet label not the mbuf label, but there might have been other problems. Obtained from: TrustedBSD Project Sponsored by: DARPA, Network Associates Laboratories Notes: svn path=/head/; revision=117518
* | | If mktime() or timegm() return -1, print out the resume timer value asRobert Watson2003-07-131-3/+6
| | | | | | | | | | | | | | | | | | | | | "unknown", rather than a conversion of -1 to a date/timestamp. Notes: svn path=/head/; revision=117517
* | | o add read-only sysctls to view regulatory domain, country code, andSam Leffler2003-07-132-5/+22
| | | | | | | | | | | | | | | | | | | | | | | | outdoor use controls o use sysctl-visible values in setting up channel list Notes: svn path=/head/; revision=117516
* | | correct card type for Linksys *55AGSam Leffler2003-07-131-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | PR: bin/54190 Submitted by: Josh Elsasser <jre@vineyard.net> Notes: svn path=/head/; revision=117515
* | | Since -march=pentium4 is supposed to be fixed with GCC 3.3, andMaxime Henrion2003-07-131-3/+1
| | | | | | | | | | | | | | | | | | | | | | | | since people have been reporting success with it, re-enable the pentium4 optimization. Notes: svn path=/head/; revision=117514
* | | Fix for FAIL_IF_NO_KBD case as expected.Hidetoshi Shimokawa2003-07-132-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Even if we have no AT keyboard, an AT keyboard is registered because it's probed with KB_CONF_PROBE_ONLY flag set during console initialization. Unregister the keyboard if it doesn't present while second probe. This should fix USB keyboard only case without 'kbdcontrol -k /dev/kbd1'. Notes: svn path=/head/; revision=117513
* | | Eliminate non-existent word.Joseph Koshy2003-07-132-2/+2
| | | | | | | | | | | | | | | | | | | | | Submitted by: jwd Notes: svn path=/head/; revision=117512
* | | Fixed build error with GCC 3.3.1Yoshihiro Takahashi2003-07-131-3/+3
| | | | | | | | | | | | Notes: svn path=/head/; revision=117511
* | | Fixed mouse cursor support.Yoshihiro Takahashi2003-07-131-55/+42
| | | | | | | | | | | | | | | | | | | | | Submitted by: KIYOHARA Takashi <kiyohara@kk.iij4u.or.jp> Notes: svn path=/head/; revision=117510
* | | Add a missing DITEM_CONTINUE flag so the options menu returns to theMurray Stokely2003-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | correct place when you exit it with 'Q'. PR: misc/47906 MFC after: 3 days Notes: svn path=/head/; revision=117509
* | | Sort entries added in r1.43.Murray Stokely2003-07-131-3/+3
| | | | | | | | | | | | Notes: svn path=/head/; revision=117508
* | | From the PR:Kris Kennaway2003-07-131-10/+38
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | I am the maintainer of CTM. There is a problem that when very large deltas are created, that the program ctm_smail, which is responsible for mailing the deltas out, will instead create a single message that says the delta is too large. However, if the -q option is set, instead of placing this message in the queue (as it would have done with the deltas), it mails it out directly. This conflicts with the current working of CTM in that the email address is set as %%REPLACE-ME%% so that the created mailing pieces can be signed by gnu-pgp, and then have the mailing address changed. This fix means that if the -q option is set, and the delta is too large, the "too large" message is placed in the queue. Also, I made the "too large" message a little more up to date. Submitted by: Stephen Montgomery-Smith <stephen@math.missouri.edu> PR: bin/50328 MFC After: 2 weeks Notes: svn path=/head/; revision=117503
* | | FreeBSD does not use this code, but ftpd_popen() contains a buffer overflow.Kris Kennaway2003-07-131-4/+10
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | We might as well patch it. Submitted by: Przemyslaw Frasunek <venglin@freebsd.lublin.pl> PR: bin/23352 MFC After: The average time before an unpatched Windows 2000 server gets owned Notes: svn path=/head/; revision=117501
* | | Remove -D_THREAD_SAFE.Daniel Eischen2003-07-131-1/+1
| | | | | | | | | | | | | | | | | | | | | Submitted by: Craig Rodrigues <rodrigc@crodrigues.org> Notes: svn path=/head/; revision=117500
* | | Enable the high FP registers when we call the FPSWA handler and disableMarcel Moolenaar2003-07-132-66/+37
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | them again afterwards. This fixes a disabled FP fault while in the FPSWA handler. While here, merge the FP fault and FP trap handling code to reduce code duplication. Where code was different, it was not sure it should be. Trigger case: ports/math/atlas Notes: svn path=/head/; revision=117499
* | | Correct some typos.Kris Kennaway2003-07-131-2/+2
| | | | | | | | | | | | | | | | | | | | | | | | | | | Submitted by: pscott@the-frontier.org PR: misc/51909 MFC After: The average lifetime of a Star Trek redshirt Notes: svn path=/head/; revision=117497
* | | Including dynamically generated osreldate.h wasn't such a goodAlexander Kabaev2003-07-132-1/+4
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | idea after all. Fix cross-builds and ia64 builds. gnu/lib/csu/Makefile is modified to pre-include osreldate.h and gnu/usr.bin/cc/cc_tools/auto-host.h will avoid including sys/param.h if __FreeBSD_version is already defined. Notes: svn path=/head/; revision=117496
* | | Not everyone uses the base system sshd. They can use the sshd_programMike Makonnen2003-07-131-2/+6
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | variable in rc.conf to have sshd from ports (or somewhere else) installed. So, don't make the sshd_config for the base system a required file to start the service. PR: conf/45766 Notes: svn path=/head/; revision=117495
* | | Extend the mutex pool implementation to permit the creation and use ofDon Lewis2003-07-138-66/+164
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | multiple mutex pools with different options and sizes. Mutex pools can be created with either the default sleep mutexes or with spin mutexes. A dynamically created mutex pool can now be destroyed if it is no longer needed. Create two pools by default, one that matches the existing pool that uses the MTX_NOWITNESS option that should be used for building higher level locks, and a new pool with witness checking enabled. Modify the users of the existing mutex pool to use the appropriate pool in the new implementation. Reviewed by: jhb Notes: svn path=/head/; revision=117494
* | | Check the status of the user command and return the proper errorPaul Saab2003-07-121-2/+10
| | | | | | | | | | | | | | | | | | | | | to the user. Notes: svn path=/head/; revision=117482
* | | Quiet down ciss unless bootverbose is set.Paul Saab2003-07-121-4/+4
| | | | | | | | | | | | Notes: svn path=/head/; revision=117481
* | | Do not override FP rounding options for 32bit platforms. amd64 doesn'tAlexander Kabaev2003-07-121-4/+6
| | | | | | | | | | | | | | | | | | | | | need this. Notes: svn path=/head/; revision=117479
* | | Add support for the A4 Tech RFSW-35 mouse wheel. Probe is similar toMike Heffner2003-07-124-6/+22
| | | | | | | | | | | | | | | | | | | | | | | | | | | 4D Plus. PR: 44333 Notes: svn path=/head/; revision=117478
* | | The second argument to fgetln() is a size_t *, not an int *.Thomas Moestl2003-07-121-1/+1
| | | | | | | | | | | | Notes: svn path=/head/; revision=117477
* | | Postfix, pcre, and Exim should be on the first CD in order for the recentTom Rhodes2003-07-121-0/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | sysinstall(8) commit to function properly. Discussed with: bmah (while the sysinstall(8) patch was sent to re). Notes: svn path=/head/; revision=117476
* | | Give users the ability to select an alternative MTA during the installation.Tom Rhodes2003-07-128-66/+504
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This option adds Postfix and Exim to the list, however, qmail is not added due to license restrictions. Collaborated with: Simon L. Nielsen <simon@nitro.dk> Reviewed by: jhb, re@, -audit. Notes: svn path=/head/; revision=117475