Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-08-21 | Correctly map the video memory, for proper operation. | Miod Vallat | |
2002-08-21 | raise listen backlog; ok markus@ | Kevin Steves | |
2002-08-21 | change LoginGraceTime default to 1 minute; ok mouring@ markus@ | Kevin Steves | |
2002-08-21 | Get the boot device correctly if scsi id != 0 on 1[67]x boards. | Miod Vallat | |
2002-08-21 | Attach 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-21 | suppress dump output on -q. sync w/kame | Jun-ichiro itojun Hagino | |
2002-08-21 | Working 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-21 | Postpone ftruncate after unmap. Works around a bug in non-ubc memory | Marc Espie | |
handling. Also, avoids dumping core on badly formed object. ok millert@, miod@, art@ | |||
2002-08-21 | Split out MD makefile parts into separate files and do | Artur Grabowski | |
some other cleanup in the Makefile. drahn@ ok. | |||
2002-08-21 | Fix Makefile for correct regress operation. | Miod Vallat | |
2002-08-21 | oopsie | Marc Espie | |
2002-08-21 | +mmap3 | Marc Espie | |
2002-08-21 | Regression 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-20 | print as unsigned for unsigned values, when printing out a map in ddb; art@ ok | Michael Shalayeff | |
2002-08-20 | set use_deprecated back to 1. sync w/kame | Jun-ichiro itojun Hagino | |
2002-08-20 | clean some more signal races, some cannot be fixed | Theo de Raadt | |
2002-08-20 | more comment on bind(deprecated) handling | Jun-ichiro itojun Hagino | |
2002-08-20 | ultra60 support | Jason Wright | |
2002-08-20 | U60 works now. | Miod Vallat | |
2002-08-20 | Two 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-20 | Fix error string | Jason Wright | |
2002-08-20 | -n: disallow anon ftp even if ftp account exists | Theo de Raadt | |
2002-08-20 | sync | Nathan Binkert | |
2002-08-20 | New intel gigE devices from Henric Jungheim <henric@henric.info> | Nathan Binkert | |
2002-08-20 | wscons on sparc sets updates | Miod Vallat | |
2002-08-20 | Because of reversed use of the annul bit and delay slots copyin and | Artur 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-20 | Prevent possible races by moving .X11 fixups to before the system | Hugh Graham | |
goes multiuser. In consultation with dynamo; cleared by millert. | |||
2002-08-20 | Increase lineno on newlines inside multi-line macro definitions, otherwise | Daniel Hartmeier | |
errors on subsequent lines are reported with wrong line numbers. From Paul B. Henson. | |||
2002-08-20 | Add a pseudo openfirmware console device for early debugging purposes | Dale Rahn | |
and to allow UKC to work properly. ok miod@ | |||
2002-08-19 | correct copyout logic. better fix to be made in kame tree | Jun-ichiro itojun Hagino | |
2002-08-19 | Suggest better types in examples; from NetBSD | Miod Vallat | |
2002-08-19 | Typo | Ian Darwin | |
2002-08-19 | KNF (4 char continuations) | Jason Wright | |
2002-08-19 | Take advantage of rasops.updatecursor to keep the prom cursor up to date | Jason Wright | |
2002-08-19 | From 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-19 | copyout only if oldp is non-null | Jun-ichiro itojun Hagino | |
2002-08-19 | need explicit copyout(). | Jun-ichiro itojun Hagino | |
2002-08-19 | snprintf 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-19 | committed by mistake - i'm still working on these | Jun-ichiro itojun Hagino | |
2002-08-19 | be consistent with other KAME source, use "ip6" for ip6_hdr, not "ipv6". | Jun-ichiro itojun Hagino | |
2002-08-19 | merge in IPv6 deprecated address handling from KAME. | Jun-ichiro itojun Hagino | |
2002-08-18 | Fix 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-17 | ordered list here | Kevin Steves | |
2002-08-17 | ForwardAgent has defaulted to no for over 2 years; be more clear here. | Kevin Steves | |
2002-08-17 | Add exec_self | Artur Grabowski | |
2002-08-17 | Test 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-17 | set default value for use_deprecated to 0, to avoid consequences with ftpd. | Jun-ichiro itojun Hagino | |
2002-08-17 | Arowana Fast-Ethernet support; patch by Thomas Delaet. | Federico G. Schwindt | |
2002-08-17 | regen. | Federico G. Schwindt | |