summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2002-08-21Correctly map the video memory, for proper operation.Miod Vallat
2002-08-21raise listen backlog; ok markus@Kevin Steves
2002-08-21change LoginGraceTime default to 1 minute; ok mouring@ markus@Kevin Steves
2002-08-21Get the boot device correctly if scsi id != 0 on 1[67]x boards.Miod Vallat
2002-08-21Attach one screen resource, by default, to every wsdisplay device,Miod Vallat
instead of zero, if the kernel configuration file does not override this setting. This enables X11 to work on multihead sparc{,64} configurations without the need for an explicit wsconscfg invocation first. If a non-default emulation is requested, the user can still delete this automatic resources and recreate it with wsconscfg. ok mickey@ jason@
2002-08-21suppress dump output on -q. sync w/kameJun-ichiro itojun Hagino
2002-08-21Working strip -x support.Marc Espie
Since we keep relocations, we need to ensure that: 1/ symbols used by relocations are actually kept, 2/ refs to ext symbols in relocations are correctly renumbered after killing some symbols. okay art@ (can't break things further than they were broken anyways). Thanks to Laurent Bercot (ska@quatramaran.ens.fr) for pointing out that strip -x was broken.
2002-08-21Postpone ftruncate after unmap. Works around a bug in non-ubc memoryMarc Espie
handling. Also, avoids dumping core on badly formed object. ok millert@, miod@, art@
2002-08-21Split out MD makefile parts into separate files and doArtur Grabowski
some other cleanup in the Makefile. drahn@ ok.
2002-08-21Fix Makefile for correct regress operation.Miod Vallat
2002-08-21oopsieMarc Espie
2002-08-21+mmap3Marc Espie
2002-08-21Regression test for non-ubc mmap/ftruncate interaction.Marc Espie
Noticed on strip, test prompted by art@. (turns out `normal' strip isn't affected because normal binaries are page-padded).
2002-08-21`RSA' updated to refer to `public key', where it matters.Marc Espie
okay markus@
2002-08-20print as unsigned for unsigned values, when printing out a map in ddb; art@ okMichael Shalayeff
2002-08-20set use_deprecated back to 1. sync w/kameJun-ichiro itojun Hagino
2002-08-20clean some more signal races, some cannot be fixedTheo de Raadt
2002-08-20more comment on bind(deprecated) handlingJun-ichiro itojun Hagino
2002-08-20ultra60 supportJason Wright
2002-08-20U60 works now.Miod Vallat
2002-08-20Two fixes from NetBSD (this allows my u60 to boot multiuser):Jason Wright
- Use paddr_t for avail_start and avail_end so we can handle machines with RAM above the 2GB mark. - Do not truncate the kernel pmap physical address to an `int' before sticking it in the context lookup table. Fixes a booting issue on Netra T1125s.
2002-08-20Fix error stringJason Wright
2002-08-20-n: disallow anon ftp even if ftp account existsTheo de Raadt
2002-08-20syncNathan Binkert
2002-08-20New intel gigE devices from Henric Jungheim <henric@henric.info>Nathan Binkert
2002-08-20wscons on sparc sets updatesMiod Vallat
2002-08-20Because of reversed use of the annul bit and delay slots copyin andArtur Grabowski
copyout could underflow by one byte and write a \0 where is doesn't belong. Don't try to micro-optimize the failure case of copyin and copyout. It's not worth the bugs. miod@ ok
2002-08-20Prevent possible races by moving .X11 fixups to before the systemHugh Graham
goes multiuser. In consultation with dynamo; cleared by millert.
2002-08-20Increase lineno on newlines inside multi-line macro definitions, otherwiseDaniel Hartmeier
errors on subsequent lines are reported with wrong line numbers. From Paul B. Henson.
2002-08-20Add a pseudo openfirmware console device for early debugging purposesDale Rahn
and to allow UKC to work properly. ok miod@
2002-08-19correct copyout logic. better fix to be made in kame treeJun-ichiro itojun Hagino
2002-08-19Suggest better types in examples; from NetBSDMiod Vallat
2002-08-19TypoIan Darwin
2002-08-19KNF (4 char continuations)Jason Wright
2002-08-19Take advantage of rasops.updatecursor to keep the prom cursor up to dateJason Wright
2002-08-19From NetBSD:Jason Wright
-Fix some corner cases in bus_dmamap_load_mbuf(). From Takeshi Nakayama <tn@catvmics.ne.jp> -Fix off-by-one error in iommu_dvmamap_load_raw() where if a DMA segment has just one byte on a page the page is never mapped into the IOMMU.
2002-08-19copyout only if oldp is non-nullJun-ichiro itojun Hagino
2002-08-19need explicit copyout().Jun-ichiro itojun Hagino
2002-08-19snprintf audit. debug inet_neta() on non-continuous masks (like 0.255.0.255),Jun-ichiro itojun Hagino
more pickier string manipulation. deraadt ok
2002-08-19committed by mistake - i'm still working on theseJun-ichiro itojun Hagino
2002-08-19be consistent with other KAME source, use "ip6" for ip6_hdr, not "ipv6".Jun-ichiro itojun Hagino
2002-08-19merge in IPv6 deprecated address handling from KAME.Jun-ichiro itojun Hagino
2002-08-18Fix various mount point problems:Kenneth R Westerback
1) Fix 'already mounted' checking so a mount point name can be the same as the leading substring of a previously specified mount point. Now you can specify /usr after /usr/obj, and since the mount points are sorted before writing to fstab, it should work. This also fixes the error message generated when a requested mount point matches the leading substring of multiple mount points. e.g. trying to mount '/' again. 2) Fix fstab sorting so that it works across all initialized disks, not just on a disk by disk basis. 3) For additional paranoia during multiple disk installs, unset _partitions, _psizes, and _mount_points before processing a disk. Eliminate individual blanking of _mount_points entries. 4) Shorten/simplify logic by storing ${DISK} in _partitions entries rather than always adding it back in when referencing _partitions. 5) Rework verbiage a bit, eliminating the duplicate display of configured devices before making new filesystems. Some code clean up, eliminating '{}'s, better loops, ifs, etc. Appox. 67 bytes net bloat.
2002-08-17ordered list hereKevin Steves
2002-08-17ForwardAgent has defaulted to no for over 2 years; be more clear here.Kevin Steves
2002-08-17Add exec_selfArtur Grabowski
2002-08-17Test for a nasty complication in the exec code.Artur Grabowski
What happens is that if an executable tries to exec itself (happens all the time on the ramdisk, among others) and needs to page in a page from the data segment (or rodata) it will need to perform a pagein operation on the vnode that's execing right now. exec keeps that vnode locked and fails (no deadlock, that part was fixed a long time ago).
2002-08-17set default value for use_deprecated to 0, to avoid consequences with ftpd.Jun-ichiro itojun Hagino
2002-08-17Arowana Fast-Ethernet support; patch by Thomas Delaet.Federico G. Schwindt
2002-08-17regen.Federico G. Schwindt