summaryrefslogtreecommitdiffstats
Commit message (Collapse)AuthorAgeFilesLines
* Catch these modules up with obrien's recent cleanup commit.peter2001-03-244-18/+22
|
* Drop 'KMODDEPS = snd_pcm' - it isn't used.peter2001-03-241-1/+0
|
* Back out 'KMODDEPS = miibus' addition in last commit. This isn't used.peter2001-03-241-1/+0
|
* Add new categories science and ukrainian.asami2001-03-244-0/+7
|
* Add #if'ed support for the future option CAM_NEW_TRAN_CODE.groudier2001-03-241-57/+236
|
* when writing to one of the setup registers, a 32-bit write is required.cg2001-03-241-2/+3
| | | | | | | | this apparently fixes problems initialising certain es1371/es1373/ct5880 revisions. Confirmed working by: Richard J Kuhns <rjk@grauel.com> PR: i386/25944
* Revert the warning elimination in rev 1.292. It breaks the Alpha build with:obrien2001-03-242-2/+2
| | | | | /usr/src/usr.sbin/sysinstall/menus.c:1323: initializer element is not computable at load time /usr/src/usr.sbin/sysinstall/menus.c:1323: (near initialization for `MenuNetworking.items[9].aux')
* Add bandaid to get ISA only systems to link.sos2001-03-241-0/+44
|
* Fix typo ); -> ,asmodai2001-03-241-1/+1
|
* Unbreak build on alpha.ume2001-03-244-9/+1
| | | | | | | - Move in_port_t to sys/types.h. - Nuke in_addr_t from each endian.h. Reported by: jhb
* Sort includes and remove bogus typedef of modeventhand_t, since thisalex2001-03-241-5/+1
| | | | | | isn't used in the example any more. Pointed out by: bde
* List of distfile contents to delete using `rm' and `find -delete'.obrien2001-03-241-0/+71
| | | | | | Simular to the FREEBSD-Xlist used with `tar -X ... -xf'. This file is typically used when one starts with the GDB anoncvs repo rather than a release tarball.
* Sigh. I should know better than to commit a one line change from a PRobrien2001-03-241-1/+1
| | | | | | | w/o a full compile test, even when the PR seemed so authoritative on the subject... Install sstream, not the non-existent sstring.
* Restore the careful preservation of .depend (rev 1.78 of Makefile.i386)obrien2001-03-245-10/+20
| | | | | | | | that I removed in my last commit dealing with `make depend' bogons. This commit has some races, but hopefully they are too short to matter. Unfortuneatly, neither .newdep nor .olddep is removed by `make clean'. Submitted by: bde
* Silence (harmless) warnings.markm2001-03-241-0/+1
|
* Round 1 of Brucification inspired changes.peter2001-03-241-3/+3
|
* Cleaner way of adding -fschg (ie, correctly implement).obrien2001-03-241-2/+1
| | | | | | | "INSTALLFLAGS" belongs to individual Makefiles. "_INSTALLFLAGS" is for global additions. Submitted by: bde
* Fix a problem where we were switching npxproc from underneath processesobrien2001-03-243-0/+138
| | | | | | | | | running in process context in order to run interrupt handlers. This caused a big smashing of the stack on AMD K6, K5 and Intel Pentium (ie, P5) processors because we are using npxproc as a flag to indicate whether the state has been pushed onto the stack. Submitted by: bde
* Install sstring.obrien2001-03-241-2/+2
| | | | | PR: 25927 Submitted by: Jeremy Norris <ishmael27@home.com>
* Garbage collect these ancient bits.obrien2001-03-242-72/+0
|
* Add cvs tagdougb2001-03-241-0/+2
|
* Use (..., "%s", foo) instead of (..., foo) to avoid a warning about ajhb2001-03-241-1/+1
| | | | | non-constant format string when calling kthread_create() to create an ithread.
* - Define and use MAXCPU like the alpha and i386 instead of NCPUS.jhb2001-03-242-6/+10
| | | | | - Sort the sys/mutex.h include in mp_machdep.c into a closer to correct location.
* Stick a prototype for handleclock() in machine/clock.h and include itjhb2001-03-242-0/+2
| | | | interrupt.c to quiet a warning.
* Preserve ssh directory across upgrades.jkh2001-03-241-0/+1
| | | | | Submitted by: Edwin Groothuis <edwin@mavetju.org> PR: conf/25633
* This is kind of a hack, but it should work. Currently, world is brokenpeter2001-03-245-83/+36
| | | | | | | | | | | | | | | | | | | | | | | | | | | because libc/rpc/key_call.c references uname(), and ps/print.c also defines uname(), and ps is linked statically. This leads to a symbol clash. The userland uname(3) kinda sucked anyway as the hostname etc was too short. And since the libc rpc interface now uses the utsname.nodename which gets truncated, I was tempted into doing something about it. Create a new userland uname function, called __xuname() which takes an extra argument that allows you to change the size of the fields. uname() becomes a static inline function in sys/utsname.h that passes the extra argument in. struct utsname has its field members expanded by default now in userland. We still provide a 'uname' externally linkable function for things that either think that they ``know'' the utsname format and assume 32 character strings and bypass the include file, or objects that are linked against old libcs. ie: just about every plausible case that I can think of is covered. Should we ever change the default lengths again, a libc major bump should not be required as the size is now passed to the function. XXX the uname(2) in the kernel is for FreeBSD 1.1 binary compatability! All the uname(3) functions that are exported to userland are actually implemented in libc with sysctl. uname(1) uses sysctl directly and does not call uname(3). PR: bin/4688
* Just use the proc lock to protect read accesses to p_pptr rather than thejhb2001-03-241-4/+4
| | | | more expensive proctree lock.
* Protect p_wmesg and p_wchan with sched_lock while checking for deadlocksjhb2001-03-241-0/+3
| | | | with other byte range file locks.
* afterstep doesn't need an explicit xterm started for it either.jkh2001-03-242-2/+2
|
* This commit was generated by cvs2svn to compensate for changes in r74722,obrien2001-03-244-72/+140
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import the setjump/longjump exception handling fixes from GCC 2.95.3.test3obrien2001-03-244-72/+140
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | that were removed from GCC 2.95.3.test4 and the subsequent release due to problems on HP-UX. However, they work just fine on all the BSD's. W/o these patches the following program segmentation faults if compiled with -O2 (but not -Os or -O or -O0): #include <stdio.h> class A { public: A() { printf("c'tor A\n"); } ~A(){ printf("d'tor A\n"); } }; class foo : public A { public: foo() { printf("C'tor foo\n"); throw 8; } ~foo() { printf("D'tor foo\n"); } }; int main(){ try { foo fii; } catch (int){ printf("catch ...\n"); } return 0; }
* | s/dependant/dependentjkh2001-03-241-2/+2
| | | | | | | | Submitted by: rwatson
* | revert rev 1.3: restore MAN1 directive to unbreak worldalfred2001-03-241-0/+1
| |
* | Slightly de-bogify the uname() declarations.peter2001-03-241-8/+0
| | | | | | | | | | | | 1: there is no global 'struct utsname utsname' in the kernel. 2: the __P() stuff handles the __STDC__ stuff, so the extra ifdef is redundant.
* | Install /etc/primes.green2001-03-241-0/+1
| |
* | Now that libfetch uses the high port range by default, add a -U option todes2001-03-242-13/+17
| | | | | | | | make it use the low (default) port range instead.
* | Use high port range by default, and replace the 'h' option with an 'l' optiondes2001-03-242-7/+7
| | | | | | | | that forces the ftp code to use the low (default) port range instead.
* | This commit was generated by cvs2svn to compensate for changes in r74713,green2001-03-241-0/+71
|\ \ | | | | | | | | | which included commits to RCS files with non-trunk default branches.
| * | Add /etc/primes for OpenSSH SSH2 DH exchange.green2001-03-241-0/+71
| / | | | | | | | | Submitted by: Chris Wasser <cwasser@v-wave.com> Obtained from: OpenBSD
* | Fix rcsid/$FreeBSD$.obrien2001-03-241-2/+15
| | | | | | | | Reduce diff from what I think is the original sources.
* | add support for opti924 and opti930 chipscg2001-03-242-7/+270
| | | | | | | | | | | | | | | | | | both should work in non-pnp mode, the 924 should also work in its rather braindead pnp mode- it will adopt port 0x530 unless given hints due to it starting up in soundblaster mode and thus not requesting a valid mss port address. Submitted by: George Reid <greid@ukug.uk.freebsd.org>
* | fix Alpha supportalfred2001-03-241-10/+0
| |
* | Lets spell the guys name correctly: s/Avogardo/Avogadro/wilko2001-03-231-1/+1
| |
* | The early compat dists only make sense on the i386jkh2001-03-231-0/+4
| |
* | Check that background fsck operation is being done on a ufs filesystem.mckusick2001-03-231-0/+2
| | | | | | | | Obtained from: Robert Watson <rwatson@FreeBSD.org>
* | Fix the problem with some drives not reporting back when thesos2001-03-233-15/+19
| | | | | | | | | | | | are busy blanking and erasing CD-RW media. This fixes burncd's premature returns from blanking/erasing that caused trouble.
* | (MFC candidate, see below).joerg2001-03-231-0/+14
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | When we get an Open event in stopped state, experience shows that this is usually means we've somehow missed a previous Down event. This has occasionally bitten people for the IPCP layer with ISDN, apparently a previously aborted IPCP negotiation must have caused this. As a bandaid, we quickly pretent a Down event by advancing to starting state; this effectively implements the `restart' option mentioned in RFC 1663. While i'm not yet fully convinced this is the best thing to do (and is fully compliant with RFC 1661), i've seen a number of reports here on the German mailing lists where people have been bitten by the previous behaviour which usually causes quickly looping ISDN reconnects (thus loss of money...), and where just this patch fixes the problem. For this, i'd even like to see it MFC'd if possible. Submitted by: Helmut Kreft <kreft@zeus.ai-lab.fh-furtwangen.de>
* | disable SRAassar2001-03-231-2/+2
| | | | | | | | | | | | this impacts negatively to POLA since once autologin is enabled, telnet will prompt for a password using getpass() and thus not allow the usual signal characters or C-]
* | fix linux_times() to take into account linux's value of CLK_TCK on the alpha.gallatin2001-03-231-0/+5
| | | | | | | | | | | | Previously, results were off by a factor of 10 Tested by: Yoriaki FUJIMORI <fujimori@grafin.fujimori.cache.waseda.ac.jp>
* | IPv4 address is not unsigned int. This change introduces in_addr_t.ume2001-03-2310-25/+33
| | | | | | | | | | | | | | PR: 9982 Adviced by: des Reviewed by: -alpha and -net (no objection) Obtained from: OpenBSD
OpenPOWER on IntegriCloud