Re: setproctitle() in FreeBSD 4.0 ...
The Hermit Hacker ([EMAIL PROTECTED]) wrote: > > > cc -O -m486 -pipe tset.c -o tset -lutil > > ./tset > > Suspended (signal) > > ps ax | grep th > 24856 p3 R+ 0:00.00 grep my > > ps ax | grep tset > 24537 p3 T 0:00.00 ./tset > > == > > I take it should have seen 'my new title' vs 'tset'? > > I've done several 'make worlds' on this machine since upgrading it, > just in case ... Try this patch. Index: kern_proc.c === RCS file: /home/ncvs/src/sys/kern/kern_proc.c,v retrieving revision 1.62 diff -u -r1.62 kern_proc.c --- kern_proc.c 1999/11/26 08:27:10 1.62 +++ kern_proc.c 2000/02/07 23:16:46 @@ -683,5 +683,5 @@ SYSCTL_NODE(_kern_proc, KERN_PROC_PID, pid, CTLFLAG_RD, sysctl_kern_proc, "Process table"); -SYSCTL_NODE(_kern_proc, KERN_PROC_ARGS, args, CTLFLAG_RW, +SYSCTL_NODE(_kern_proc, KERN_PROC_ARGS, args, CTLFLAG_RW|CTLFLAG_ANYBODY, sysctl_kern_proc_args, "Return process argument"); -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: Buf cache, swap spl, and NFS patches need review.
Matthew Dillon ([EMAIL PROTECTED]) wrote: > swap-SPL: > > Required splvm()'s had to be added to two places in the swap subsystem > (but I don't think the lack of these spl's is the cause of the > recently reported crashes, though it is possible). There are a few more that I still get if I dont add spl protection. I need to commit the SPLASSERT stuff but I'm scared about how badly it will break for people that run with INVARIANTS. I'll attach the whole SPLASSERT to the VM here. Also, I went through vfs_bio.c and added SPLASSERT there and it goes kaboom really quick. bdwrite calls everything with no spl proctection when it really should. My full SPLASSERT patch is at http://people.freebsd.org/~ps/splassert.diff. I should just go ahead and submit this. This patch doesn't have any of the vm patches we discussed last month. -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? Index: src/sys/vm/swap_pager.c diff -u src/sys/vm/swap_pager.c:1.1.1.1 src/sys/vm/swap_pager.c:1.6 --- src/sys/vm/swap_pager.c:1.1.1.1 Tue Feb 29 02:15:04 2000 +++ src/sys/vm/swap_pager.c Thu Mar 16 02:32:32 2000 @@ -65,6 +65,7 @@ * @(#)swap_pager.c8.9 (Berkeley) 3/21/94 * * $FreeBSD: src/sys/vm/swap_pager.c,v 1.130 1999/12/28 07:30:54 peter Exp $ + * $PMS: src/sys/vm/swap_pager.c,v 1.6 2000/03/16 10:32:32 ps Exp $ */ #include @@ -214,6 +215,8 @@ static __inline void swp_sizecheck() { + SPLASSERT(vm, "swp_sizecheck"); + if (vm_swap_size < nswap_lowat) { if (swap_pager_almost_full == 0) { printf("swap_pager: out of swap space\n"); @@ -462,6 +465,8 @@ int npages; { daddr_t blk; + + SPLASSERT(vm, "swp_pager_getswapspace"); if ((blk = blist_alloc(swapblist, npages)) == SWAPBLK_NONE) { if (swap_pager_full != 2) { @@ -496,6 +501,8 @@ daddr_t blk; int npages; { + SPLASSERT(vm, "swp_pager_freeswapspace"); + blist_free(swapblist, blk, npages); vm_swap_size += npages; swp_sizecheck(); @@ -702,8 +709,6 @@ * distance. We do not try to restrict it to the swap device stripe * (that is handled in getpages/putpages). It probably isn't worth * doing here. - * - * This routine must be called at splvm(). */ boolean_t @@ -714,14 +719,17 @@ int *after; { daddr_t blk0; + int s; /* * do we have good backing store at the requested index ? */ + s = splvm(); blk0 = swp_pager_meta_ctl(object, pindex, 0); if (blk0 == SWAPBLK_NONE) { + splx(s); if (before) *before = 0; if (after) @@ -764,7 +772,7 @@ } *after = (i - 1); } - + splx(s); return (TRUE); } @@ -784,14 +792,17 @@ * depends on it. * * This routine may not block - * This routine must be called at splvm() */ static void swap_pager_unswapped(m) vm_page_t m; { + int s; + + s = splvm(); swp_pager_meta_ctl(m->object, m->pindex, SWM_FREE); + splx(s); } /* @@ -1230,8 +1241,13 @@ * force sync if not pageout process */ - if (object->type != OBJT_SWAP) + if (object->type != OBJT_SWAP) { + int s; + + s = splvm(); swp_pager_meta_build(object, 0, SWAPBLK_NONE); + splx(s); + } if (curproc != pageproc) sync = TRUE; @@ -1682,6 +1698,8 @@ struct swblock **pswap; struct swblock *swap; + SPLASSERT(vm, "swp_pager_hash"); + index &= ~SWAP_META_MASK; pswap = &swhash[(index ^ (int)(intptr_t)object) & swhash_mask]; @@ -1720,6 +1738,8 @@ struct swblock *swap; struct swblock **pswap; + CONDSPLASSERT(object->type == OBJT_SWAP, vm, "swp_pager_meta_build"); + /* * Convert default object to swap object if necessary */ @@ -1810,6 +1830,8 @@ static void swp_pager_meta_free(vm_object_t object, vm_pindex_t index, daddr_t count) { + SPLASSERT(vm, "swp_pager_meta_free"); + if (object->type != OBJT_SWAP) return; @@ -1856,6 +1878,8 @@ { daddr_t index = 0; + SPLASSERT(vm, "swp_pager_meta_free_all"); + if (object->type != OBJT_SWAP) return; @@ -1924,6 +1948,8 @@ struct swblock **pswap; struct swblock *swap; daddr_t r1; + + SPLASSERT(vm, "swp_pager_meta_ctl"); /* * The meta data only exists of the object is OBJT_SWAP Index: src/sys/vm/vm_page.c diff -u
Re: TCP becomes very broken just now
Andrey A. Chernov ([EMAIL PROTECTED]) wrote: > Some of recent kernel TCP changes cause TCP completely not working, > i.e. any network daemon (mountd, sendmail, cfsd) started from "rc" on > dialup machine hangs with 3min "Can't connect' timeout and user level > "ppp" started than hangs forever even not dialing. Please fix. The problem is in jlemon's latest commit cleaning up the checksum calculations. I would be interested in seeing what netstat -s says for bad checksums.. I came up with this patch, which fixes my i386 machine.. I dont have an alpha to test. http://people.freebsd.org/~ps/cksum.diff -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: tcp/ip broken?
Update your source again. This has been fixed. paul Jason J. Horton ([EMAIL PROTECTED]) wrote: > Did a cvsup on saturday, make world etc and now TCP/IP networking seems > to be broken. dmesg shows the devices, ifconfig configs everything > without > error, but cant ping, telnet, ssh etc off of the server. Even set up PPP > with the same results. Downside to this is that I cannot cvsup to > something > more current to see if it fixes the problem. Any known issues with > recent > commits? > > -- > -Jason J. Horton <[EMAIL PROTECTED]> >Fat Man in a Little Coat >Intercom Online Inc. >212.376.7440 | http://www.intercom.com > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-current" in the body of the message -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: panic in sbdrop on SMP, kernel approx 9 days old
What is the hardware in this box? Do you have an NCR scsi controller using the ncr driver? paul Adam ([EMAIL PROTECTED]) wrote: > This morning my cable modem went out and it returned to service while I > was out of the room. When I returned I was greeted by fsck; I'm not sure > if this is related to networking somehow but I figured I'd report it > anyway. This computer has 3 nics, does bridging across two, and provides > nat to the third. Kernel is about as old as the uptime was. As usual, > any more info wanted, just ask. > > gdb -k /sys/compile/SAPPHIRE-SMP3/kernel.debug vmcore.0 > GNU gdb 4.18 > Copyright 1998 Free Software Foundation, Inc. > GDB is free software, covered by the GNU General Public License, and you > are > welcome to change it and/or distribute copies of it under certain > conditions. > Type "show copying" to see the conditions. > There is absolutely no warranty for GDB. Type "show warranty" for > details. > This GDB was configured as "i386-unknown-freebsd"... > SMP 2 cpus > IdlePTD 3375104 > initial pcb at 2b83c0 > panicstr: sbdrop > panic messages: > --- > panic: sbdrop > mp_lock = 0101; cpuid = 1; lapic.id = 0100 > boot() called on cpu#1 > > syncing disks... 1 > done > Uptime: 8d18h3m30s > > dumping to dev #ad/0x20001, offset 8192 > dump ata0: resetting devices .. done > 128 127 126 125 124 123 122 121 120 119 118 117 116 115 114 113 112 111 > 110 109 108 107 106 1 > 05 104 103 102 101 100 99 98 97 96 95 94 93 92 91 90 89 88 87 86 85 84 83 > 82 81 80 79 78 77 7 > 6 75 74 73 72 71 70 69 68 67 66 65 64 63 62 61 60 59 58 57 56 55 54 53 52 > 51 50 49 48 47 46 4 > 5 44 43 42 41 40 39 38 37 36 35 34 33 32 31 30 29 28 27 26 25 24 23 22 21 > 20 19 18 17 16 15 1 > 4 13 12 11 10 9 8 7 6 5 4 3 2 1 > --- > #0 boot (howto=256) at ../../kern/kern_shutdown.c:303 > 303 dumppcb.pcb_cr3 = rcr3(); > (kgdb) bt > #0 boot (howto=256) at ../../kern/kern_shutdown.c:303 > #1 0xc015a62d in panic (fmt=0xc0257d06 "sbdrop") at > ../../kern/kern_shutdown.c:553 > #2 0xc017b500 in sbdrop (sb=0xc8572074, len=65392) at > ../../kern/uipc_socket2.c:927 > #3 0xc017b390 in sbflush (sb=0xc8572074) at ../../kern/uipc_socket2.c:906 > #4 0xc017ae55 in sbrelease (sb=0xc8572074, so=0xc8572000) at > ../../kern/uipc_socket2.c:589 > #5 0xc01783cb in sofree (so=0xc8572000) at ../../kern/uipc_socket.c:250 > #6 0xc0178502 in soclose (so=0xc8572000) at ../../kern/uipc_socket.c:316 > #7 0xc016de8a in soo_close (fp=0xc1016a80, p=0xc954c2a0) at > ../../kern/sys_socket.c:183 > #8 0xc014e3ad in fdrop (fp=0xc1016a80, p=0xc954c2a0) at > ../../sys/file.h:212 > #9 0xc014e2f3 in closef (fp=0xc1016a80, p=0xc954c2a0) at > ../../kern/kern_descrip.c:1079 > #10 0xc014e044 in fdfree (p=0xc954c2a0) at ../../kern/kern_descrip.c:945 > #11 0xc0150779 in exit1 (p=0xc954c2a0, rv=256) at > ../../kern/kern_exit.c:186 > #12 0xc01505e0 in exit1 (p=0xc954c2a0, rv=0) at ../../kern/kern_exit.c:103 > #13 0xc02407e9 in syscall2 (frame={tf_fs = 47, tf_es = 47, tf_ds = 47, > tf_edi = 672387072, > tf_esi = 13118054, tf_ebp = -1077941132, tf_isp = -917430316, tf_ebx > = 672371384, > tf_edx = 0, tf_ecx = -1077941184, tf_eax = 1, tf_trapno = 12, tf_err > = 2, > tf_eip = 672019908, tf_cs = 31, tf_eflags = 663, tf_esp = > -1077941160, tf_ss = 47}) > at ../../i386/i386/trap.c:1126 > #14 0xc022e9fb in Xint0x80_syscall () > cannot read proc at 0 > (kgdb) > > > > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-current" in the body of the message -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: KSE/threads progress report
Kenneth D. Merry ([EMAIL PROTECTED]) wrote: > diff2 output, on the other hand, won't run through patch properly. You > have to run it through a fixup script to get it right. p4 diff -u -b branch That works just fine. -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: Problem with pxeboot and binutils-2.11
David Malone ([EMAIL PROTECTED]) wrote: > On Thu, Aug 09, 2001 at 11:12:32AM -0700, John Baldwin wrote: > > > It appears that gas is now properly padding the end of the text > > > section (and inserting the jmp and nops). This, in turn, misaligns > > > the loader that is tacked onto the end of the pxeldr. I'm currently > > > not setup to test pxeboot'ing but here's a patch that might fix it. > > > > The disassembly looks right, I just don't have a means for testing it. > > Oliver Hartmann tested Mark's patch and it seems to fix the problem. > Mark's going to look into committing and (hopefully) merging the > fix to -stable. Yes.. This fixes the problem. John's patch also works. -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: cvs commit: src/sys/kern sys_process.c
This will not fix the problem. I even removed rev 1.57-1.58 and it still causes gdb to lockup the system. Szilveszter Adam ([EMAIL PROTECTED]) wrote: > Hello everybody! > > ps 2000/12/29 16:44:44 PST > > Modified files: > sys/kern sys_process.c > Log: > Pass me the pointy hat. Do not hold sched_lock over psignal. > > Submitted by: alfred > > Revision ChangesPath > 1.58 +2 -2 src/sys/kern/sys_process.c > > I think I will try this. Maybe it will help with the panic I saw yesterday. > > Will report back when I am done. > > -- > Regards: > > Szilveszter ADAM > Szeged University > Szeged Hungary > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-current" in the body of the message -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: cvs commit: src/sys/kern sys_process.c
I already have and that fixed it. John Baldwin ([EMAIL PROTECTED]) wrote: > > On 30-Dec-00 Paul Saab wrote: > > This will not fix the problem. I even removed rev 1.57-1.58 and it > > still causes gdb to lockup the system. > > Try backing out the proctree lock. > > -- > > John Baldwin <[EMAIL PROTECTED]> -- http://www.FreeBSD.org/~jhb/ > PGP Key: http://www.Baldwin.cx/~john/pgpkey.asc > "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
ia64 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree == -- Paul Saab [EMAIL PROTECTED] -- http://fastmail.fm - Email service worth paying for. Try it for free To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
ia64 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
ia64 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
ia64 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc64 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc32 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc32 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc32 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc16 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc8 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc2 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc1 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
sparc4 tinderbox failure
-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (fuck fumerola) *** Error code 1 (fuck matt dillon) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis ===> usr.bin/which ===> usr.bin/who ===> usr.bin/whois ===> usr.bin/window ===> usr.bin/write ===> usr.bin/xargs ===> usr.bin/xinstall ===> usr.bin/xlint ===> usr.bin/xlint/lint1 yacc: 1 shift/reduce conflict ===> usr.bin/xlint/lint2 ===> usr.bin/xlint/xlint ===> usr.bin/xlint/llib ===> usr.bin/xstr ===> usr.bin/yacc ===> usr.bin/yes ===> usr.bin/ypcat ===> usr.bin/ypmatch ===> usr.bin/ypwhich ===> usr.bin/dig ===> usr.bin/dnskeygen ===> usr.bin/dnsquery ===> usr.bin/host ===> usr.bin/vacation ===> usr.bin/uac ===> usr.bin/chkey ===> usr.bin/newkey ===> usr.sbin ===> usr.sbin/IPXrouted ===> usr.sbin/ac ===> usr.sbin/accton ===> usr.sbin/adduser ===> usr.sbin/amd ===> usr.sbin/amd/include ===> usr.sbin/amd/libamu ===> usr.sbin/amd/amd ===> usr.sbin/amd/amq ===> usr.sbin/amd/doc ===> usr.sbin/amd/fixmount ===> usr.sbin/amd/fsinfo yacc: 2 shift/reduce conflicts ===> usr.sbin/amd/hlfsd ===> usr.sbin/amd/mk-amd-map ===> usr.sbin/amd/pawd ===> usr.sbin/amd/scripts ===> usr.sbin/amd/wire-test ===> usr.sbin/ancontrol ===> usr.sbin/arp ===> usr.sbin/atm ===> usr.sbin/atm/atmarpd ===> usr.sbin/atm/scspd ===> usr.sbin/bootparamd ===> usr.sbin/bootparamd/bootparamd ===> usr.sbin/bootparamd/callbootd ===> usr.sbin/burncd ===> usr.sbin/cdcontrol ===> usr.sbin/chkgrp ===> usr.sbin/chown ===> usr.sbin/chroot ===> usr.sbin/ckdist ===> usr.sbin/config ===> usr.sbin/cron ===> usr.sbin/cron/lib ===> usr.sbin/cron/cron ===> usr.sbin/cron/crontab ===> usr.sbin/crunch ===> usr.sbin/crunch/crunchgen ===> usr.sbin/crunch/crunchide ===> usr.sbin/ctm ===> usr.sbin/ctm/ctm ===> usr.sbin/ctm/ctm_rmail ===> usr.sbin/ctm/ctm_smail ===> usr.sbin/ctm/ctm_dequeue ===> usr.sbin/daemon ===> usr.sbin/dev_mkdb ===> usr.sbin/devinfo ===> usr.sbin/digictl ===> usr.sbin/edquota ===> usr.sbin/extattr ===> usr.sbin/extattrctl ===> usr.sbin/faithd ===> usr.sbin/fdcontrol ===> usr.sbin/fdformat ===> usr.sbin/fdread ===> usr.sbin/fdwrite ===> usr.sbin/fwcontrol ===> usr.sbin/getfmac ===> usr.sbin/getpmac ===> usr.sbin/ifmcstat ===> usr.sbin/inetd ===> usr.sbin/iostat ===> usr.sbin/jail ===> usr.sbin/kbdcontrol ===> usr.sbin/kbdmap ===> usr.sbin/kernbb ===> usr.sbin/kldxref ===> usr.sbin/lastlogin ===> usr.sbin/mailwrapper ===> usr.sbin/manctl ===> usr.sbin/memcontrol ===> usr.sbin/mergemaster ===> usr.sbin/mixer ===> usr.sbin/mld6query ===> usr.sbin/mlxcontrol ===> usr.sbin/mountd ===> usr.sbin/moused ===> usr.sbin/mrouted ===> usr.sbin/mrouted/common ===> usr.sbin/mrouted/mrouted ===> usr.sbin/mrouted/mrinfo ===> usr.sbin/mrouted/map-mbone ===> usr.sbin/mrouted/mtrace ===> usr.sbin/mrouted/testrsrr ===> usr.sbin/mtest ===> usr.sbin/mtree ==-- >>> Rebuilding the temporary build tree -- >>> stage 1: bootstrap tools -- >>> stage 2: cleaning up the object tree -- >>> stage 2: rebuilding the object tree -- >>> stage 2: build tools -- >>> stage 3: cross tools -- >>> stage 4: populating /home/des/tinderbox/alpha/obj/h/des/src/alpha/usr/include -- >>> stage 4: building libraries -- >>> stage 4: make dependencies -- ===> usr.bin/vi *** Error code 1 (ignored) *** Error code 1 (ignored) ===> usr.bin/vis ===> usr.bin/vmstat ===> usr.bin/w ===> usr.bin/wall ===> usr.bin/wc ===> usr.bin/what ===> usr.bin/whereis =
Re: Direct Server Return and FreeBSD 5
You need to set net.inet.ip.check_interface=0 John David Duncan ([EMAIL PROTECTED]) wrote: > > There's a load balancing configuration known as direct server return > (DSR), in which packets pass from the client through the load balancer to > the server, but then the replies from the server go directly to the client > (bypassing the load balancer). The way this works is that the load > balancer sends the server an IP packet with the virtual IP address as its > destination addr, inside an ethernet frame whose destination is the real > MAC addr of the server. The server replies with a normal packet using the > VIP as the source addr. > > The usual way to configure a BSD box to work this way is to bring up the > VIP as an alias on the loopback address, like this: >ifconfig lo0 add 1.2.3.4 netmask 0xff00 > > As far as I can tell from my testing, this trick just doesn't work on my > box running -CURRENT. In tcpdump I see packets coming in but none > going out. > > Does anybody know why, or what I would have to do to change the behavior? > > - JD > > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-current" in the body of the message -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: Smart Array 5312 (Compaq)
Try this patch http://people.freebsd.org/~ps/ciss.diff John ([EMAIL PROTECTED]) wrote: > Is anyone working on a driver for said raid controller? > Here is a pciconf -lv (from 5.0-R) and a link for some info on the card. > > > ne3@pci6:2:0: class=0x010400 card=0x40830e11 chip=0xb1780e11 rev=0x01 hdr=0x00 > class= mass storage > subclass = RAID > > >http://h18004.www1.hp.com/products/servers/proliantstorage/arraycontrollers/smartarray5312/questionsanswers.html > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-current" in the body of the message -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: Smart Array 5312 (Compaq)
John ([EMAIL PROTECTED]) wrote: > Well looks like it does work after all! I must not have created my install > floppies correctly (panic was couldn't find init btw) . I moved a few a > drives onto a 5i just so i could get 5.0 installed and running and > recompiled the kernel with said patch and i can see and write to the drives. i > have not tried booting off them yet but i will email back once i have. > > Should i submit a PR for this? I'll commit this stuff soon. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
users of the ida driver
Can someone please test for me if the following patch gets crashdumps working on the ida driver under -current? http://people.freebsd.org/~ps/ida.diff recompile and all that jazz break into DDB and type 'call doadump' To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: compaq proliant dl360 G3 nic driver
use the latest RELENG_4 L. Jankok ([EMAIL PROTECTED]) wrote: > hi, > > I have installed FreeBSD 4.7R on a compaq proliant > dl360 G3 to find out that the nics are not being > recognized.. has this been dealt with in current ? > > -- > Does artificial plants need artificial water ? > > To Unsubscribe: send mail to [EMAIL PROTECTED] > with "unsubscribe freebsd-current" in the body of the message -- Paul Saab Technical Yahoo [EMAIL PROTECTED] - [EMAIL PROTECTED] - [EMAIL PROTECTED] Do You .. uhh .. Yahoo!? To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message
Re: Best way to get max KVA setting?
Terry Lambert ([EMAIL PROTECTED]) wrote: > It was for a guy who was was running with PAE enabled on an > 8G machine, and the autotuning was shooting him in the foot > when it tried to grab enough memory to create kmem_map entries > for the 8G of RAM in his 2G KVA space, and its head exploded. Wrong, the big problem he had with the auto tuning code was that vm_kmem_size was overflowing and he was left with a 20MB kmem_map size instead of 200. Once alc fixed the the scaling for # of vnodes, or if we set maxvnodes to a sane value, we no longer saw panics due to kmem_map being too small. --- revision 1.126 date: 2003/06/11 05:18:59; author: ps; state: Exp; lines: +4 -4 Don't overflow when calculating vm_kmem_size. This fixes kmem_map too small panics on PAE machines which have odd > 4GB sizes (4.5 gig would render a 20MB of KVA for kmem_map instead of 200MB). Submitted by: John Cagle <[EMAIL PROTECTED]>, jeff Reviewed by:jeff, peter, scottl, lots of USENIX folks --- ___ [EMAIL PROTECTED] mailing list http://lists.freebsd.org/mailman/listinfo/freebsd-current To unsubscribe, send any mail to "[EMAIL PROTECTED]"
Re: Status of cross releases
Ruslan Ermilov ([EMAIL PROTECTED]) wrote: > I would also appreciate if someone could provide me with accounts > on sparc64 and ia64 boxes running 5.0-CURRENT, so I could polish > and actually test some changes. We are not allowed to provide general access to the current ia64 hardware we have because its all pre-production stuff so it may perform "poorly" in benchmarks. I am expecting a 4way McKinley system this coming week and once we make sure that it works properly, i have been given permission to put it into the FreeBSD cluster so others can work on it. To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message