Age | Commit message (Collapse) | Author | |
---|---|---|---|
2002-05-06 | Increase MAXPHYS from 63K to 64K which brings it in line with all our | Todd C. Miller | |
other architectures and matches NetBSD-current. hugh@ OK | |||
2002-05-06 | basic infrastructure for handling RSA with CRT parameters. Just need to | Jason Wright | |
figure out how p, q, dp, dq, and pinv fit into the context. | |||
2002-05-06 | Try to deal with the pci shadow bus issue by disabling a specific chip | Nathan Binkert | |
revision of the CNB20HE that always seems to be involved in the shadow bus. This is definately not the right way to do things. The correct way is to try to figure out that the bus is being detected for the second time. ok deraadt | |||
2002-05-06 | drop out of any intr fixup activities if was disabled in the config flags | Michael Shalayeff | |
2002-05-06 | tuner driver for the fms cards. | Michael Shalayeff | |
attach radio at the fms(4), instead of a separate device, which would never work out fine. from Vladimir Popov <jumbo@narod.ru> rework the radio config stuff (radio at radiobus, instead of radio at radio), allowing to tag source files in the files.* files w/ radio attribute. from mickey@ | |||
2002-05-06 | typo in comment | jasoni | |
2002-05-06 | - Only copy the significant bits of the result out (and make sure the buffer | Jason Wright | |
is long enough to handle it) and bzero the rest. - Increase key buffer sizes to 2048 bits. | |||
2002-05-06 | typedef for proc * for portability | Nathan Binkert | |
2002-05-06 | Make more portable with NetBSD | Nathan Binkert | |
Whitespace sync with NetBSD | |||
2002-05-06 | sync with NetBSD | Nathan Binkert | |
2002-05-06 | Sync with NetBSD | Nathan Binkert | |
2002-05-06 | regen. | Peter Valchev | |
2002-05-06 | Match D-Link DE-660+, tested by drewc@rift.com, ok fgs | Peter Valchev | |
2002-05-06 | new conversion functions from NetBSD for uaudio | Nathan Binkert | |
2002-05-05 | Use correct $NetBSD$ | Nathan Binkert | |
2002-05-05 | whitespace sync with netbsd. | Nathan Binkert | |
2002-05-05 | Instead of returning a useless kernel space pointer for the rule that | Daniel Hartmeier | |
created the state from DIOCGETSTATE(S), return the integer rule number, Print rule number (if existant) from pfctl -vss. Suggested by Jeff Nathan. | |||
2002-05-05 | fix panic triggered by using a 3.0 wsmoused on a 3.1 kernel, by | Matthieu Herrb | |
checking that wsms_dev is not NULL before dereferencing it. ok jbm@ | |||
2002-05-04 | some space and tab cleanup. | Federico G. Schwindt | |
2002-05-03 | disable ahc again for now, since it does not fit; ok miod | Peter Valchev | |
2002-05-03 | Regen. | Miod Vallat | |
2002-05-03 | Add more cards and device names, and print better looking probe messages for | Miod Vallat | |
unknown cards. | |||
2002-05-03 | ptrdiff_t and size_t fixes. | Marc Espie | |
okay mickey@ | |||
2002-05-03 | no guarantee that ptrdiff_t is int and not long, so cast. | Marc Espie | |
ok mickey@ | |||
2002-05-03 | 82801CA/CAM works like previous models. | Marc Espie | |
Suggested by csapuntz@, tested to work. Okay csapuntz@ | |||
2002-05-03 | LBA48 support. | Grigoriy Orlov | |
Adopted from NetBSD by Alexander Yurchenko <grange@openbsd.ru>. costa@ ok. | |||
2002-05-03 | le_ioasic.h is history | Todd C. Miller | |
2002-05-03 | Need a dummy tc_fb_cnattach() until we have real fb support on | Todd C. Miller | |
TURBOchannel machines. | |||
2002-05-02 | Oops, it's too early for this chunk of code... spotted by millert@. | Miod Vallat | |
2002-05-02 | Add a type specifier for intrnames, eintrnames, intrcnt, and eintrcnt. | Todd C. Miller | |
Without this, n_type in struct nlist ends up as N_UNDF for those symbols which makes vmstat -i unhappy. mido@ OK | |||
2002-05-02 | Big TURBOchannel support catchup from NetBSD, part 1. | Miod Vallat | |
A few local changes and tweaks remain. This bring DEC 3000 machines back in the game, but framebuffers are still not supported at the moment. Thanks to ericj@ and nate@ for supplying me a DEC 3000 for testing. | |||
2002-05-02 | prefix structure members to avoid name clashes. | Nathan Binkert | |
From NetBSD | |||
2002-05-02 | use the gallant 12x22 font by default on screens that are more | Matthieu Herrb | |
than 960 pixels wide if !SMALL_KERNEL, like rcons does. Ok drahn@, mickey@, miod@.x | |||
2002-05-02 | the exponent parameter is: | Jason Wright | |
1. byte counted (not word count * 4 counted) 2. not normalized (we don't normalize anything yet, so no biggy) Increase maximum size of exponent to 2048 bits. (Better length checks coming soon) | |||
2002-05-02 | More of previous (don't refer to parameters by index directly) | Jason Wright | |
Also, add a sanity check that the result bits must be >= modulus bits. | |||
2002-05-02 | Don't refer to the parameters directly by number, use macro's so it can be | Jason Wright | |
changed later if necessary. Also, don't bother bzero'n the mcr, all of the fields are initialized anyway | |||
2002-05-02 | update the nbsd rcsid to unconfuse some lamers | Michael Shalayeff | |
2002-05-02 | sync | Jason Wright | |
2002-05-02 | new vendor: Atheros | Jason Wright | |
2002-05-02 | In UKC, when adding a fixed unit device (foo0) by cloning a star device | Miod Vallat | |
(foo*), be sure to update all cf_starunit1 fields for related star devices, so that they will not compete for the foo0 probe. This fixes the new sparc bsd.scsi3 behaviour. Tested by brad@ and myself, ok maja@ | |||
2002-05-02 | Cause the exec to fail if we are unable to allocate resources when dup'ing | Todd C. Miller | |
/dev/null to fd's 0-2 for a setuid program; deraadt@ and art@ OK | |||
2002-05-01 | - make sure 'me' is initialized | Jason Wright | |
- compute modulus bits early (if its too big, return E2BIG) - modulus bits must be rounded to 512/768/1024 (and/or 1536/2048 for 5820) - allocate the result based on modulus bits and bzero it - add two diagnostic checks that will hang the chip: unaligned result/length [score so far: 655 out of 1000 test cases work for modexp on 5820] | |||
2002-05-01 | make fw images const and fix ti for unneeded type casts; jason@ testing ans ok | Michael Shalayeff | |
2002-05-01 | Sync EA with FreeBSD, mostly addition of new ENOATTR errno. | Dale Rahn | |
ok millert@, art@ | |||
2002-05-01 | Change WI_PORTTYPE_IBSS to 4. This change got lost in the big ibss | Todd C. Miller | |
simplication a while back. Luckily, it is basically cosmetic... | |||
2002-04-30 | enough letoh-foo to get through firmware upload on big endian machines | Jason Wright | |
2002-04-30 | constify a few structs | Michael Shalayeff | |
2002-04-30 | charClass is const and kill lotsa spaces | Michael Shalayeff | |
2002-04-30 | cdev_decl is done in conf.h, do not dupe here | Michael Shalayeff | |
2002-04-30 | crc32_tab can be const | Michael Shalayeff | |