summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
...
* | * Support the Sparc64.obrien2002-03-112-14/+10
| | | | | | | | | | * Do not default to any particular platform. Require that we explicitly support a particular platform.
* | Make the diagnostics printfs less ugly.dd2002-03-111-4/+6
| |
* | Fix some bugs that would prevent %fsr to be set correctly, and addtmm2002-03-114-8/+25
| | | | | | | | | | | | | | | | | | support for fcmp and fcmpe instructions with a condition code specification other than %fcc0. This (primarily the first part) seems to fix a lot of problems that people were seeing, e.g. perl and gawk failures. Reported and analyzed by: wollman
* | Account for <machine/fsr.h> no longer being usable for assembler code.tmm2002-03-112-2/+6
| |
* | Fix __dtoul to work on sparc64 (it used a half-way v8 stack layout),tmm2002-03-111-13/+13
| | | | | | | | and make it PIC-aware.
* | Add support for Simplified Direct Access Device in scsi_op_desc().simokawa2002-03-111-0/+4
| |
* | Fix the type of some constants, and make some macros safer by castingtmm2002-03-111-18/+18
| | | | | | | | the argument.
* | Add convenience macros to extract the cc0 and cc1 from format 2 and 3tmm2002-03-111-0/+6
| | | | | | | | instructions.
* | Save/restore the %y register around calls to the C user trap handler;tmm2002-03-111-0/+4
| | | | | | | | | | | | gcc emits the deprecated sparc v8 instructions that use this register when optimizing for UltraSparc machines because they are apparetly faster then their v9 counterpars there.
* | Wrong spelling of PIC.obrien2002-03-111-1/+1
| | | | | | | | Submitted by: jake
* | Don't depend on ucred.h to include sys/queue.h for us.dd2002-03-111-0/+1
| |
* | Use the pci_enable_* functions instead of manually fiddling with thetmm2002-03-112-12/+8
| | | | | | | | | | | | command register. Pointed out by: msmith
* | Belatedly add a release note about destaticizing and modulizing ofdd2002-03-112-2/+8
| | | | | | | | snp(4), and note MFC of watch(8) -f.
* | Chase sysctl name.dd2002-03-112-2/+2
| | | | | | | | Submitted by: Christopher Sharp <christopher_sharp@web.de>
* | Sync with csu/alpha/Makefile: build crt{i,n}.o.obrien2002-03-101-3/+2
| | | | | | | | Leave crtbegin* to the compiler vendor.
* | Don't assign strcmp to a variable called err and then compare itdwmalone2002-03-101-20/+12
| | | | | | | | | | | | | | | | with zero, just compare strcmp with zero. This fixes the same bug which Maxim just fixed and fixes some odd style too. PR: 35712 Reviewed by: arr
* | Remove a mention of the worm(4) device that was missed when it wascjc2002-03-101-1/+0
| | | | | | | | | | | | | | removed from MAKEDEV in 1.171. PR: misc/35729 MFC after: 1 day
* | CG superfluous prototype.sobomax2002-03-101-1/+0
| |
* | - Remove a number of extra newlines that do not belong here according toeivind2002-03-1024-427/+102
| | | | | | | | | | | | | | | | | | style(9) - Minor space adjustment in cases where we have "( ", " )", if(), return(), while(), for(), etc. - Add /* SYMBOL */ after a few #endifs. Reviewed by: alc
* | Don't build xlint until surgery is finished.markm2002-03-101-1/+0
| |
* | CURRENT has devfs, so we do not need to specify what devices weluigi2002-03-105-20/+5
| | | | | | | | want on the MFS image. Update the config files accordingly.
* | Uncomment the entry for a getty on the serial port. Boxes withluigi2002-03-101-1/+1
| | | | | | | | a serial console can make use of it.
* | Add back the "sis" driver, we had some room left...luigi2002-03-101-0/+1
| |
* | Silence a warning when compile without atapi devices.sos2002-03-101-3/+4
| |
* | With devfs, we do not need to initialize pty's permissions.luigi2002-03-101-1/+0
| |
* | The probable boot device is "machdep.guessed_bootdev".luigi2002-03-101-2/+2
| |
* | Add an implementation of cpu_throw() and make restorectx() simply branchdfr2002-03-102-77/+23
| | | | | | | | to the tail of cpu_switch.
* | Don't try to print the arguments if the value of bsp is outside thedfr2002-03-101-7/+9
| | | | | | | | kernel - its asking for trouble.
* | Export a (machine dependent) kernel variable bootdev asluigi2002-03-105-4/+59
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | machdep.guessed_bootdev, and add code to sysctl to parse its value and give a (not necessarily correct) name to the device we booted from (the main motivation for this code is to use the info in the PicoBSD boot scripts, and the impact on the kernel is minimal). NOTE: the information available in bootdev is not always reliable, so you should not trust it too much. The parsing code is the same as in boot2.c, and cannot cover all cases -- as it is, it seems to work fine with floppies and IDE disks recognised by the BIOS. It _should_ work as well with SCSI disks recognised by the BIOS. Booting from a CDROM in floppy emulation will return /dev/fd0 (because this is what the BIOS tells us). Booting off the network (e.g. with etherboot) leaves bootdev unset so the value will be printed as "invalid (0xffffffff)". Finally, this feature might go away at some point, hopefully when we have a more reliable way to get the same information. MFC-after: 5 days
* | Fix a breakage introduced in rev.1.75 (supposedly style cleanup), which resultssobomax2002-03-101-6/+6
| | | | | | | | | | | | in "missing dependencies" error when loading some kld modules. It is sad to see how often these days style cleanus break doesn't broken things. Perhaps people should recall good old principle: "don't fix it if it isn't broken".
* | Added upcoming FreeBSD 4.6wosch2002-03-101-0/+3
| |
* | FreeBSD 4.5 is releaseed "29 Jan 2002" (not 20 Jan)wosch2002-03-101-1/+1
| | | | | | | | | | PR: misc/35738 Submitted by: WAKABAYASHI Susumu <susumu@wakabaya.net>
* | Allow '.' in identifiers - some ia64 register names contain '.'.dfr2002-03-101-1/+1
| |
* | Use the right value for the region length in parse_spill_mask.dfr2002-03-101-4/+4
| |
* | Do not call a synthesizer with a sequencer lock held.tanimura2002-03-101-2/+12
| |
* | Filesystem translationgioria2002-03-101-1/+119
| |
* | /var/log/security gets almost no (if not no) activity on many FreeBSDrwatson2002-03-101-1/+1
| | | | | | | | | | | | | | | | | | systems due to sshd not using the security log class. Tweak syslog.conf so that /var/log/security also gets a useful set of authentication-related logging. Submitted by: aeonflux@synapse.subneural.net MFC after: 4 weeks
* | Setlocale returns static buffer, don't assume it will be unchangedache2002-03-101-4/+8
| | | | | | | | Pointed by: phantom
* | "Base system/contributed software " section translationgioria2002-03-101-3/+101
| |
* | Adding Multimedia section translationgioria2002-03-101-1/+42
| |
* | Check the <channel> arg a bit more.sos2002-03-102-5/+12
| | | | | | | | Submitted by: David Malone <dwmalone@maths.tcd.ie>
* | PCCARD support translationgioria2002-03-101-2/+36
| |
* | Adding Disk and storage translationgioria2002-03-101-0/+134
| |
* | Add SONY VAIO psm controller ISA-PnP ID.takawata2002-03-102-0/+2
| |
* | cosmetic: spell 'cashe' as 'cache'billf2002-03-103-3/+3
| |
* | Make the proposed name arg to dev_stdclone() const.phk2002-03-103-3/+3
| |
* | Document `sysctl variable=/dev/foo' syntax.dd2002-03-101-2/+24
| | | | | | | | | | PR: 34184 Submitted by: Thomas Quinot <thomas@cuivre.fr.eu.org>
* | Link scbus(4) to scsi(4). Most of the other CAM devices have theirdd2002-03-101-0/+1
| | | | | | | | | | | | | | | | own manual pages, but this is better than nothing until someone writes a real scbus(4). PR: 35641 Submitted by: Gary W. Swearingen <swear@blarg.net>
* | Don't refer the reader to look for a word that doesn't exist anywheredd2002-03-101-1/+3
| | | | | | | | | | | | | | else in the page. PR: 35623 Submitted by: Gary W. Swearingen <swear@blarg.net>
* | The chapter on kernel debugging is now in the Developers' Handbook.dd2002-03-101-2/+2
| | | | | | | | | | | | | | Add a trailing slash to a URL while I'm here. PR: 35637 Submitted by: Gary W. Swearingen <swear@blarg.net>, setantae@submonkey.net
OpenPOWER on IntegriCloud