From owner-freebsd-alpha Sun Feb 23 0:12:46 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C265437B401 for ; Sun, 23 Feb 2003 00:12:36 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 792CF43FA3 for ; Sun, 23 Feb 2003 00:12:35 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1N8CZ1o033539 for ; Sun, 23 Feb 2003 00:12:35 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1N8CZSa052178 for ; Sun, 23 Feb 2003 00:12:35 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1N8CYBW052177 for alpha@FreeBSD.org; Sun, 23 Feb 2003 00:12:34 -0800 (PST) (envelope-from marcel) Date: Sun, 23 Feb 2003 00:12:34 -0800 From: Marcel Moolenaar To: alpha@FreeBSD.org Subject: Removing support for SimOS Message-ID: <20030223081234.GA37539@athlon.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="C7zPtVaVf+AK4Oqc" Content-Disposition: inline User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Gang, Attached the patches to remove support for running under the SimOS simulator. These patches are accompanied by the removal of the following files: sys/pci/simos.c sys/pci/simos.h Please review, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net --C7zPtVaVf+AK4Oqc Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="alpha.diff" Index: alpha/alpha/dec_kn8ae.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/alpha/dec_kn8ae.c,v retrieving revision 1.11 diff -u -r1.11 dec_kn8ae.c --- alpha/alpha/dec_kn8ae.c 8 Dec 2000 22:11:08 -0000 1.11 +++ alpha/alpha/dec_kn8ae.c 23 Feb 2003 07:49:07 -0000 @@ -31,8 +31,6 @@ * SUCH DAMAGE. */ -#include "opt_simos.h" - #include #include #include Index: alpha/alpha/machdep.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/alpha/machdep.c,v retrieving revision 1.195 diff -u -r1.195 machdep.c --- alpha/alpha/machdep.c 20 Feb 2003 20:54:42 -0000 1.195 +++ alpha/alpha/machdep.c 23 Feb 2003 07:45:02 -0000 @@ -90,7 +90,6 @@ #include "opt_compat.h" #include "opt_ddb.h" -#include "opt_simos.h" #include "opt_msgbuf.h" #include "opt_maxmem.h" @@ -477,27 +476,13 @@ nobootinfo: bootinfo.ssym = (u_long)&_end; bootinfo.esym = (u_long)&_end; -#ifdef SIMOS - { - char* p = (char*)bootinfo.ssym + 8; - if (p[EI_MAG0] == ELFMAG0 - && p[EI_MAG1] == ELFMAG1 - && p[EI_MAG2] == ELFMAG2 - && p[EI_MAG3] == ELFMAG3) { - bootinfo.ssym = (u_long) p; - bootinfo.esym = (u_long)p + *(u_long*)(p - 8); - } - } -#endif bootinfo.hwrpb_phys = ((struct rpb *)HWRPB_ADDR)->rpb_phys; bootinfo.hwrpb_size = ((struct rpb *)HWRPB_ADDR)->rpb_size; init_prom_interface((struct rpb *)HWRPB_ADDR); prom_getenv(PROM_E_BOOTED_OSFLAGS, bootinfo.boot_flags, sizeof bootinfo.boot_flags); -#ifndef SIMOS prom_getenv(PROM_E_BOOTED_FILE, bootinfo.booted_kernel, sizeof bootinfo.booted_kernel); -#endif prom_getenv(PROM_E_BOOTED_DEV, bootinfo.booted_dev, sizeof bootinfo.booted_dev); } @@ -634,12 +619,6 @@ kernstartpfn = atop(ALPHA_K0SEG_TO_PHYS(kernstart)); kernendpfn = atop(ALPHA_K0SEG_TO_PHYS(kernend)); -#ifdef SIMOS - /* - * SimOS console puts the bootstrap stack after kernel - */ - kernendpfn += 4; -#endif /* * Find out how much memory is available, by looking at @@ -1092,7 +1071,6 @@ void DELAY(int n) { -#ifndef SIMOS unsigned long pcc0, pcc1, curcycle, cycles; int usec; @@ -1129,7 +1107,6 @@ } pcc0 = pcc1; } -#endif } /* Index: alpha/alpha/prom.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/alpha/prom.c,v retrieving revision 1.25 diff -u -r1.25 prom.c --- alpha/alpha/prom.c 20 Feb 2003 20:54:42 -0000 1.25 +++ alpha/alpha/prom.c 23 Feb 2003 07:45:47 -0000 @@ -27,8 +27,6 @@ * $FreeBSD: src/sys/alpha/alpha/prom.c,v 1.25 2003/02/20 20:54:42 phk Exp $ */ -#include "opt_simos.h" - #include /* RCS ID & Copyright macro defns */ /* __KERNEL_RCSID(0, "$NetBSD: prom.c,v 1.22 1998/02/27 04:03:00 thorpej Exp $"); */ @@ -99,18 +97,12 @@ void init_bootstrap_console() { -#ifndef SIMOS char buf[4]; -#endif init_prom_interface(hwrpb); -#ifdef SIMOS - alpha_console = 0; -#else prom_getenv(PROM_E_TTY_DEV, buf, 4); alpha_console = buf[0] - '0'; -#endif promcnattach(alpha_console); } @@ -194,20 +186,6 @@ s = intr_disable(); if (!prom_mapped) { -#ifdef SIMOS - /* - * SimOS console uses floating point. - */ - if (curthread != PCPU_GET(fpcurthread)) { - alpha_pal_wrfen(1); - if (PCPU_GET(fpcurthread)) { - savefpstate(&PCPU_GET(fpcurthread)->td_pcb->pcb_fp); - PCPU_GET(fpcurthread)->td_pcb->pcb_hw.apcb_flags &= ~ALPHA_PCB_FLAGS_FEN; - } - PCPU_SET(fpcurthread, curthread); - restorefpstate(&PCPU_GET(fpcurthread)->td_pcb->pcb_fp); - } -#endif if (!pmap_uses_prom_console()) panic("enter_prom"); lev1map = rom_lev1map(); /* XXX */ Index: alpha/alpha/trap.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/alpha/trap.c,v retrieving revision 1.105 diff -u -r1.105 trap.c --- alpha/alpha/trap.c 17 Feb 2003 02:19:57 -0000 1.105 +++ alpha/alpha/trap.c 23 Feb 2003 07:43:59 -0000 @@ -31,7 +31,6 @@ /* #include "opt_fix_unaligned_vax_fp.h" */ #include "opt_ddb.h" #include "opt_ktrace.h" -#include "opt_simos.h" #include #include @@ -380,11 +379,7 @@ * might have set a breakpoint. */ if (a0 == ALPHA_IF_CODE_BUGCHK || - a0 == ALPHA_IF_CODE_BPT -#ifdef SIMOS - || a0 == ALPHA_IF_CODE_GENTRAP -#endif - ) { + a0 == ALPHA_IF_CODE_BPT) { if (kdb_trap(a0, a1, a2, entry, framep)) goto out; } Index: alpha/conf/NOTES =================================================================== RCS file: /home/ncvs/src/sys/alpha/conf/NOTES,v retrieving revision 1.147 diff -u -r1.147 NOTES --- alpha/conf/NOTES 23 Jul 2002 06:36:23 -0000 1.147 +++ alpha/conf/NOTES 23 Feb 2003 07:51:55 -0000 @@ -66,7 +66,3 @@ ##################################################################### # SIMULATOR OPTIONS - -# Include support for running under the SIMOS simulator. -device simos -options SIMOS Index: alpha/include/db_machdep.h =================================================================== RCS file: /home/ncvs/src/sys/alpha/include/db_machdep.h,v retrieving revision 1.6 diff -u -r1.6 db_machdep.h --- alpha/include/db_machdep.h 20 Mar 2002 18:58:45 -0000 1.6 +++ alpha/include/db_machdep.h 23 Feb 2003 07:48:25 -0000 @@ -36,7 +36,6 @@ */ #include "opt_ddb.h" -#include "opt_simos.h" #include #include @@ -55,11 +54,7 @@ #define PC_REGS(regs) ((db_addr_t)(regs)->tf_regs[FRAME_PC]) -#ifdef SIMOS -#define BKPT_INST 0x000000aa /* gentrap instruction */ -#else #define BKPT_INST 0x00000080 /* breakpoint instruction */ -#endif #define BKPT_SIZE (4) /* size of breakpoint inst */ #define BKPT_SET(inst) (BKPT_INST) @@ -67,13 +62,8 @@ (ddb_regs.tf_regs[FRAME_PC] -= BKPT_SIZE); #define SOFTWARE_SSTEP 1 /* no hardware support */ -#ifdef SIMOS -#define IS_BREAKPOINT_TRAP(type, code) ((type) == ALPHA_KENTRY_IF && \ - (code) == ALPHA_IF_CODE_GENTRAP) -#else #define IS_BREAKPOINT_TRAP(type, code) ((type) == ALPHA_KENTRY_IF && \ (code) == ALPHA_IF_CODE_BPT) -#endif #define IS_WATCHPOINT_TRAP(type, code) 0 /* Index: alpha/tlsb/dwlpx.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/tlsb/dwlpx.c,v retrieving revision 1.23 diff -u -r1.23 dwlpx.c --- alpha/tlsb/dwlpx.c 8 Nov 2002 20:52:21 -0000 1.23 +++ alpha/tlsb/dwlpx.c 23 Feb 2003 07:46:40 -0000 @@ -58,8 +58,6 @@ * SUCH DAMAGE. */ -#include "opt_simos.h" - #include #include #include @@ -123,11 +121,7 @@ static driver_intr_t dwlpx_intr; static u_int32_t imaskcache[DWLPX_NIONODE][DWLPX_NHOSE][NHPC]; -#ifdef SIMOS -extern void simos_intr(int); -#else static void dwlpx_eintr(unsigned long); -#endif /* * Direct-mapped window: 2G at 2G @@ -745,16 +739,6 @@ /* */ -#ifdef SIMOS -static void -dwlpx_intr(void *arg) -{ - - simos_intr(0); -} - -#else /* !SIMOS */ - static void dwlpx_intr(void *arg) { @@ -842,7 +826,6 @@ REGVAL(PCIA_ERR(i) + sc->sysbase) = hpcs[i].err; } } -#endif /* SIMOS */ static device_method_t dwlpx_methods[] = { /* Device interface */ Index: alpha/tlsb/tlsb.c =================================================================== RCS file: /home/ncvs/src/sys/alpha/tlsb/tlsb.c,v retrieving revision 1.13 diff -u -r1.13 tlsb.c --- alpha/tlsb/tlsb.c 10 May 2001 07:08:03 -0000 1.13 +++ alpha/tlsb/tlsb.c 23 Feb 2003 07:47:07 -0000 @@ -36,8 +36,6 @@ * found on AlphaServer 8200 and 8400 systems. */ -#include "opt_simos.h" - #include #include #include @@ -130,19 +128,9 @@ /* * Check for invalid address. */ -#ifdef SIMOS - if (node != 0 && node != 8) { - continue; - } else if (node == 0) { - tldev = TLDEV_DTYPE_SCPU4; - } else { - tldev = TLDEV_DTYPE_KFTIA; - } -#else if (badaddr(TLSB_NODE_REG_ADDR(node, TLDEV), sizeof(u_int32_t))) continue; tldev = TLSB_GET_NODEREG(node, TLDEV); -#endif if (tldev == 0) { /* Nothing at this node. */ continue; Index: conf/files =================================================================== RCS file: /home/ncvs/src/sys/conf/files,v retrieving revision 1.760 diff -u -r1.760 files --- conf/files 20 Feb 2003 20:02:32 -0000 1.760 +++ conf/files 23 Feb 2003 08:01:11 -0000 @@ -1501,7 +1501,6 @@ pci/intpm.c optional intpm pci/meteor.c count meteor pci nowerror pci/ncr.c optional ncr -pci/simos.c optional simos nowerror pci/viapm.c optional viapm pci/xrpu.c optional xrpu posix4/ksched.c optional _kposix_priority_scheduling Index: conf/options =================================================================== RCS file: /home/ncvs/src/sys/conf/options,v retrieving revision 1.373 diff -u -r1.373 options --- conf/options 5 Feb 2003 21:02:56 -0000 1.373 +++ conf/options 23 Feb 2003 07:49:47 -0000 @@ -528,9 +528,6 @@ BREAK_TO_DEBUGGER opt_comconsole.h ALT_BREAK_TO_DEBUGGER opt_comconsole.h -# Include tweaks for running under the SimOS machine simulator. -SIMOS opt_simos.h - # options for bus/device framework BUS_DEBUG opt_bus.h Index: modules/osf1/Makefile =================================================================== RCS file: /home/ncvs/src/sys/modules/osf1/Makefile,v retrieving revision 1.10 diff -u -r1.10 Makefile --- modules/osf1/Makefile 18 Aug 2002 05:45:10 -0000 1.10 +++ modules/osf1/Makefile 23 Feb 2003 08:01:38 -0000 @@ -7,8 +7,8 @@ KMOD= osf1 SRCS= osf1_ioctl.c osf1_misc.c osf1_signal.c osf1_sysent.c \ osf1_mount.c imgact_osf1.c osf1_sysvec.c opt_compat.h \ - opt_simos.h opt_ddb.h opt_mac.h opt_nfs.h device_if.h \ - bus_if.h vnode_if.h + opt_ddb.h opt_mac.h opt_nfs.h device_if.h bus_if.h \ + vnode_if.h #CFLAGS+= -g --C7zPtVaVf+AK4Oqc-- To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 0:47: 8 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B19C237B401 for ; Sun, 23 Feb 2003 00:47:07 -0800 (PST) Received: from stork.mail.pas.earthlink.net (stork.mail.pas.earthlink.net [207.217.120.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 32A2E43FB1 for ; Sun, 23 Feb 2003 00:47:07 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0405.cvx40-bradley.dialup.earthlink.net ([216.244.43.150] helo=mindspring.com) by stork.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18mrml-0006h8-00; Sun, 23 Feb 2003 00:47:00 -0800 Message-ID: <3E5889FD.56474AC7@mindspring.com> Date: Sun, 23 Feb 2003 00:44:45 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Marcel Moolenaar Cc: alpha@FreeBSD.org Subject: Re: Removing support for SimOS References: <20030223081234.GA37539@athlon.pn.xcllnt.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a421d7f1cfc20fe28c07fdf77fa6585db2667c3043c0873f7e350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Marcel Moolenaar wrote: > Attached the patches to remove support for running under the SimOS > simulator. These patches are accompanied by the removal of the > following files: > sys/pci/simos.c > sys/pci/simos.h > > Please review, Do you just hate SimOS, or are they pro Al Qaeda, or what? -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 2: 2:47 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 231F437B401 for ; Sun, 23 Feb 2003 02:02:46 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4A5FA43FAF for ; Sun, 23 Feb 2003 02:02:45 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1NA2i1o033950; Sun, 23 Feb 2003 02:02:44 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1NA2iSa052690; Sun, 23 Feb 2003 02:02:44 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1NA2iCj052689; Sun, 23 Feb 2003 02:02:44 -0800 (PST) (envelope-from marcel) Date: Sun, 23 Feb 2003 02:02:44 -0800 From: Marcel Moolenaar To: Terry Lambert Cc: alpha@FreeBSD.org Subject: Re: Removing support for SimOS Message-ID: <20030223100244.GB52621@athlon.pn.xcllnt.net> References: <20030223081234.GA37539@athlon.pn.xcllnt.net> <3E5889FD.56474AC7@mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E5889FD.56474AC7@mindspring.com> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Feb 23, 2003 at 12:44:45AM -0800, Terry Lambert wrote: > Marcel Moolenaar wrote: > > Attached the patches to remove support for running under the SimOS > > simulator. These patches are accompanied by the removal of the > > following files: > > sys/pci/simos.c > > sys/pci/simos.h > > > > Please review, > > Do you just hate SimOS, or are they pro Al Qaeda, or what? Thanks Terry! I knew I could count on your support, -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 2: 7:25 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0304E37B401 for ; Sun, 23 Feb 2003 02:07:25 -0800 (PST) Received: from web80404.mail.yahoo.com (web80404.mail.yahoo.com [66.218.79.59]) by mx1.FreeBSD.org (Postfix) with SMTP id B29D443FE9 for ; Sun, 23 Feb 2003 02:07:24 -0800 (PST) (envelope-from dmontal2@yahoo.com) Message-ID: <20030223100724.62733.qmail@web80404.mail.yahoo.com> Received: from [66.27.122.117] by web80404.mail.yahoo.com via HTTP; Sun, 23 Feb 2003 02:07:24 PST Date: Sun, 23 Feb 2003 02:07:24 -0800 (PST) From: Diego Montalvo Subject: a new project! To: freebsd-alpha@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org FreeBSD, I am wanting to build a new FreeBSD UI, 100% FreeBSD complaint, but this distubution, will allow the average joe to use the os like windows or redhat. I am seeking help! Anyone interested please contact. Lots more details to be revealed! Diego Montalvo www.earthoid.com __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 2:10:25 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 1E76137B401 for ; Sun, 23 Feb 2003 02:10:24 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id E334643FAF for ; Sun, 23 Feb 2003 02:10:22 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1NAALgL021604; Sun, 23 Feb 2003 11:10:21 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1NAALHb021603; Sun, 23 Feb 2003 11:10:21 +0100 (CET) Date: Sun, 23 Feb 2003 11:10:21 +0100 From: Wilko Bulte To: Marcel Moolenaar Cc: Terry Lambert , alpha@FreeBSD.ORG Subject: Re: Removing support for SimOS Message-ID: <20030223111021.A21585@freebie.xs4all.nl> References: <20030223081234.GA37539@athlon.pn.xcllnt.net> <3E5889FD.56474AC7@mindspring.com> <20030223100244.GB52621@athlon.pn.xcllnt.net> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: <20030223100244.GB52621@athlon.pn.xcllnt.net>; from marcel@xcllnt.net on Sun, Feb 23, 2003 at 02:02:44AM -0800 X-OS: FreeBSD 4.7-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Feb 23, 2003 at 02:02:44AM -0800, Marcel Moolenaar wrote: > On Sun, Feb 23, 2003 at 12:44:45AM -0800, Terry Lambert wrote: > > Marcel Moolenaar wrote: > > > Attached the patches to remove support for running under the SimOS > > > simulator. These patches are accompanied by the removal of the > > > following files: > > > sys/pci/simos.c > > > sys/pci/simos.h > > > > > > Please review, > > > > Do you just hate SimOS, or are they pro Al Qaeda, or what? > > Thanks Terry! I knew I could count on your support, Ah well Marcel, live in the ivory tower is always better ;) -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 2:27:39 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8698737B401 for ; Sun, 23 Feb 2003 02:27:38 -0800 (PST) Received: from bluejay.mail.pas.earthlink.net (bluejay.mail.pas.earthlink.net [207.217.120.218]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2022C43FBD for ; Sun, 23 Feb 2003 02:27:38 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0405.cvx40-bradley.dialup.earthlink.net ([216.244.43.150] helo=mindspring.com) by bluejay.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18mtM8-0004oT-00; Sun, 23 Feb 2003 02:27:37 -0800 Message-ID: <3E58A06B.B09B99B6@mindspring.com> Date: Sun, 23 Feb 2003 02:20:27 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Marcel Moolenaar Cc: alpha@FreeBSD.org Subject: Re: Removing support for SimOS References: <20030223081234.GA37539@athlon.pn.xcllnt.net> <3E5889FD.56474AC7@mindspring.com> <20030223100244.GB52621@athlon.pn.xcllnt.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a4d2aef84be1c5505cd988f6a52d628977a7ce0e8f8d31aa3f350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Marcel Moolenaar wrote: > On Sun, Feb 23, 2003 at 12:44:45AM -0800, Terry Lambert wrote: > > Marcel Moolenaar wrote: > > > Attached the patches to remove support for running under the SimOS > > > simulator. These patches are accompanied by the removal of the > > > following files: > > > sys/pci/simos.c > > > sys/pci/simos.h > > > > > > Please review, > > > > Do you just hate SimOS, or are they pro Al Qaeda, or what? > > Thanks Terry! I knew I could count on your support, I'm just wondering why you are removing support for something that apparently works, to make it not work? It's always weird when someone removes a feature, instead of adding one, with no explanation other than "please review these patches which remove this feature"... -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 2:35:26 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 17AB337B401 for ; Sun, 23 Feb 2003 02:35:26 -0800 (PST) Received: from web80403.mail.yahoo.com (web80403.mail.yahoo.com [66.218.79.58]) by mx1.FreeBSD.org (Postfix) with SMTP id C889A43FE1 for ; Sun, 23 Feb 2003 02:35:25 -0800 (PST) (envelope-from dmontal2@yahoo.com) Message-ID: <20030223103525.67621.qmail@web80403.mail.yahoo.com> Received: from [66.27.122.117] by web80403.mail.yahoo.com via HTTP; Sun, 23 Feb 2003 02:35:25 PST Date: Sun, 23 Feb 2003 02:35:25 -0800 (PST) From: Diego Montalvo Subject: blue lagoon! To: freebsd-alpha@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org FreeBSD, I forgot to mention, I have the hardware for the new UI. I am willing to donate about 5 servers. Diego Montalvo www.earthoid.com __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 7:20:17 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7277A37B401 for ; Sun, 23 Feb 2003 07:20:15 -0800 (PST) Received: from smtp.comcast.net (smtp.comcast.net [24.153.64.2]) by mx1.FreeBSD.org (Postfix) with ESMTP id BCAF943FAF for ; Sun, 23 Feb 2003 07:20:14 -0800 (PST) (envelope-from msmith@code-fu.com) Received: from code-fu.com (pcp711718pcs.alxndr01.va.comcast.net [68.50.73.228]) by mtaout05.icomcast.net (iPlanet Messaging Server 5.2 HotFix 1.09 (built Jan 7 2003)) with ESMTP id <0HAR002ZUP9P6O@mtaout05.icomcast.net> for alpha@FreeBSD.ORG; Sun, 23 Feb 2003 10:20:14 -0500 (EST) Date: Sun, 23 Feb 2003 10:20:12 -0500 From: "Michael A. Smith" Subject: make: don't know how to make /usr/src/sys/sys/_types.h To: alpha@FreeBSD.ORG Message-id: <3E58E6AC.2050401@code-fu.com> MIME-version: 1.0 Content-type: text/plain; charset=us-ascii; format=flowed Content-transfer-encoding: 7BIT X-Accept-Language: en-us, en User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030202 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm trying to update the system on my DEC Server 3000. It's running 4.6-STABLE. I tried updating it to 50, but had troubles making the kernel. Then I tried going back to 4.X (actually 4.7) and had the same or similar problem. Each time I've tried to build a new version, I delete /usr/src and cvsup the new (or old) source tree from scratch. No, I'm trying to build 4.6.2 and here's what I get when compiling the kernel: cc -O -pipe -I/usr/include -I. -c aicasm_macro_scan.c cc -O -pipe -I/usr/include -I. -o aicasm aicasm.o aicasm_symbol.o aicasm_gram.o aicasm_macro_gram.o aicasm_scan.o aicasm_macro_scan.o -ll cd /usr/obj/usr/src/sys/ZEUS; MAKEOBJDIRPREFIX=/usr/obj MACHINE_ARCH=alpha MACHINE=alpha OBJFORMAT_PATH=/usr/obj/usr/src/alpha/usr/libexec PERL5LIB=/usr/obj/usr/src/alpha/usr/libdata/perl/5.00503 GROFF_BIN_PATH=/usr/obj/usr/src/alpha/usr/bin GROFF_FONT_PATH=/usr/obj/usr/src/alpha/usr/share/groff_font GROFF_TMAC_PATH=/usr/obj/usr/src/alpha/usr/share/tmac DESTDIR=/usr/obj/usr/src/alpha INSTALL="sh /usr/src/tools/install.sh" PATH=/usr/obj/usr/src/alpha/usr/sbin:/usr/obj/usr/src/alpha/usr/bin:/usr/obj/usr/src/alpha/usr/games:/sbin:/bin:/usr/sbin:/usr/bin OBJFORMAT_PATH=/usr/obj/usr/src/alpha/usr/libexec:/usr/libexec make KERNEL=kernel depend make: don't know how to make /usr/src/sys/sys/_types.h. Stop *** Error code 2 Stop in /usr/src. *** Error code 1 Stop in /usr/src. I didn't write down details of the failed 5.0 and 4.7 builds, but my memory tells me they were the same as this (or nearly so). I've never had any problem keeping this machine up-to-date until now. It started as a 4.3 machine and has been completely updated several times. Seaching the mailing list archives has gotten me nowhere. Any clues? -- Michael A. Smith Programmer at Large To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 9: 1:49 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B543E37B401 for ; Sun, 23 Feb 2003 09:01:48 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id BE6A243F93 for ; Sun, 23 Feb 2003 09:01:47 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id B492A530A; Sun, 23 Feb 2003 18:01:45 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: alpha@freebsd.org Subject: VGA console From: Dag-Erling Smorgrav Date: Sun, 23 Feb 2003 18:01:45 +0100 Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I had a spare ET6000 lying around, so I stuffed it in my PWS to see what would happen. The machine boots fine, and I can use VGA virtual consoles in multi-user mode, but the SRM and the boot loader insist on using the serial console. I assume this is because the SRM doesn't recognize the ET6000. Is there a knob I can tweak to make it use the ET6000, or will I have to get a Matrox card if I want a VGA console? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 9:54:51 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4228D37B401 for ; Sun, 23 Feb 2003 09:54:50 -0800 (PST) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5102E43FBF for ; Sun, 23 Feb 2003 09:54:46 -0800 (PST) (envelope-from ticso@cicely9.cicely.de) Received: from cicely5.cicely.de (cicely5.cicely.de [IPv6:3ffe:400:8d0:301:200:92ff:fe9b:20e7]) by srv1.cosmo-project.de (8.12.5/8.12.5) with ESMTP id h1NHsRUc096226 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Sun, 23 Feb 2003 18:54:32 +0100 (CET) (envelope-from ticso@cicely9.cicely.de) Received: from cicely9.cicely.de (cicely9.cicely.de [IPv6:3ffe:400:8d0:301:210:5aff:fe30:1c1a]) by cicely5.cicely.de (8.12.6/8.12.6) with ESMTP id h1NHsPFO023216 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Sun, 23 Feb 2003 18:54:25 +0100 (CET) (envelope-from ticso@cicely9.cicely.de) Received: from cicely9.cicely.de (localhost [127.0.0.1]) by cicely9.cicely.de (8.12.6/8.12.6) with ESMTP id h1NHsOXW089833; Sun, 23 Feb 2003 18:54:24 +0100 (CET) (envelope-from ticso@cicely9.cicely.de) Received: (from ticso@localhost) by cicely9.cicely.de (8.12.6/8.12.6/Submit) id h1NHsMaH089832; Sun, 23 Feb 2003 18:54:22 +0100 (CET) Date: Sun, 23 Feb 2003 18:54:21 +0100 From: Bernd Walter To: "Michael A. Smith" Cc: alpha@FreeBSD.ORG Subject: Re: make: don't know how to make /usr/src/sys/sys/_types.h Message-ID: <20030223175420.GE65535@cicely9.cicely.de> Reply-To: ticso@cicely.de References: <3E58E6AC.2050401@code-fu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E58E6AC.2050401@code-fu.com> X-Operating-System: FreeBSD cicely9.cicely.de 5.0-CURRENT alpha User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Feb 23, 2003 at 10:20:12AM -0500, Michael A. Smith wrote: > I'm trying to update the system on my DEC Server 3000. It's running > 4.6-STABLE. I tried updating it to 50, but had troubles making the > kernel. Then I tried going back to 4.X (actually 4.7) and had the same > or similar problem. Each time I've tried to build a new version, I > delete /usr/src and cvsup the new (or old) source tree from scratch. You should update to the latest -stable and then update to 5.0. Updating directly with an older version might not work. > No, I'm trying to build 4.6.2 and here's what I get when compiling the > kernel: > > > cc -O -pipe -I/usr/include -I. -c aicasm_macro_scan.c > cc -O -pipe -I/usr/include -I. -o aicasm aicasm.o aicasm_symbol.o > aicasm_gram.o aicasm_macro_gram.o aicasm_scan.o aicasm_macro_scan.o -ll > cd /usr/obj/usr/src/sys/ZEUS; MAKEOBJDIRPREFIX=/usr/obj > MACHINE_ARCH=alpha MACHINE=alpha > OBJFORMAT_PATH=/usr/obj/usr/src/alpha/usr/libexec > PERL5LIB=/usr/obj/usr/src/alpha/usr/libdata/perl/5.00503 > GROFF_BIN_PATH=/usr/obj/usr/src/alpha/usr/bin > GROFF_FONT_PATH=/usr/obj/usr/src/alpha/usr/share/groff_font > GROFF_TMAC_PATH=/usr/obj/usr/src/alpha/usr/share/tmac > DESTDIR=/usr/obj/usr/src/alpha INSTALL="sh /usr/src/tools/install.sh" > PATH=/usr/obj/usr/src/alpha/usr/sbin:/usr/obj/usr/src/alpha/usr/bin:/usr/obj/usr/src/alpha/usr/games:/sbin:/bin:/usr/sbin:/usr/bin > OBJFORMAT_PATH=/usr/obj/usr/src/alpha/usr/libexec:/usr/libexec make > KERNEL=kernel depend > make: don't know how to make /usr/src/sys/sys/_types.h. Stop > *** Error code 2 Did you run buildworld first? Otherwise you don't have updated tools in /usr/obj to run buildkernel. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 10:18:44 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C5BC437B406 for ; Sun, 23 Feb 2003 10:18:41 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id 42ED643FD7 for ; Sun, 23 Feb 2003 10:18:40 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1NIIcgL023515; Sun, 23 Feb 2003 19:18:38 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1NIIcpu023514; Sun, 23 Feb 2003 19:18:38 +0100 (CET) Date: Sun, 23 Feb 2003 19:18:38 +0100 From: Wilko Bulte To: Dag-Erling Smorgrav Cc: alpha@FreeBSD.ORG Subject: Re: VGA console Message-ID: <20030223191838.A23491@freebie.xs4all.nl> References: Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Sun, Feb 23, 2003 at 06:01:45PM +0100 X-OS: FreeBSD 4.7-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Feb 23, 2003 at 06:01:45PM +0100, Dag-Erling Smorgrav wrote: > I had a spare ET6000 lying around, so I stuffed it in my PWS to see > what would happen. The machine boots fine, and I can use VGA virtual > consoles in multi-user mode, but the SRM and the boot loader insist on > using the serial console. I assume this is because the SRM doesn't > recognize the ET6000. Is there a knob I can tweak to make it use the > ET6000, or will I have to get a Matrox card if I want a VGA console? Have you set >>> SET CONSOLE GRAPHICS ? -- | / o / /_ _ wilko@FreeBSD.org |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 11:39: 1 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D011237B401 for ; Sun, 23 Feb 2003 11:39:00 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA9BA43FBD for ; Sun, 23 Feb 2003 11:38:59 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1NJcx1o036582; Sun, 23 Feb 2003 11:38:59 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1NJcx3U000583; Sun, 23 Feb 2003 11:38:59 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1NJcxEL000582; Sun, 23 Feb 2003 11:38:59 -0800 (PST) (envelope-from marcel) Date: Sun, 23 Feb 2003 11:38:58 -0800 From: Marcel Moolenaar To: Terry Lambert Cc: alpha@FreeBSD.org Subject: Re: Removing support for SimOS Message-ID: <20030223193858.GA564@athlon.pn.xcllnt.net> References: <20030223081234.GA37539@athlon.pn.xcllnt.net> <3E5889FD.56474AC7@mindspring.com> <20030223100244.GB52621@athlon.pn.xcllnt.net> <3E58A06B.B09B99B6@mindspring.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E58A06B.B09B99B6@mindspring.com> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Feb 23, 2003 at 02:20:27AM -0800, Terry Lambert wrote: > > I'm just wondering why you are removing support for something that > apparently works, to make it not work? It already doesn't work and there's no indication that there's an interest in making it work again. In the mean time it's preventing LINT from linking and thus is getting in the way. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 11:55:11 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8BE5237B401 for ; Sun, 23 Feb 2003 11:55:10 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 37EF143FB1 for ; Sun, 23 Feb 2003 11:55:07 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1NJst1o036689; Sun, 23 Feb 2003 11:54:55 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1NJst3U000668; Sun, 23 Feb 2003 11:54:55 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1NJssKM000667; Sun, 23 Feb 2003 11:54:54 -0800 (PST) (envelope-from marcel) Date: Sun, 23 Feb 2003 11:54:54 -0800 From: Marcel Moolenaar To: "Michael A. Smith" Cc: alpha@FreeBSD.ORG Subject: Re: make: don't know how to make /usr/src/sys/sys/_types.h Message-ID: <20030223195454.GA654@athlon.pn.xcllnt.net> References: <3E58E6AC.2050401@code-fu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E58E6AC.2050401@code-fu.com> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Feb 23, 2003 at 10:20:12AM -0500, Michael A. Smith wrote: > No, I'm trying to build 4.6.2 and here's what I get when compiling the > kernel: > > > cc -O -pipe -I/usr/include -I. -c aicasm_macro_scan.c > cc -O -pipe -I/usr/include -I. -o aicasm aicasm.o aicasm_symbol.o > aicasm_gram.o aicasm_macro_gram.o aicasm_scan.o aicasm_macro_scan.o -ll > cd /usr/obj/usr/src/sys/ZEUS; MAKEOBJDIRPREFIX=/usr/obj > MACHINE_ARCH=alpha MACHINE=alpha > OBJFORMAT_PATH=/usr/obj/usr/src/alpha/usr/libexec > PERL5LIB=/usr/obj/usr/src/alpha/usr/libdata/perl/5.00503 > GROFF_BIN_PATH=/usr/obj/usr/src/alpha/usr/bin > GROFF_FONT_PATH=/usr/obj/usr/src/alpha/usr/share/groff_font > GROFF_TMAC_PATH=/usr/obj/usr/src/alpha/usr/share/tmac > DESTDIR=/usr/obj/usr/src/alpha INSTALL="sh /usr/src/tools/install.sh" > PATH=/usr/obj/usr/src/alpha/usr/sbin:/usr/obj/usr/src/alpha/usr/bin:/usr/obj/usr/src/alpha/usr/games:/sbin:/bin:/usr/sbin:/usr/bin > OBJFORMAT_PATH=/usr/obj/usr/src/alpha/usr/libexec:/usr/libexec make > KERNEL=kernel depend > make: don't know how to make /usr/src/sys/sys/_types.h. Stop > *** Error code 2 Probably a stale dependency. Try cleaning your object directory (or at least all the .depend files). -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 11:56:49 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7135937B401 for ; Sun, 23 Feb 2003 11:56:48 -0800 (PST) Received: from stork.mail.pas.earthlink.net (stork.mail.pas.earthlink.net [207.217.120.188]) by mx1.FreeBSD.org (Postfix) with ESMTP id 0554043FCB for ; Sun, 23 Feb 2003 11:56:48 -0800 (PST) (envelope-from tlambert2@mindspring.com) Received: from pool0262.cvx21-bradley.dialup.earthlink.net ([209.179.193.7] helo=mindspring.com) by stork.mail.pas.earthlink.net with asmtp (SSLv3:RC4-MD5:128) (Exim 3.33 #1) id 18n2Ew-0005s9-00; Sun, 23 Feb 2003 11:56:47 -0800 Message-ID: <3E59272E.83E8072D@mindspring.com> Date: Sun, 23 Feb 2003 11:55:26 -0800 From: Terry Lambert X-Mailer: Mozilla 4.79 [en] (Win98; U) X-Accept-Language: en MIME-Version: 1.0 To: Marcel Moolenaar Cc: alpha@FreeBSD.org Subject: Re: Removing support for SimOS References: <20030223081234.GA37539@athlon.pn.xcllnt.net> <3E5889FD.56474AC7@mindspring.com> <20030223100244.GB52621@athlon.pn.xcllnt.net> <3E58A06B.B09B99B6@mindspring.com> <20030223193858.GA564@athlon.pn.xcllnt.net> Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit X-ELNK-Trace: b1a02af9316fbb217a47c185c03b154d40683398e744b8a43118bec1cfee21b53690a34e58379378667c3043c0873f7e350badd9bab72f9c350badd9bab72f9c Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Marcel Moolenaar wrote: > On Sun, Feb 23, 2003 at 02:20:27AM -0800, Terry Lambert wrote: > > I'm just wondering why you are removing support for something that > > apparently works, to make it not work? > > It already doesn't work and there's no indication that there's an > interest in making it work again. In the mean time it's preventing > LINT from linking and thus is getting in the way. OK, so someone made a commit that broke LINT because it failed to maintain the SIMOS #ifdef'ed code. This makes a lot more sense to remove it, then (but reverting the commit that caused it to break also makes sense, to me...). -- Terry To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 13:42:57 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D8F4137B401 for ; Sun, 23 Feb 2003 13:42:56 -0800 (PST) Received: from web80406.mail.yahoo.com (web80406.mail.yahoo.com [66.218.79.61]) by mx1.FreeBSD.org (Postfix) with SMTP id 7BA0443F93 for ; Sun, 23 Feb 2003 13:42:56 -0800 (PST) (envelope-from dmontal2@yahoo.com) Message-ID: <20030223214256.29315.qmail@web80406.mail.yahoo.com> Received: from [66.27.122.117] by web80406.mail.yahoo.com via HTTP; Sun, 23 Feb 2003 13:42:56 PST Date: Sun, 23 Feb 2003 13:42:56 -0800 (PST) From: Diego Montalvo Subject: RE: blue lagoon - new bsd To: alpha@FreeBSD.ORG MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org jonathan, I am thinking x11 or GTK The graphical ui code named "blue lagoon" will automatically bootup when a cdrom is used as bootup. The "blue lagoon" distribution, will not only consist of a graphical setup interface, but it will also allow easier driver, port setup, x windows setup, etc... The kore will be FreeBSD, but the outside - installation layer will be "blue lagoon" I have worked on a graphical illustration, I can provide it upon request. Cheers, Diego Montalvo __________________________________________________ Do you Yahoo!? Yahoo! Mail Plus - Powerful. Affordable. Sign up now. http://mailplus.yahoo.com To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 13:57:42 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 4C0C937B405 for ; Sun, 23 Feb 2003 13:57:41 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id AF55943FB1 for ; Sun, 23 Feb 2003 13:57:40 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 0FD0D530D; Sun, 23 Feb 2003 22:57:39 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Diego Montalvo Cc: alpha@FreeBSD.ORG Subject: Re: blue lagoon - new bsd From: Dag-Erling Smorgrav Date: Sun, 23 Feb 2003 22:57:38 +0100 In-Reply-To: <20030223214256.29315.qmail@web80406.mail.yahoo.com> (Diego Montalvo's message of "Sun, 23 Feb 2003 13:42:56 -0800 (PST)") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <20030223214256.29315.qmail@web80406.mail.yahoo.com> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Diego Montalvo writes: > [...] Why are you posting this on freebsd-alpha? DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 13:59:20 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AB5E837B405 for ; Sun, 23 Feb 2003 13:59:19 -0800 (PST) Received: from flood.ping.uio.no (flood.ping.uio.no [129.240.78.31]) by mx1.FreeBSD.org (Postfix) with ESMTP id 594D243FBF for ; Sun, 23 Feb 2003 13:59:18 -0800 (PST) (envelope-from des@ofug.org) Received: by flood.ping.uio.no (Postfix, from userid 2602) id 772DC530C; Sun, 23 Feb 2003 22:59:17 +0100 (CET) X-URL: http://www.ofug.org/~des/ X-Disclaimer: The views expressed in this message do not necessarily coincide with those of any organisation or company with which I am or have been affiliated. To: Wilko Bulte Cc: alpha@FreeBSD.ORG Subject: Re: VGA console From: Dag-Erling Smorgrav Date: Sun, 23 Feb 2003 22:59:16 +0100 In-Reply-To: <20030223191838.A23491@freebie.xs4all.nl> (Wilko Bulte's message of "Sun, 23 Feb 2003 19:18:38 +0100") Message-ID: User-Agent: Gnus/5.090014 (Oort Gnus v0.14) Emacs/21.2 (i386--freebsd) References: <20030223191838.A23491@freebie.xs4all.nl> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Wilko Bulte writes: >>>> SET CONSOLE GRAPHICS That's probably it. I'll try it tomorrow. Oh, and I just found my copy of the SRM user's guide, so I'll stop asking stupid questions :) DES -- Dag-Erling Smorgrav - des@ofug.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 14: 2:51 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E75BB37B401 for ; Sun, 23 Feb 2003 14:02:50 -0800 (PST) Received: from freebie.xs4all.nl (freebie.xs4all.nl [213.84.32.253]) by mx1.FreeBSD.org (Postfix) with ESMTP id CFD9643FB1 for ; Sun, 23 Feb 2003 14:02:49 -0800 (PST) (envelope-from wkb@freebie.xs4all.nl) Received: from freebie.xs4all.nl (localhost [127.0.0.1]) by freebie.xs4all.nl (8.12.7/8.12.7) with ESMTP id h1NM2ngL025317; Sun, 23 Feb 2003 23:02:49 +0100 (CET) (envelope-from wkb@freebie.xs4all.nl) Received: (from wkb@localhost) by freebie.xs4all.nl (8.12.7/8.12.7/Submit) id h1NM2nc2025316; Sun, 23 Feb 2003 23:02:49 +0100 (CET) Date: Sun, 23 Feb 2003 23:02:49 +0100 From: Wilko Bulte To: Dag-Erling Smorgrav Cc: alpha@FreeBSD.ORG Subject: Re: VGA console Message-ID: <20030223230249.C25190@freebie.xs4all.nl> References: <20030223191838.A23491@freebie.xs4all.nl> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.2.5i In-Reply-To: ; from des@ofug.org on Sun, Feb 23, 2003 at 10:59:16PM +0100 X-OS: FreeBSD 4.7-STABLE X-PGP: finger wilko@freebsd.org Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Feb 23, 2003 at 10:59:16PM +0100, Dag-Erling Smorgrav wrote: > Wilko Bulte writes: > >>>> SET CONSOLE GRAPHICS > > That's probably it. I'll try it tomorrow. Oh, and I just found my > copy of the SRM user's guide, so I'll stop asking stupid questions :) Just read my interesting HARDWARE notes file for alpha. I wrote that for a purpose ;-P -- | / o / /_ _ wilko@tcja.nl - stichting TCJA, Arnhem |/|/ / / /( (_) Bulte To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 18:11:58 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2100A37B401 for ; Sun, 23 Feb 2003 18:11:57 -0800 (PST) Received: from mail.speakeasy.net (mail16.speakeasy.net [216.254.0.216]) by mx1.FreeBSD.org (Postfix) with ESMTP id 41EA743FE0 for ; Sun, 23 Feb 2003 18:11:56 -0800 (PST) (envelope-from msmith@code-fu.com) Received: (qmail 24188 invoked from network); 24 Feb 2003 02:12:09 -0000 Received: from unknown (HELO code-fu.com) (aunchaki@[66.92.151.60]) (envelope-sender ) by mail16.speakeasy.net (qmail-ldap-1.03) with RC4-MD5 encrypted SMTP for ; 24 Feb 2003 02:12:09 -0000 Message-ID: <3E597F64.7060902@code-fu.com> Date: Sun, 23 Feb 2003 21:11:48 -0500 From: "Michael A. Smith" User-Agent: Mozilla/5.0 (X11; U; FreeBSD i386; en-US; rv:1.2.1) Gecko/20030210 X-Accept-Language: en-us, en MIME-Version: 1.0 To: alpha@freebsd.org Subject: Re: make: don't know how to make /usr/src/sys/sys/_types.h [more details] References: <3E58E6AC.2050401@code-fu.com> <20030223195454.GA654@athlon.pn.xcllnt.net> In-Reply-To: <20030223195454.GA654@athlon.pn.xcllnt.net> Content-Type: text/plain; charset=us-ascii; format=flowed Content-Transfer-Encoding: 7bit Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Marcel Moolenaar wrote: > Probably a stale dependency. Try cleaning your object directory (or > at least all the .depend files). I've never done this before. How do I do it? [read below for more remembered details] Thanks! Bernd Walter wrote: > You should update to the latest -stable and then update to 5.0. > Updating directly with an older version might not work. I had the same problem trying to upgrade to RELEASE_4, which is why I tried to downgrade back to 4.6 (the last known good version on this box). > Did you run buildworld first? Otherwise you don't have updated tools > in /usr/obj to run buildkernel. Yup. I ran "make -j4 buildword" before "make buildkernel KERNCONF=ZEUS". In thinking this over, I *may* have remembered a clue to what's going on. I was wrong in the original post about getting this error when trying to upgrade to 5.0. World and kernel built and installed without error, but the machine wouldn't boot. I went back to kernel.old, modules.old and etc.old (I backup etc before running mergemaster). I then renamed kernel.old, modules.old and etc.old (to kernel, modules, and etc). I've rebooted several times without incident and everything seems to be running fine (except updating the system). THEN, I tried upgrading to RELEASE_4 (then 4.7) and THAT'S when I first saw the "make: don't know how to make /usr/src/sys/sys/_types.h" message when building the kernel. I'm thinking there MUST be tons of out-of-sync stuff in the system from when I ran "make installword" in the earlier 5.0 update. I went back to the old kernel, modules and etc, but everything else is out-of-sync. This might be causing this problem. This isn't a production machine, I can wipe and re-install, but I'd rathe rnot have to do it. -- Michael A. Smith Programmer at Large To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 18:23:51 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C0B4C37B401; Sun, 23 Feb 2003 18:23:48 -0800 (PST) Received: from p6m7g8.com (pcp02835904pcs.hyatsv01.md.comcast.net [68.54.254.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id 4D89743FA3; Sun, 23 Feb 2003 18:23:46 -0800 (PST) (envelope-from philip@p6m7g8.com) Received: from p6m7g8.com (localhost [127.0.0.1]) by p6m7g8.com (8.12.6/8.12.7) with ESMTP id h1NLNRQW066358; Sun, 23 Feb 2003 21:23:27 GMT (envelope-from philip@p6m7g8.com) Received: from localhost (localhost [[UNIX: localhost]]) by p6m7g8.com (8.12.6/8.12.7/Submit) id h1NLNRTP066355; Sun, 23 Feb 2003 21:23:27 GMT Content-Type: text/plain; charset="iso-8859-1" From: "Philip M. Gollucci" Organization: eJournalPress To: "Michael A. Smith" , alpha@freebsd.org Subject: Re: make: don't know how to make /usr/src/sys/sys/_types.h [more details Date: Sun, 23 Feb 2003 21:23:26 +0000 User-Agent: KMail/1.4.3 References: <3E58E6AC.2050401@code-fu.com> <20030223195454.GA654@athlon.pn.xcllnt.net> <3E597F64.7060902@code-fu.com> In-Reply-To: <3E597F64.7060902@code-fu.com> Cc: questions@freebsd.org MIME-Version: 1.0 Content-Transfer-Encoding: quoted-printable Message-Id: <200302232123.26921.philip@p6m7g8.com> Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org I'm cc'in this to quesitons since I had the same problem on an i386. I installed 5.0-RELEASE directly from the CDs. ran cvsup -g -L2 ports-supfile and standard-supfile make buildworld -DNOGAMES -DNO_FORTRAN make buildkernel -DNOGAMES -DNO_FORTRAN KERNCONF=3DPHILIP mergemaster -p make installkernel -DNOGAMES -DNO_FORTRAN KERNCONF=3DPHILIP make installworld -DNOGAMES -DNO_FORTRAN=20 mergemaster=20 the kernel targets work. and I am actually running that kernel 5.0-CURREN= T=20 RELEASE #3 right now.=20 the buildworld failes=20 make: don't know how to make /usr/src/sys/sys/_types.h"=20 Interestingly I haven't seen any tinderbox failures come through to any l= ists=20 about this yet. since I see it below, in addition to make doing it, I've run rm -rf /usr/= obj before doing the buildworld. On Monday 24 February 2003 02:11, Michael A. Smith wrote: > Marcel Moolenaar wrote: > > Probably a stale dependency. Try cleaning your object directory (or > > at least all the .depend files). > > I've never done this before. How do I do it? [read below for more > remembered details] > > Thanks! > > Bernd Walter wrote: > > You should update to the latest -stable and then update to 5.0. > > Updating directly with an older version might not work. > > I had the same problem trying to upgrade to RELEASE_4, which is why I > tried to downgrade back to 4.6 (the last known good version on this box= ). > > > Did you run buildworld first? Otherwise you don't have updated tools > > in /usr/obj to run buildkernel. > > Yup. I ran "make -j4 buildword" before "make buildkernel KERNCONF=3DZEU= S". > > > In thinking this over, I *may* have remembered a clue to what's going > on. I was wrong in the original post about getting this error when > trying to upgrade to 5.0. World and kernel built and installed without > error, but the machine wouldn't boot. I went back to kernel.old, > modules.old and etc.old (I backup etc before running mergemaster). I > then renamed kernel.old, modules.old and etc.old (to kernel, modules, > and etc). I've rebooted several times without incident and everything > seems to be running fine (except updating the system). > > THEN, I tried upgrading to RELEASE_4 (then 4.7) and THAT'S when I first > saw the "make: don't know how to make /usr/src/sys/sys/_types.h" messag= e > when building the kernel. > > I'm thinking there MUST be tons of out-of-sync stuff in the system from > when I ran "make installword" in the earlier 5.0 update. I went back to > the old kernel, modules and etc, but everything else is out-of-sync. > This might be causing this problem. This isn't a production machine, I > can wipe and re-install, but I'd rathe rnot have to do it. --=20 END=20 -------------------------------------------------------------------------= -----=20 Philip M. Gollucci philip@p6m7g8.com 301.474.9294 301.646.3011 (cell)=20 Science, Discovery, & the Universe (UMCP)=20 Webmaster & Webship Teacher=20 URL: http://www.sdu.umd.edu=20 eJournalPress=20 Database/PERL Programmer & System Admin=20 URL : http://www.ejournalpress.com=20 Resume : http://p6m7g8.net/Resume=20 To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Sun Feb 23 19:33:46 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D117E37B401 for ; Sun, 23 Feb 2003 19:33:44 -0800 (PST) Received: from ns1.xcllnt.net (209-128-86-226.BAYAREA.NET [209.128.86.226]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8A7BD43FBF for ; Sun, 23 Feb 2003 19:33:43 -0800 (PST) (envelope-from marcel@xcllnt.net) Received: from athlon.pn.xcllnt.net (athlon.pn.xcllnt.net [192.168.4.3]) by ns1.xcllnt.net (8.12.6/8.12.6) with ESMTP id h1O3Xa1o039264; Sun, 23 Feb 2003 19:33:36 -0800 (PST) (envelope-from marcel@piii.pn.xcllnt.net) Received: from athlon.pn.xcllnt.net (localhost [127.0.0.1]) by athlon.pn.xcllnt.net (8.12.7/8.12.7) with ESMTP id h1O3XZ3U018622; Sun, 23 Feb 2003 19:33:35 -0800 (PST) (envelope-from marcel@athlon.pn.xcllnt.net) Received: (from marcel@localhost) by athlon.pn.xcllnt.net (8.12.7/8.12.7/Submit) id h1O3XZMS018621; Sun, 23 Feb 2003 19:33:35 -0800 (PST) (envelope-from marcel) Date: Sun, 23 Feb 2003 19:33:35 -0800 From: Marcel Moolenaar To: "Michael A. Smith" Cc: alpha@FreeBSD.ORG Subject: Re: make: don't know how to make /usr/src/sys/sys/_types.h [more details] Message-ID: <20030224033335.GA17371@athlon.pn.xcllnt.net> References: <3E58E6AC.2050401@code-fu.com> <20030223195454.GA654@athlon.pn.xcllnt.net> <3E597F64.7060902@code-fu.com> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <3E597F64.7060902@code-fu.com> User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Sun, Feb 23, 2003 at 09:11:48PM -0500, Michael A. Smith wrote: > Marcel Moolenaar wrote: > >Probably a stale dependency. Try cleaning your object directory (or > >at least all the .depend files). > > I've never done this before. How do I do it? [read below for more > remembered details] Well, ``cd /usr/obj; rm -rf *'' normally does the trick :-) See also below. > THEN, I tried upgrading to RELEASE_4 (then 4.7) and THAT'S when I first > saw the "make: don't know how to make /usr/src/sys/sys/_types.h" message > when building the kernel. A ``make buildkernel'' uses bits prepared by a previous ``make buildworld''. If you change the source tree, without doing a ``make buildworld'' first, ``make buildkernel'' can fail because the object tree contains bits that do not match the source tree anymore. A ``make buildworld'' will do the trick. -- Marcel Moolenaar USPA: A-39004 marcel@xcllnt.net To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Mon Feb 24 10: 1:22 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 333F937B401 for ; Mon, 24 Feb 2003 10:01:17 -0800 (PST) Received: from chanintr.com (TruPPPv92-225-174.inet.co.th [203.151.225.174]) by mx1.FreeBSD.org (Postfix) with SMTP id 85C4443F3F for ; Mon, 24 Feb 2003 10:01:00 -0800 (PST) (envelope-from service@chanintr.com) Content-Type: text/html; charset="US-ASCII" Date: Tue, 25 Feb 2003 01:00:55 +0700 To: freebsd-alpha@freebsd.org From: service@chanintr.com X-Mailer: Version 5.0 Subject: Exclusive Preview for Preferred Customers Organization: Chanintr Fine Furnishings Message-Id: <20030224180100.85C4443F3F@mx1.FreeBSD.org> Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Chanintr exclusive Preview 01
 
WE ARE PLEASED TO ANNOUNCE THAT OUR NEWEST SHIPMENT HAS ARRIVED. PLEASE BE INVITED TO OUR EXCLUSIVE PREVIEW BETWEEN FEBRUARY 24 TILL MARCH 1, 2003.
AS BEING OUR PREFERRED CUSTOMERS, YOU WILL BE THE FIRST TO BE INTRODUCED TO OUR NEWLY ADJUSTED PRICING (ON NEW ARRIVALS ONLY). FIND OUT MORE AT OUR SHOWROOM.
 
RIBBON & BOWS OFFERS BEAUTIFULLY CRAFTED BEDROOM FURNISHINGS THAT CAN ADAPT TO YOUR DEVELOPING CHILD'S NEEDS.
01.TWIN BED (PANEL HEADBOARD,
FOOTBOARD, PANEL HEADBOARD RAILS)

W104 H122cm
Baht 24,940
02. NIGHT STAND
W64 D43 H61cm
Baht 16,340/pc
 
03. STUDENT DESK AND CHAIR ( DESK, HUTCH, CHAIR)
W107 D48 H190cm
Baht 58,910
04. TWIN BED WITH TRUNDLE FRONT
(PANEL HEADBOARD,FOOTBOARD, PANEL HEADBOARD RAILS, TRUNDLE FRONT)
 
W104 H122cm
Baht 30,400
05. DRAWER CHEST
W102 D48 H114cm
Baht 36,120
 
 

06.SOFA BED
A633-1180SL
Lancaster Sleep Sofa
Fabric No.: 1360-90 Gr. G
W203 D91 H84cm
Baht 132,000

 

 

 
ESPRESSO, A DARK RICH SATIN FINISH
07.1 SLAT HEADBOARD
H127cm
Baht 38,700
07.2 SLAT FOOTBOARD
W71cm
Baht 46,440
07 TOTAL SET: BAHT 85,140
 
08 NIGHT STAND
W71 D45 H66cm
Baht 30,315 /pc
09.1 MIRROR
W101 D4 H111cm
Baht 28,380
09.2 DRAWER DRESSER
W162 D50 H100cm
Baht 84,495
09 TOTAL SET: BAHT 112,875
 
 
 
MAPLE WOOD, CHERRY FINISH
10.SOFA TABLE
W132 D40 H71cm
Baht 35,475
11.SQUARE COCKTAIL TABLE
W97 D97 H45cm
Baht 38,700
12.BOOK TABLE
W59 D50 H63cm
Baht 35,475 /pc
 
If you no longer wish to receive our mail please click here.
 
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Feb 25 6:45:49 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BDEC937B40D; Tue, 25 Feb 2003 06:45:39 -0800 (PST) Received: from freebsd.org (TN218-187-123-89.2-3.pl.apol.com.tw [218.187.123.89]) by mx1.FreeBSD.org (Postfix) with SMTP id E343443FDD; Tue, 25 Feb 2003 06:44:41 -0800 (PST) (envelope-from 224952@freebsd.org) From: =?Big5?B?p9qmYrRNp+QuLi4uLi4u?= Subject: =?Big5?B?p0G3UcX9rmGkSLlMp/Ombqq6pc2sobbcPw==?= Content-Type: text/html Date: Tue, 25 Feb 2003 22:22:08 +0800 X-Priority: 3 X-Library: Indy 9.0.3-B Message-Id: <20030225144441.E343443FDD@mx1.FreeBSD.org> To: undisclosed-recipients: ; Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org І`©]1ВI¤F

І`©]1ВI¤F

Ѕц¦b§Й¤WЄє§Ъ¤ЈВ_Єє«дЇБ...µLЄk¤JєО

ёЈ¤¤ҐXІ{Єє¬O¤чҐАїЛЇhѕОЄєЁ­Ей...

§ЪєО¤ЈµЫ...єО¤ЈµЫ.......

ґїёg...§ЪёШ¤U®ь¤f­nЕэҐL­М№L¦n¤й¤l

Ґi¬O·LБЎБ~¤ф«oµLЄkЕэ§Ъјi¦ж©УїХ

ґX­У¤л«e...§Ъ±µДІЁм¤F¤@¤щҐъєР...

µuµuЄє40ґX¤АДБ...§Ъ¬ЭЁм¤F§Ж±ж

§Ъ¤@ЁB¤@ЁBЄє¦b№пЄє¦a¤и¬°®a§V¤O

¦У§ЪЄє©УїХ¤]±N§IІ{

¦pЄG§A¤]·QЕэ®a¤H№L§у¦nЄєҐН¬Ў

ЅРЇd¤Uёк®Ж,§Ъ±N§віo¤щҐъєР±Hµ№§A

§Ъ«OГТ,Ґu­n§A¬ЭАґ¤F,¤@©w·|¬°§A¶}±Т«GДRЄє¤HҐН

©m¦W
©m§O
¦~ДЦ
®a¤¤№qёЬ
¦ж°К№qёЬ
¶l±H¦a§}
¶l»ј°Пё№
ЅР±HЁмpop99917@yahoo.com.tw

To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Feb 25 9:30:14 2003 Delivered-To: freebsd-alpha@hub.freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 7FC6437B401 for ; Tue, 25 Feb 2003 09:30:10 -0800 (PST) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A1B8B43FD7 for ; Tue, 25 Feb 2003 09:30:06 -0800 (PST) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.12.6/8.12.6) with ESMTP id h1PHU6NS038318 for ; Tue, 25 Feb 2003 09:30:06 -0800 (PST) (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.12.6/8.12.6/Submit) id h1PHU6ti038317; Tue, 25 Feb 2003 09:30:06 -0800 (PST) Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 9DA8537B401 for ; Tue, 25 Feb 2003 09:20:13 -0800 (PST) Received: from agena.meridian-enviro.com (thunder.meridian-enviro.com [207.109.234.227]) by mx1.FreeBSD.org (Postfix) with ESMTP id A3FA943F3F for ; Tue, 25 Feb 2003 09:20:12 -0800 (PST) (envelope-from rand@meridian-enviro.com) Received: from inman.meridian-enviro.com (inman.meridian-enviro.com [10.10.10.13]) by agena.meridian-enviro.com (8.11.6/8.11.6) with ESMTP id h1PHK9f29456 for ; Tue, 25 Feb 2003 11:20:09 -0600 (CST) (envelope-from rand@meridian-enviro.com) Received: (from rand@localhost) by inman.meridian-enviro.com (8.12.6/8.12.6/Submit) id h1PHK99R060216; Tue, 25 Feb 2003 11:20:09 -0600 (CST) (envelope-from rand) Message-Id: <200302251720.h1PHK99R060216@inman.meridian-enviro.com> Date: Tue, 25 Feb 2003 11:20:09 -0600 (CST) From: "Douglas K. Rand" Reply-To: "Douglas K. Rand" To: FreeBSD-gnats-submit@FreeBSD.org X-Send-Pr-Version: 3.113 Subject: alpha/48676: Changing the baud rate of serial consoles for Alpha systems Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org >Number: 48676 >Category: alpha >Synopsis: Changing the baud rate of serial consoles for Alpha systems >Confidential: no >Severity: non-critical >Priority: medium >Responsible: freebsd-alpha >State: open >Quarter: >Keywords: >Date-Required: >Class: change-request >Submitter-Id: current-users >Arrival-Date: Tue Feb 25 09:30:04 PST 2003 >Closed-Date: >Last-Modified: >Originator: Douglas K. Rand >Release: FreeBSD 4.7-RELEASE-p5 alpha >Organization: Meridian Environmental Technology, Inc. >Environment: System: FreeBSD inman.meridian-enviro.com 4.7-RELEASE-p5 FreeBSD 4.7-RELEASE-p5 #4: Sun Feb 23 12:03:19 CST 2003 rand@inman.meridian-enviro.com:/usr/obj/usr/src/sys/INMAN alpha >Description: Changing the default speed of the serial console for Alpha systems does not follow the convention set by the i386 platform. Specifically, the BOOT_COMCONSOLE_SPEED directive in /etc/make.conf doesn't have any effect on Alpha systems. Changing the baud rate of the console in the SRM settings works up until the kernel starts booting. The boot loader (/boot/loader) follows the SRM settings for the serial port speed, but the kernel forces the serial port to CONSPEED, which defaults to 9600 (via TTYDEF_SPEED). The i386 "port" overrides CONSPEED with BOOT_COMCONSOLE_SPEED, but the alpha port doesn't. See line 110 of /usr/src/sys/alpha/alpha/dec_st6600.c for an example. Unfortunetly this is done in 10 seperate files: api_up1000.c dec_1000a.c dec_2100_a50.c dec_2100_a500.c dec_axppci_33.c dec_eb164.c dec_eb64plus.c dec_kn20aa.c dec_kn300.c dec_st550.c dec_st6600.c >How-To-Repeat: Set the console speed in the SRM to 57600, and boot FreeBSD. You'll get the /boot/loader conversation at 57600: FreeBSD/alpha SRM disk boot, Revision 1.0 (rand@inman.meridian-enviro.com, Sat Feb 22 23:33:56 CST 2003) Memory: 1048576 k Loading /boot/defaults/loader.conf /kernel data=0x288400+0x1ff5a syms=[0x8+0x35748+0x8+0x27c76] Hit [Enter] to boot immediately, or any other key for command prompt. Booting [kernel] in 9 seconds... Type '?' for a list of commands, 'help' for more detailed help. ok boot -s Entering kernel at 0xfffffc0000327a20... But as soon as FreeBSD starts, the baud rate gets set back to 9600. The Copyright message is emmitted at 9600 baud: Copyright (c) 1992-2002 The FreeBSD Project. >Fix: One method would be to not have FreeBSD muck with the speed of the console when its a serial console. While I think this is the better solution, I'm afraid I don't know how to persuade FreeBSD to do that. :( Another method would be to apply the same approach that the i386 "port" takes, and add something like this to the Makefile that compiles the machine dependant code in /usr/src/sys/alpha/alpha: BOOT_COMCONSOLE_SPEED?=9600 CFLAGS+= -DCONSPEED=${BOOT_COMCONSOLE_SPEED} >Release-Note: >Audit-Trail: >Unformatted: To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Feb 25 10:38:30 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 76D0337B401 for ; Tue, 25 Feb 2003 10:38:29 -0800 (PST) Received: from mail.speakeasy.net (mail12.speakeasy.net [216.254.0.212]) by mx1.FreeBSD.org (Postfix) with ESMTP id C778A43FBD for ; Tue, 25 Feb 2003 10:38:28 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 27528 invoked from network); 25 Feb 2003 18:38:32 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail12.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 25 Feb 2003 18:38:32 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.6/8.12.6) with ESMTP id h1PIbDhT020431; Tue, 25 Feb 2003 13:37:13 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <3E5889FD.56474AC7@mindspring.com> Date: Tue, 25 Feb 2003 13:38:39 -0500 (EST) From: John Baldwin To: Terry Lambert Subject: Re: Removing support for SimOS Cc: alpha@FreeBSD.org, Marcel Moolenaar Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 23-Feb-2003 Terry Lambert wrote: > Marcel Moolenaar wrote: >> Attached the patches to remove support for running under the SimOS >> simulator. These patches are accompanied by the removal of the >> following files: >> sys/pci/simos.c >> sys/pci/simos.h >> >> Please review, > > > Do you just hate SimOS, or are they pro Al Qaeda, or what? The code has rotted fairly well. If you wish to update it, go for it. I asked for people to update it back in November and got no response. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Feb 25 10:38:32 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B258937B406 for ; Tue, 25 Feb 2003 10:38:30 -0800 (PST) Received: from mail.speakeasy.net (mail15.speakeasy.net [216.254.0.215]) by mx1.FreeBSD.org (Postfix) with ESMTP id 02B1243FA3 for ; Tue, 25 Feb 2003 10:38:30 -0800 (PST) (envelope-from jhb@FreeBSD.org) Received: (qmail 14192 invoked from network); 25 Feb 2003 18:38:33 -0000 Received: from unknown (HELO server.baldwin.cx) ([216.27.160.63]) (envelope-sender ) by mail15.speakeasy.net (qmail-ldap-1.03) with DES-CBC3-SHA encrypted SMTP for ; 25 Feb 2003 18:38:33 -0000 Received: from laptop.baldwin.cx (gw1.twc.weather.com [216.133.140.1]) by server.baldwin.cx (8.12.6/8.12.6) with ESMTP id h1PIbFhT020434; Tue, 25 Feb 2003 13:37:15 -0500 (EST) (envelope-from jhb@FreeBSD.org) Message-ID: X-Mailer: XFMail 1.5.2 on FreeBSD X-Priority: 3 (Normal) Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 8bit MIME-Version: 1.0 In-Reply-To: <3E59272E.83E8072D@mindspring.com> Date: Tue, 25 Feb 2003 13:38:41 -0500 (EST) From: John Baldwin To: Terry Lambert Subject: Re: Removing support for SimOS Cc: alpha@FreeBSD.org, Marcel Moolenaar Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 23-Feb-2003 Terry Lambert wrote: > Marcel Moolenaar wrote: >> On Sun, Feb 23, 2003 at 02:20:27AM -0800, Terry Lambert wrote: >> > I'm just wondering why you are removing support for something that >> > apparently works, to make it not work? >> >> It already doesn't work and there's no indication that there's an >> interest in making it work again. In the mean time it's preventing >> LINT from linking and thus is getting in the way. > > OK, so someone made a commit that broke LINT because it failed to > maintain the SIMOS #ifdef'ed code. > > This makes a lot more sense to remove it, then (but reverting the > commit that caused it to break also makes sense, to me...). You'd need to update the simos.c driver to use new-bus, etc. If someone wants to fix it, they can always get it out of the Attic. If no one wants to maintain it, then it can rot just as easily in the Attic as in the tree. -- John Baldwin <>< http://www.FreeBSD.org/~jhb/ "Power Users Use the Power to Serve!" - http://www.FreeBSD.org/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Tue Feb 25 12:43:12 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 421AF37B401 for ; Tue, 25 Feb 2003 12:43:09 -0800 (PST) Received: from habitat-thailand.com (TruPPPv92-225-18.inet.co.th [203.151.225.18]) by mx1.FreeBSD.org (Postfix) with SMTP id 976D943F3F for ; Tue, 25 Feb 2003 12:43:06 -0800 (PST) (envelope-from info@habitat-thailand.com) Content-Type: text/html; charset="US-ASCII" Date: Wed, 26 Feb 2003 03:42:59 +0700 To: freebsd-alpha@freebsd.org From: info@habitat-thailand.com X-Mailer: Version 5.0 Subject: Newest Arrivals Organization: Harvest Enterprises Limited Message-Id: <20030225204306.976D943F3F@mx1.FreeBSD.org> Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org HBT Newsletter FEB 03
   
 
 
 
 
Did someone forward you this? Opt in to hear it first. Please click.
If You no no longger wish to receive our mail, please click here.
To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 13:14:48 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0A39C37B405 for ; Wed, 26 Feb 2003 13:14:41 -0800 (PST) Received: from tartarus.telenet-ops.be (tartarus.telenet-ops.be [195.130.132.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 23B0A43F75 for ; Wed, 26 Feb 2003 13:14:40 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by tartarus.telenet-ops.be (Postfix) with SMTP id ACC77DBA03 for ; Wed, 26 Feb 2003 22:14:36 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by tartarus.telenet-ops.be (Postfix) with ESMTP id 9E23CDB960 for ; Wed, 26 Feb 2003 22:14:36 +0100 (CET) Received: from juno.home.paeps.cx (juno.home.paeps.cx [2001:ab8:2007:0:240:f4ff:fe31:3090]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 1E86821CA for ; Wed, 26 Feb 2003 22:14:46 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id 25FB0124E; Wed, 26 Feb 2003 22:14:36 +0100 (CET) Date: Wed, 26 Feb 2003 22:14:35 +0100 From: Philip Paeps To: alpha@freebsd.org Subject: Panic on boot? Message-ID: <20030226211435.GB627@juno.home.paeps.cx> Mail-Followup-To: alpha@freebsd.org Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline X-Date-in-Rome: ante diem IV Kalendas Martias MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Hi guys - With CURRENT sources from around noon (CET) today, my Miata insists on panic'ing instead of booting up :-( The panic goes like this: [...] Timecounter "i8254" frequency 1193182 Hz Timecounter "alpha" frequency 499880058 Hz Timecounters tick every 0.976 msec fatal kernel trap: trap entry = 0x2 (memory management fault) faulting va = 0x0 type = access violation cause = instruction fetch pc = 0x0 ra = 0xfffffc000038348c sp = 0xfffffc0000731cc0 usp = 0x0 curthread = 0xfffffc0000657c88 pid = 0, comm = swapper panic: trap syncing disks, buffers remaining... done Uptime: 1s [...] Is anyone else experiencing this, or did I get my sources at a bad time? - Philip [reading commitlogs, building yet another kernel :-)] -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. 1) Things will get worse before they get better. 2) Who said things would get better? To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 13:20:23 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 63BF137B401 for ; Wed, 26 Feb 2003 13:20:22 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E9DE43FBD for ; Wed, 26 Feb 2003 13:20:21 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h1QLKKBV004175 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 26 Feb 2003 16:20:20 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h1QLKFr61075; Wed, 26 Feb 2003 16:20:15 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15965.12175.390447.175953@grasshopper.cs.duke.edu> Date: Wed, 26 Feb 2003 16:20:15 -0500 (EST) To: Philip Paeps Cc: alpha@FreeBSD.ORG Subject: Re: Panic on boot? In-Reply-To: <20030226211435.GB627@juno.home.paeps.cx> References: <20030226211435.GB627@juno.home.paeps.cx> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Philip Paeps writes: > Hi guys - > > With CURRENT sources from around noon (CET) today, my Miata insists on > panic'ing instead of booting up :-( > Please configure & re-compile just the kernel with the options: options DDB options DDB_TRACE That way, we'll be able to tell where the panic is occuring. Thanks, Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 13:58:25 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AC49A37B401 for ; Wed, 26 Feb 2003 13:58:23 -0800 (PST) Received: from srv1.cosmo-project.de (srv1.cosmo-project.de [213.83.6.106]) by mx1.FreeBSD.org (Postfix) with ESMTP id 03D4B43F85 for ; Wed, 26 Feb 2003 13:58:20 -0800 (PST) (envelope-from ticso@cicely9.cicely.de) Received: from cicely5.cicely.de (cicely5.cicely.de [IPv6:3ffe:400:8d0:301:200:92ff:fe9b:20e7]) by srv1.cosmo-project.de (8.12.5/8.12.5) with ESMTP id h1QLwCgu067795 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=OK); Wed, 26 Feb 2003 22:58:17 +0100 (CET) (envelope-from ticso@cicely9.cicely.de) Received: from cicely9.cicely.de (cicely9.cicely.de [IPv6:3ffe:400:8d0:301:210:5aff:fe30:1c1a]) by cicely5.cicely.de (8.12.6/8.12.6) with ESMTP id h1QLwAFO037838 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 26 Feb 2003 22:58:11 +0100 (CET) (envelope-from ticso@cicely9.cicely.de) Received: from cicely9.cicely.de (localhost [127.0.0.1]) by cicely9.cicely.de (8.12.6/8.12.6) with ESMTP id h1QLw9XW003337; Wed, 26 Feb 2003 22:58:09 +0100 (CET) (envelope-from ticso@cicely9.cicely.de) Received: (from ticso@localhost) by cicely9.cicely.de (8.12.6/8.12.6/Submit) id h1QLw8m9003336; Wed, 26 Feb 2003 22:58:08 +0100 (CET) Date: Wed, 26 Feb 2003 22:58:07 +0100 From: Bernd Walter To: Philip Paeps Cc: alpha@FreeBSD.ORG Subject: Re: Panic on boot? Message-ID: <20030226215806.GN97023@cicely9.cicely.de> Reply-To: ticso@cicely.de References: <20030226211435.GB627@juno.home.paeps.cx> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20030226211435.GB627@juno.home.paeps.cx> X-Operating-System: FreeBSD cicely9.cicely.de 5.0-CURRENT alpha User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On Wed, Feb 26, 2003 at 10:14:35PM +0100, Philip Paeps wrote: > Hi guys - > > With CURRENT sources from around noon (CET) today, my Miata insists on > panic'ing instead of booting up :-( > > The panic goes like this: > > [...] > > Timecounter "i8254" frequency 1193182 Hz > Timecounter "alpha" frequency 499880058 Hz > Timecounters tick every 0.976 msec > > fatal kernel trap: > > trap entry = 0x2 (memory management fault) > faulting va = 0x0 > type = access violation > cause = instruction fetch > pc = 0x0 > ra = 0xfffffc000038348c > sp = 0xfffffc0000731cc0 > usp = 0x0 > curthread = 0xfffffc0000657c88 > pid = 0, comm = swapper Normaly there is the ata device probing next. If the miata has a CMD646 IDE controller you might want to check if this is related to the latest ata changes. -- B.Walter COSMO-Project http://www.cosmo-project.de ticso@cicely.de Usergroup info@cosmo-project.de To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 14: 0:27 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 3375C37B401 for ; Wed, 26 Feb 2003 14:00:24 -0800 (PST) Received: from tartarus.telenet-ops.be (tartarus.telenet-ops.be [195.130.132.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9267143FB1 for ; Wed, 26 Feb 2003 14:00:22 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by tartarus.telenet-ops.be (Postfix) with SMTP id B6999DB9F8 for ; Wed, 26 Feb 2003 23:00:21 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by tartarus.telenet-ops.be (Postfix) with ESMTP id 7EEF3DB9F7 for ; Wed, 26 Feb 2003 23:00:21 +0100 (CET) Received: from juno.home.paeps.cx (juno.home.paeps.cx [2001:ab8:2007:0:240:f4ff:fe31:3090]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 525B721EF for ; Wed, 26 Feb 2003 23:00:31 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id 29D6D124F; Wed, 26 Feb 2003 23:00:21 +0100 (CET) Date: Wed, 26 Feb 2003 23:00:20 +0100 From: Philip Paeps To: alpha@FreeBSD.ORG Subject: Re: Panic on boot? Message-ID: <20030226220020.GA1930@juno.home.paeps.cx> Mail-Followup-To: alpha@FreeBSD.ORG References: <20030226211435.GB627@juno.home.paeps.cx> <15965.12175.390447.175953@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <15965.12175.390447.175953@grasshopper.cs.duke.edu> X-Date-in-Rome: ante diem IV Kalendas Martias MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 2003-02-26 16:20:15 (-0500), Andrew Gallatin wrote: > Philip Paeps writes: > > With CURRENT sources from around noon (CET) today, my Miata insists on > > panic'ing instead of booting up :-( > > Please configure & re-compile just the kernel with the options: > > options DDB > options DDB_TRACE I was doing that as I wrote my message. Unfortunately, the compiler takes quite a bit longer to compile an Alpha kernel than I need to type a short message :-) > That way, we'll be able to tell where the panic is occuring. This is what things tell me: [...] Timecounter "i8254" frequency 1193182 Hz Timecounter "alpha" frequency 499881400 Hz Timecounters tick every 0.976 msec fatal kernel trap: trap entry = 0x2 (memory management fault) faulting va = 0x0 type = access violation cause = instruction fetch pc = 0x0 ra = 0xfffffc000038a7cc sp = 0xfffffc000074bcc0 usp = 0x0 curthread = 0xfffffc000066cf78 pid = 0, comm = swapper Stopped at 0: fatal kernel trap: trap entry = 0x2 (memory management fault) faulting va = 0x0 type = access violation cause = load instructon pc = 0xfffffc000058e2b0 ra = 0xfffffc000035639c sp = 0xfffffc000074ba28 usp = 0x0 curthread = 0xfffffc000066cf78 pid = 0, comm = swapper db> ps pid proc addr uid ppid pgrp flag stat wmesg wchan cmd 29 fffffc000f7e29a8 fffffe000a652000 0 0 0 0000204 new [IWAIT] intr: sio1 28 fffffc000f7e2ce0 fffffe000a654000 0 0 0 0000204 new [IWAIT] intr: sio0 27 fffffc000f7e3018 fffffe000a656000 0 0 0 0000204 new [IWAIT] swi0: tty:sio 26 fffffc000f81c338 fffffe00099c0000 0 0 0 0000204 new [IWAIT] intr: ppc0 25 fffffc000f81c670 fffffe00099c2000 0 0 0 0000204 new [IWAIT] intr: fdc0 24 fffffc000f81c9a8 fffffe00099c4000 0 0 0 0000204 new [IWAIT] intr: atkbd0 23 fffffc000f81cce0 fffffe00099c6000 0 0 0 0000204 norm[IWAIT] intr: ata1 22 fffffc000f81d018 fffffe00099c8000 0 0 0 0000204 new [IWAIT] intr: ata0 21 fffffc000f81d350 fffffe00099ca000 0 0 0 0000204 new [IWAIT] intr: isp0 20 fffffc000f81d688 fffffe00099cc000 0 0 0 0000204 new [IWAIT] intr: ahc0 19 fffffc000f81d9c0 fffffe0009a28000 0 0 0 0000204 new [IWAIT] intr: dc0 18 fffffc000f840000 fffffe000a62a000 0 0 0 0000204 new [IWAIT] swi3: cambio 17 fffffc000f840338 fffffe000a62c000 0 0 0 0000204 new [IWAIT] swi2: camnet 16 fffffc000f840670 fffffe000a62e000 0 0 0 0000204 new [IWAIT] swi5:+ 15 fffffc000f84e000 fffffe00098f8000 0 0 0 0000204 new [IWAIT] swi6: task queue 14 fffffc000f84e338 fffffe00099ae000 0 0 0 0000204 norm[SLPQ sleep fffffc000065f038][SLP] random 4 fffffc000f84e670 fffffe00099b0000 0 0 0 0000204 norm[SLPQ g_down fffffc000065b228][SLP] g_down 3 fffffc000f84e9a8 fffffe00099b2000 0 0 0 0000204 norm[SLPQ g_up fffffc000065b220][SLP] g_up 2 fffffc000f84ece0 fffffe00099b4000 0 0 0 0000204 norm[SLPQ g_events fffffc000065b210][SLP] g_event 13 fffffc000f84f018 fffffe00099b6000 0 0 0 0000204 new [IWAIT] swi4: vm 12 fffffc000f84f350 fffffe00099b8000 0 0 0 000020c norm[RUNQ] swi7: tty:sio clock 11 fffffc000f84f688 fffffe00099ba000 0 0 0 0000204 new [IWAIT] swi1: net 10 fffffc000f84f9c0 fffffe00099bc000 0 0 0 000020c norm[Can run] idle 1 fffffc000f81c000 fffffe00099be000 0 0 0 0000200 newpanic: unknown thread state Stack backtrace: db_print_backtrace() at db_print_backtrace+0x18 backtrace() at backtrace+0x2c panic() at panic+0x100 dumpthread() at dumpthread+0x1cc db_ps() at db_ps+0x20c db_command() at db_command+0x2a4 db_command_loop() at db_command_loop+0xc4 db_trap() at db_trap+0xf4 kdb_trap() at kdb_trap+0xe0 trap() at trap+0x954 XentMM() at XentMM+0x2c --- memory management fault (from ipl 0) --- panic Stopped at Debugger+0x38: zapnot v0,#0xf,v0 Let me know if you'd like me to fiddle with it some more. The machine isn't doing anything particularly important :-) - Philip -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. Duncan: I've forgotten every thing I used to know about Z80 assembler. Ann: Congratulations you're cured. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 14: 5:17 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CDE5B37B401 for ; Wed, 26 Feb 2003 14:05:15 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id 203CA43F85 for ; Wed, 26 Feb 2003 14:05:15 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h1QM5EBV007562 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 26 Feb 2003 17:05:14 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h1QM59a61113; Wed, 26 Feb 2003 17:05:09 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15965.14869.445380.268641@grasshopper.cs.duke.edu> Date: Wed, 26 Feb 2003 17:05:09 -0500 (EST) To: Philip Paeps Cc: alpha@FreeBSD.ORG Subject: Re: Panic on boot? In-Reply-To: <20030226220020.GA1930@juno.home.paeps.cx> References: <20030226211435.GB627@juno.home.paeps.cx> <15965.12175.390447.175953@grasshopper.cs.duke.edu> <20030226220020.GA1930@juno.home.paeps.cx> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Philip Paeps writes: > I was doing that as I wrote my message. Unfortunately, the compiler takes > quite a bit longer to compile an Alpha kernel than I need to type a short > message :-) And it was totally useless advice, because the PC is zero. sorry! Something followed a null function pointer. > pc = 0x0 > ra = 0xfffffc000038a7cc Can you please find the ra? If you have a kernel.debug, do % gdb kernel.debug <...> (gdb) l *0xfffffc000038a7cc If you don't have a kernel.debug, do an "nm -n /boot/kernel/kernel | less" and look for the address range that 0xfffffc000038a7cc is in. Drew To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 14:15:22 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 26CC637B401 for ; Wed, 26 Feb 2003 14:15:20 -0800 (PST) Received: from eos.telenet-ops.be (eos.telenet-ops.be [195.130.132.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id EA31B43F75 for ; Wed, 26 Feb 2003 14:15:18 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by eos.telenet-ops.be (Postfix) with SMTP id A03EE20009 for ; Wed, 26 Feb 2003 23:15:17 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by eos.telenet-ops.be (Postfix) with ESMTP id 85E001FFE2 for ; Wed, 26 Feb 2003 23:15:17 +0100 (CET) Received: from juno.home.paeps.cx (juno.home.paeps.cx [2001:ab8:2007:0:240:f4ff:fe31:3090]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 8D52A20ED for ; Wed, 26 Feb 2003 23:15:27 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id 65B05124E; Wed, 26 Feb 2003 23:15:16 +0100 (CET) Date: Wed, 26 Feb 2003 23:15:16 +0100 From: Philip Paeps To: alpha@FreeBSD.ORG Subject: Re: Panic on boot? Message-ID: <20030226221516.GB1930@juno.home.paeps.cx> Mail-Followup-To: alpha@FreeBSD.ORG References: <20030226211435.GB627@juno.home.paeps.cx> <15965.12175.390447.175953@grasshopper.cs.duke.edu> <20030226220020.GA1930@juno.home.paeps.cx> <15965.14869.445380.268641@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <15965.14869.445380.268641@grasshopper.cs.duke.edu> X-Date-in-Rome: ante diem IV Kalendas Martias MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 2003-02-26 17:05:09 (-0500), Andrew Gallatin wrote: > Philip Paeps writes: > > I was doing that as I wrote my message. Unfortunately, the compiler takes > > quite a bit longer to compile an Alpha kernel than I need to type a short > > message :-) > > And it was totally useless advice, because the PC is zero. sorry! Not to worry :-) > Something followed a null function pointer. Eek! So that's what that message means. Is there a 'quick primer on debugging kernels' somewhere to be found? I would find that _very_ interesting literature! > > pc = 0x0 > > ra = 0xfffffc000038a7cc > > Can you please find the ra? fffffc000038a390 T ata_dmastop fffffc000038a5f0 t ata_dmastatus fffffc000038a690 T atapi_attach fffffc000038a860 T atapi_detach fffffc000038a9b0 T atapi_queue_cmd fffffc000038ac10 T atapi_start fffffc000038ac60 T atapi_transfer > If you have a kernel.debug, do > > % gdb kernel.debug > <...> > (gdb) l *0xfffffc000038a7cc Building one of those would take slightly longer than just adding DDB and DDB_TRACE, I think :) > If you don't have a kernel.debug, do an "nm -n /boot/kernel/kernel | less" > and look for the address range that 0xfffffc000038a7cc is in. The exact address wasn't there, but I pasted everything that was 'mathematically' around it above. Hope that helps! - Philip -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. The only game that can't be fixed is peek-a-boo. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 14:29:38 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id BECBB37B401; Wed, 26 Feb 2003 14:29:36 -0800 (PST) Received: from duke.cs.duke.edu (duke.cs.duke.edu [152.3.140.1]) by mx1.FreeBSD.org (Postfix) with ESMTP id E373F43F85; Wed, 26 Feb 2003 14:29:35 -0800 (PST) (envelope-from gallatin@cs.duke.edu) Received: from grasshopper.cs.duke.edu (grasshopper.cs.duke.edu [152.3.145.30]) by duke.cs.duke.edu (8.12.6/8.12.6) with ESMTP id h1QMTZBV009653 (version=TLSv1/SSLv3 cipher=EDH-RSA-DES-CBC3-SHA bits=168 verify=NO); Wed, 26 Feb 2003 17:29:35 -0500 (EST) Received: (from gallatin@localhost) by grasshopper.cs.duke.edu (8.11.6/8.9.1) id h1QMTUh61136; Wed, 26 Feb 2003 17:29:30 -0500 (EST) (envelope-from gallatin@cs.duke.edu) From: Andrew Gallatin MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Transfer-Encoding: 7bit Message-ID: <15965.16330.305808.221484@grasshopper.cs.duke.edu> Date: Wed, 26 Feb 2003 17:29:30 -0500 (EST) To: Philip Paeps Cc: alpha@FreeBSD.ORG, sos@FreeBSD.ORG Subject: ATA Panic on boot In-Reply-To: <20030226221516.GB1930@juno.home.paeps.cx> References: <20030226211435.GB627@juno.home.paeps.cx> <15965.12175.390447.175953@grasshopper.cs.duke.edu> <20030226220020.GA1930@juno.home.paeps.cx> <15965.14869.445380.268641@grasshopper.cs.duke.edu> <20030226221516.GB1930@juno.home.paeps.cx> X-Mailer: VM 6.75 under 21.1 (patch 12) "Channel Islands" XEmacs Lucid Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Soren, This gentleman has an alpha which is panic'ing on boot after the recent round of ata changes. Its apparently following a null function pointer from atapi_attach(). Based on the hardware, he has either a CMD646 or Cypress chipset. Is this enough to go on, or would you like more information? Thanks, Drew Philip Paeps writes: > > Something followed a null function pointer. > > Eek! So that's what that message means. Is there a 'quick primer on > debugging kernels' somewhere to be found? I would find that _very_ > interesting literature! > > > > pc = 0x0 > > > ra = 0xfffffc000038a7cc > > > > Can you please find the ra? > > fffffc000038a390 T ata_dmastop > fffffc000038a5f0 t ata_dmastatus > fffffc000038a690 T atapi_attach > fffffc000038a860 T atapi_detach > fffffc000038a9b0 T atapi_queue_cmd > fffffc000038ac10 T atapi_start > fffffc000038ac60 T atapi_transfer > To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 14:35:33 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 66E0237B401; Wed, 26 Feb 2003 14:35:32 -0800 (PST) Received: from tartarus.telenet-ops.be (tartarus.telenet-ops.be [195.130.132.46]) by mx1.FreeBSD.org (Postfix) with ESMTP id 858EB43F85; Wed, 26 Feb 2003 14:35:31 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by tartarus.telenet-ops.be (Postfix) with SMTP id D9E18DB9DC; Wed, 26 Feb 2003 23:35:30 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by tartarus.telenet-ops.be (Postfix) with ESMTP id 75399DB9D5; Wed, 26 Feb 2003 23:35:30 +0100 (CET) Received: from juno.home.paeps.cx (juno.home.paeps.cx [2001:ab8:2007:0:240:f4ff:fe31:3090]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 5781F20D1; Wed, 26 Feb 2003 23:35:40 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id A887B124E; Wed, 26 Feb 2003 23:35:29 +0100 (CET) Date: Wed, 26 Feb 2003 23:35:29 +0100 From: Philip Paeps To: Andrew Gallatin Cc: alpha@FreeBSD.ORG, sos@FreeBSD.ORG Subject: Re: ATA Panic on boot Message-ID: <20030226223529.GC1930@juno.home.paeps.cx> Mail-Followup-To: Andrew Gallatin , alpha@FreeBSD.ORG, sos@FreeBSD.ORG References: <20030226211435.GB627@juno.home.paeps.cx> <15965.12175.390447.175953@grasshopper.cs.duke.edu> <20030226220020.GA1930@juno.home.paeps.cx> <15965.14869.445380.268641@grasshopper.cs.duke.edu> <20030226221516.GB1930@juno.home.paeps.cx> <15965.16330.305808.221484@grasshopper.cs.duke.edu> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <15965.16330.305808.221484@grasshopper.cs.duke.edu> X-Date-in-Rome: ante diem IV Kalendas Martias MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 2003-02-26 17:29:30 (-0500), Andrew Gallatin wrote: > This gentleman has an alpha which is panic'ing on boot after the recent > round of ata changes. Its apparently following a null function pointer from > atapi_attach(). > > Based on the hardware, he has either a CMD646 or Cypress chipset. It's a Cypress 82C693, as a matter of fact, if that helps any :-) - Philip -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. BOFH Excuse #129: The ring needs another token To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 19: 4:29 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E3D8137B401; Wed, 26 Feb 2003 19:02:33 -0800 (PST) Received: from notes-relay.monroe.edu (notes-relay.monroe.edu [199.190.222.147]) by mx1.FreeBSD.org (Postfix) with ESMTP id CDFCA43FAF; Wed, 26 Feb 2003 19:02:30 -0800 (PST) (envelope-from vortex_nismo@mail.ru) Received: from mail.greece.k12.ny.us (greece-notes1.greece.k12.ny.us [207.10.14.202]) by notes-relay.monroe.edu (8.12.1/8.12.1) with ESMTP id h1R2wgB8085308; Wed, 26 Feb 2003 21:58:43 -0500 (EST) Received: from hotmail.com ([64.2.84.131]) by mail.greece.k12.ny.us (Lotus Domino Release 5.0.10) with SMTP id 2003022622004652:3595 ; Wed, 26 Feb 2003 22:00:46 -0500 Reply-To: vortex_nismo@mail.ru From: П*О*Л*И*Г*Р*А*Ф*И*Я Subject: -=Оперативная полиграфия по отличным ценам!=- Date: Thu, 27 Feb 2003 04:59:03 +0200 MIME-Version: 1.0 X-Priority: 1 (High) X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 6.00.2600.0000 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2600.0000 X-MIMETrack: Itemize by SMTP Server on Greece-Notes1/Greece(Release 5.0.10 |March 22, 2002) at 02/26/2003 10:00:58 PM, Serialize by Router on Greece-Notes1/Greece(Release 5.0.10 |March 22, 2002) at 02/26/2003 10:02:21 PM, Serialize complete at 02/26/2003 10:02:21 PM Message-ID: Content-Transfer-Encoding: 7bit Content-Type: text/html; charset="Windows-1251" To: undisclosed-recipients: ; Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org
 

Наша типография предлагаем Вам услуги оперативной полиграфии по передовой технологии цифровой полноцветной печати (разрешение до 1200dpi) на самом современном оборудовании по ОТЛИЧНЫМ ценам! Цветные и черно-белые визитные карточки, бланки, рекламные листовки, календари, плакаты - любые виды печатной продукции в самые кратчайшие сроки. В офисе работает профессиональный дизайнер, который поможет Вам создать неповторимый стиль и оригинальный дизайн-макет будущей продукции в период Вашего присутствия (от 15 мин до 1,5 часов). Дизайн и изготовление макета - бесплатно!


Прайс-лист на услуги:

Визитные карточки !!!полноцвет!!! (цифровая цветная печать):

 

Тираж

Стоимость тиража ($)

50

7,5

100

9

200

19

500

40

1000

75

* бумага плотностью до 300 г/м2

Визитные карточки (цифровая черно-белая печать):

 

Тираж

Стоимость тиража ($)

50

5

100

7

200

15

500

25

1000

40

* бумага плотностью до 300 г/м2

Плакаты А3:

 

Тираж

Стоимость тиража ($)

1

5

5

20

10

35

50

150


Двусторонние календари:

 

Тираж

Стоимость тиража ($)

50

20

100

35

300

80

 

Цифровая печать любых файлов:

 

По договоренности

 

Изготовление упаковки любых форматов :

По договоренности 

   

Дисконтные карты:

 

Тираж

Стоимость тиража ($)

50

30

100

38

200

50,7

500

110

1000

195

 


Доставка продукции, а также выезд курьера - 100 рублей в пределах МКАД!

Надеемся на дальнейшее долгосрочное сотрудничество!

По всем возникающим вопросам и предложениям о сотрудничестве Вы можете обратиться по телефону:
(095) 275-24-50 (многоканальный).

 

JVBTOWNFXFGPGSJIQCRXPSDMWBJBDNCPBKRKLC To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Wed Feb 26 23:16:42 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id DFFE537B401; Wed, 26 Feb 2003 23:16:41 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id D852243F75; Wed, 26 Feb 2003 23:16:39 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h1R7GTw3066263; Thu, 27 Feb 2003 08:16:29 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200302270716.h1R7GTw3066263@spider.deepcore.dk> Subject: Re: ATA Panic on boot In-Reply-To: <20030226223529.GC1930@juno.home.paeps.cx> To: Philip Paeps Date: Thu, 27 Feb 2003 08:16:29 +0100 (CET) Cc: Andrew Gallatin , alpha@FreeBSD.ORG, sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org It seems Philip Paeps wrote: [ Charset ISO-8859-15 unsupported, converting... ] > On 2003-02-26 17:29:30 (-0500), Andrew Gallatin wrote: > > This gentleman has an alpha which is panic'ing on boot after the recent > > round of ata changes. Its apparently following a null function pointer from > > atapi_attach(). > > > > Based on the hardware, he has either a CMD646 or Cypress chipset. > > It's a Cypress 82C693, as a matter of fact, if that helps any :-) A little, but I need more info please... A dmesg from when it worked at least would be nice.. A pciconf -l wold be helpfull as well.. Have you tried booting with hw.ata.ata_dma=0 and hw.ata.atapi_dma=0 ? -Sшren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Feb 27 0:46:42 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A64C537B401; Thu, 27 Feb 2003 00:46:38 -0800 (PST) Received: from horkos.telenet-ops.be (horkos.telenet-ops.be [195.130.132.45]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2DCD543FA3; Thu, 27 Feb 2003 00:46:37 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by horkos.telenet-ops.be (Postfix) with SMTP id 1AD8B83D13; Thu, 27 Feb 2003 09:46:34 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by horkos.telenet-ops.be (Postfix) with ESMTP id A303E83BEB; Thu, 27 Feb 2003 09:46:28 +0100 (CET) Received: from juno.home.paeps.cx (juno.home.paeps.cx [2001:ab8:2007:0:240:f4ff:fe31:3090]) by fortuna.home.paeps.cx (Postfix) with ESMTP id B663E20ED; Thu, 27 Feb 2003 09:46:39 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id 331A9124F; Thu, 27 Feb 2003 09:46:24 +0100 (CET) Date: Thu, 27 Feb 2003 09:45:33 +0100 From: Philip Paeps To: Soeren Schmidt Cc: Andrew Gallatin , alpha@FreeBSD.ORG, sos@FreeBSD.ORG Subject: Re: ATA Panic on boot Message-ID: <20030227084533.GG1930@juno.home.paeps.cx> Mail-Followup-To: Soeren Schmidt , Andrew Gallatin , alpha@FreeBSD.ORG, sos@FreeBSD.ORG References: <20030226223529.GC1930@juno.home.paeps.cx> <200302270716.h1R7GTw3066263@spider.deepcore.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline In-Reply-To: <200302270716.h1R7GTw3066263@spider.deepcore.dk> X-Date-in-Rome: ante diem III Kalendas Martias MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 2003-02-27 08:16:29 (+0100), Soeren Schmidt wrote: > It seems Philip Paeps wrote: > > On 2003-02-26 17:29:30 (-0500), Andrew Gallatin wrote: > > > This gentleman has an alpha which is panic'ing on boot after the recent > > > round of ata changes. Its apparently following a null function pointer from > > > atapi_attach(). > > > > > > Based on the hardware, he has either a CMD646 or Cypress chipset. > > > > It's a Cypress 82C693, as a matter of fact, if that helps any :-) > > A little, but I need more info please... Sure :-) > A dmesg from when it worked at least would be nice.. This is from a kernel from 11-02-2003: Copyright (c) 1992-2003 The FreeBSD Project. Copyright (c) 1979, 1980, 1983, 1986, 1988, 1989, 1991, 1992, 1993, 1994 The Regents of the University of California. All rights reserved. FreeBSD 5.0-CURRENT #3: Tue Feb 11 06:37:54 CET 2003 philip@prosperina.home.paeps.cx:/usr/obj/usr/src/sys/PROSPERINA Preloaded elf kernel "/boot/kernel.working/kernel" at 0xfffffc0000724000. Digital Personal Workstation (Miata) Digital Personal WorkStation 500au, 500MHz 8192 byte page size, 1 processor. CPU: EV56 (21164A) major=7 minor=0 extensions=0x1 OSF PAL rev: 0x1000000020116 real memory = 266493952 (254 MB) avail memory = 252665856 (240 MB) Initializing GEOMetry subsystem cia0: <2117x Core Logic chipset> cia0: Pyxis, pass 1 cia0: extended capabilities: 1 pcib0: <2117x PCI host bus adapter> on cia0 pci0: on pcib0 dc0: port 0x9100-0x917f mem 0x811a2000-0x811a207f irq 0 at device 3.0 on pci0 dc0: Ethernet address: 00:00:f8:76:34:54 miibus0: on dc0 nsphy0: on miibus0 nsphy0: 10baseT, 10baseT-FDX, 100baseTX, 100baseTX-FDX, auto dc0: interrupting at CIA irq 0 isab0: at device 7.0 on pci0 isa0: on isab0 atapci0: port 0x91a0-0x91af,0x3f4-0x3f7,0x1f0-0x1f7 irq 238 at device 7.1 on pci0 ata0: at 0x1f0 irq 14 on atapci0 ata0: interrupting at ISA irq 14 ata1: at 0x170 irq 15 on atapci0 ata1: interrupting at ISA irq 15 atapci1: port 0x374-0x377,0x170-0x177 mem 0x81190000-0x8119ffff irq 239 at device 7.2 on pci0 atapci1: Busmastering DMA not configured pci0: at device 7.3 (no driver attached) ahc0: port 0x9000-0x90ff mem 0x811a0000-0x811a0fff irq 4 at device 11.0 on pci0 ahc0: interrupting at CIA irq 4 aic7892: Ultra160 Wide Channel A, SCSI Id=7, 32/253 SCBs pci0: at device 12.0 (no driver attached) pcib1: at device 20.0 on pci0 pci1: on pcib1 isp0: port 0x8000-0x80ff mem 0x81010000-0x81010fff irq 3 at device 4.0 on pci1 isp0: interrupting at CIA irq 3 atkbdc0: at port 0x64,0x60 on isa0 atkbd0: irq 1 on atkbdc0 atkbd0: interrupting at ISA irq 1 fdc0: at port 0x3f7,0x3f0-0x3f5 irq 6 drq 2 on isa0 fdc0: interrupting at ISA irq 6 mcclock0: at port 0x70-0x71 on isa0 ppc0: at port 0x3bc-0x3c3 irq 7 on isa0 ppc0: Generic chipset (EPP/NIBBLE) in COMPATIBLE mode lpt0: on ppbus0 lpt0: Polled port ppi0: on ppbus0 ppc0: interrupting at ISA irq 7 sc0: on isa0 sc0: VGA <16 virtual consoles, flags=0x0> sio0 at port 0x3f8-0x3ff irq 4 on isa0 sio0: type 16550A, console sio0: interrupting at ISA irq 4 sio1 at port 0x2f8-0x2ff irq 3 on isa0 sio1: type 16550A sio1: interrupting at ISA irq 3 vga0: at port 0x3c0-0x3df iomem 0xa0000-0xbffff on isa0 Timecounter "i8254" frequency 1193182 Hz Timecounter "alpha" frequency 499880837 Hz Timecounters tick every 0.976 msec allocate another stats-page 0xfffffc00009ea000 acd0: CDROM at ata1-master PIO4 Waiting 5 seconds for SCSI devices to settle sa0 at ahc0 bus 0 target 4 lun 0 sa0: Removable Sequential Access SCSI-2 device sa0: 5.000MB/s transfers (5.000MHz, offset 15) da1 at isp0 bus 0 target 1 lun 0 da1: Fixed Direct Access SCSI-2 device da1: 20.000MB/s transfers (10.000MHz, offset 8, 16bit), Tagged Queueing Enabled da1: 4091MB (8380080 512 byte sectors: 255H 63S/T 521C) da0 at isp0 bus 0 target 0 lun 0 da0: Fixed Direct Access SCSI-2 device da0: 20.000MB/s transfers (10.000MHz, offset 8, 16bit), Tagged Queueing Enabled da0: 4091MB (8380080 512 byte sectors: 255H 63S/T 521C) cd0 at ata1 bus 0 target 0 lun 0 cd0: Removable CD-ROM SCSI-0 device cd0: 16.000MB/s transfers cd0: Attempt to query device size failed: NOT READY, Medium not present Mounting root from ufs:/dev/da0a Be nice to each other, mmmkay? > A pciconf -l wold be helpfull as well.. dc0@pci0:3:0: class=0x020000 card=0x00000000 chip=0x00191011 rev=0x30 hdr=0x00 isab0@pci0:7:0: class=0x060100 card=0x00000000 chip=0xc6931080 rev=0x00 hdr=0x00 atapci0@pci0:7:1: class=0x010180 card=0x00000000 chip=0xc6931080 rev=0x00 hdr=0x00 atapci1@pci0:7:2: class=0x010100 card=0x00000000 chip=0xc6931080 rev=0x00 hdr=0x00 none0@pci0:7:3: class=0x0c0310 card=0x00000000 chip=0xc6931080 rev=0x00 hdr=0x00 ahc0@pci0:11:0: class=0x010000 card=0xe2a09005 chip=0x00809005 rev=0x02 hdr=0x00 none1@pci0:12:0: class=0x030000 card=0x0a321048 chip=0x3d07104c rev=0x01 hdr=0x00 pcib1@pci0:20:0: class=0x060400 card=0x00000000 chip=0x00241011 rev=0x02 hdr=0x01 isp0@pci1:4:0: class=0x010000 card=0x00000000 chip=0x10201077 rev=0x05 hdr=0x00 > Have you tried booting with hw.ata.ata_dma=0 and hw.ata.atapi_dma=0 ? I have now :-) Doesn't work, I'm afraid. - Philip -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. If you have a difficult task give it to a lazy man, he will find an easier way to do it. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Feb 27 0:49:54 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5428737B405; Thu, 27 Feb 2003 00:49:53 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id DC71A43F75; Thu, 27 Feb 2003 00:49:50 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h1R8nllZ080657; Thu, 27 Feb 2003 09:49:47 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200302270849.h1R8nllZ080657@spider.deepcore.dk> Subject: Re: ATA Panic on boot In-Reply-To: <20030227084533.GG1930@juno.home.paeps.cx> To: Philip Paeps Date: Thu, 27 Feb 2003 09:49:47 +0100 (CET) Cc: Andrew Gallatin , alpha@FreeBSD.ORG, sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org It seems Philip Paeps wrote: Aha, try this patch: RCS file: /home/ncvs/src/sys/dev/ata/ata-chipset.c,v retrieving revision 1.7 diff -u -r1.7 ata-chipset.c --- ata-chipset.c 27 Feb 2003 07:11:42 -0000 1.7 +++ ata-chipset.c 27 Feb 2003 08:49:11 -0000 @@ -535,7 +535,7 @@ * doesn't work with the crappy ATA interrupt setup on the alpha. */ if (pci_get_devid(dev) == ATA_CYPRESS_82C693 && - pci_get_function(dev) == 0 && + pci_get_function(dev) == 1 && pci_get_subclass(dev) == PCIS_STORAGE_IDE) { device_set_desc(dev, "Cypress 82C693 ATA controller"); ctlr->chipinit = ata_cypress_chipinit; @@ -561,6 +561,8 @@ { device_t parent = device_get_parent(atadev->channel->dev); int error; + + mode = ata_limit_mode(atadev, mode, ATA_WDMA2); /* XXX missing WDMA0+1 + PIO modes */ if (mode == ATA_WDMA2) { -Sшren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Feb 27 1:40:28 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 46D0937B401; Thu, 27 Feb 2003 01:40:27 -0800 (PST) Received: from eos.telenet-ops.be (eos.telenet-ops.be [195.130.132.40]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6C04143FAF; Thu, 27 Feb 2003 01:40:26 -0800 (PST) (envelope-from philip@paeps.cx) Received: from localhost (localhost.localdomain [127.0.0.1]) by eos.telenet-ops.be (Postfix) with SMTP id 16DCF1FFC3; Thu, 27 Feb 2003 10:40:25 +0100 (CET) Received: from fortuna.home.paeps.cx (D5768746.kabel.telenet.be [213.118.135.70]) by eos.telenet-ops.be (Postfix) with ESMTP id F3FF21FFA1; Thu, 27 Feb 2003 10:40:24 +0100 (CET) Received: from juno.home.paeps.cx (juno.home.paeps.cx [2001:ab8:2007:0:240:f4ff:fe31:3090]) by fortuna.home.paeps.cx (Postfix) with ESMTP id 61D3121BF; Thu, 27 Feb 2003 10:40:40 +0100 (CET) Received: by juno.home.paeps.cx (Postfix, from userid 1001) id A446410AD; Thu, 27 Feb 2003 10:40:24 +0100 (CET) Date: Thu, 27 Feb 2003 10:40:24 +0100 From: Philip Paeps To: Soeren Schmidt Cc: Andrew Gallatin , alpha@FreeBSD.ORG, sos@FreeBSD.ORG Subject: Re: ATA Panic on boot Message-ID: <20030227094024.GL1930@juno.home.paeps.cx> Mail-Followup-To: Soeren Schmidt , Andrew Gallatin , alpha@FreeBSD.ORG, sos@FreeBSD.ORG References: <20030227084533.GG1930@juno.home.paeps.cx> <200302270849.h1R8nllZ080657@spider.deepcore.dk> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-15 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <200302270849.h1R8nllZ080657@spider.deepcore.dk> X-Date-in-Rome: ante diem III Kalendas Martias MMDCCLVI ab Urbe Condida X-PGP-Fingerprint: FA74 3C27 91A6 79D5 F6D3 FC53 BF4B D0E6 049D B879 X-Message-Flag: Get a proper mailclient! Mutt: User-Agent: Mutt/1.5.3i Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org On 2003-02-27 09:49:47 (+0100), Soeren Schmidt wrote: > It seems Philip Paeps wrote: > > Aha, try this patch: > > RCS file: /home/ncvs/src/sys/dev/ata/ata-chipset.c,v > retrieving revision 1.7 > diff -u -r1.7 ata-chipset.c > --- ata-chipset.c 27 Feb 2003 07:11:42 -0000 1.7 > +++ ata-chipset.c 27 Feb 2003 08:49:11 -0000 That worked! Wahoo! Thanks Sшren! - Philip -- Philip Paeps Please don't CC me, I am philip@paeps.cx subscribed to the list. When you consider there are 24 hours in a day, it's sad to know that only one is called the happy hour. To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Feb 27 1:41:58 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8773337B401; Thu, 27 Feb 2003 01:41:57 -0800 (PST) Received: from spider.deepcore.dk (cpe.atm2-0-56339.0x50c6aa0a.abnxx2.customer.tele.dk [80.198.170.10]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5CA6343FBD; Thu, 27 Feb 2003 01:41:56 -0800 (PST) (envelope-from sos@spider.deepcore.dk) Received: (from sos@localhost) by spider.deepcore.dk (8.12.5/8.12.6) id h1R9fq0b088990; Thu, 27 Feb 2003 10:41:52 +0100 (CET) (envelope-from sos) From: Soeren Schmidt Message-Id: <200302270941.h1R9fq0b088990@spider.deepcore.dk> Subject: Re: ATA Panic on boot In-Reply-To: <20030227094024.GL1930@juno.home.paeps.cx> To: Philip Paeps Date: Thu, 27 Feb 2003 10:41:52 +0100 (CET) Cc: Andrew Gallatin , alpha@FreeBSD.ORG, sos@FreeBSD.ORG X-Mailer: ELM [version 2.4ME+ PL98b (25)] MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Content-Type: text/plain; charset=ISO-8859-1 Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org It seems Philip Paeps wrote: [ Charset ISO-8859-15 unsupported, converting... ] > On 2003-02-27 09:49:47 (+0100), Soeren Schmidt wrote: > > It seems Philip Paeps wrote: > > > > Aha, try this patch: > > > > RCS file: /home/ncvs/src/sys/dev/ata/ata-chipset.c,v > > retrieving revision 1.7 > > diff -u -r1.7 ata-chipset.c > > --- ata-chipset.c 27 Feb 2003 07:11:42 -0000 1.7 > > +++ ata-chipset.c 27 Feb 2003 08:49:11 -0000 > > That worked! Wahoo! > > Thanks Sшren! No problem, I'll commit it right away.. -Sшren To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Feb 27 15: 4: 0 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 618BA37B401 for ; Thu, 27 Feb 2003 15:03:59 -0800 (PST) Received: from gatekeeper.oremut01.us.wh.verio.net (gatekeeper.oremut01.us.wh.verio.net [198.65.168.16]) by mx1.FreeBSD.org (Postfix) with ESMTP id D82A743F85 for ; Thu, 27 Feb 2003 15:03:58 -0800 (PST) (envelope-from fclift@verio.net) Received: from mx.dmz.orem.verio.net (mx.dmz.orem.verio.net [10.1.1.10]) by gatekeeper.oremut01.us.wh.verio.net (Postfix) with ESMTP id 6EB273BF1A4 for ; Thu, 27 Feb 2003 16:03:58 -0700 (MST) Received: from vespa.dmz.orem.verio.net (vespa.dmz.orem.verio.net [10.1.1.59]) by mx.dmz.orem.verio.net (8.11.6/8.11.6) with ESMTP id h1RN3w354369 for ; Thu, 27 Feb 2003 16:03:58 -0700 (MST) Date: Thu, 27 Feb 2003 16:04:04 -0700 (MST) From: X-X-Sender: To: Subject: Xv3 packages laying around anywhere? In-Reply-To: <15949.11942.969987.302969@grasshopper.cs.duke.edu> Message-ID: <20030227160038.M62054-100000@vespa.dmz.orem.verio.net> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org Well, yall may remember that my miata doesn't like Xv4 - I went to build Xv3 from sources and I'm thinking that the -current gcc is having some problems with the code... Before I go and build and old gcc (presuming I can) or spending an inordinant amount of time trying to get something working - anyone happen to know of any place I can get ahold of old binary packages of X v3 for alpha? Fred fred@clift.org To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Thu Feb 27 16:27: 0 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 787A837B401 for ; Thu, 27 Feb 2003 16:26:59 -0800 (PST) Received: from web12504.mail.yahoo.com (web12504.mail.yahoo.com [216.136.173.196]) by mx1.FreeBSD.org (Postfix) with SMTP id 0809043F75 for ; Thu, 27 Feb 2003 16:26:59 -0800 (PST) (envelope-from textfield@yahoo.com) Message-ID: <20030228002658.63199.qmail@web12504.mail.yahoo.com> Received: from [216.243.8.216] by web12504.mail.yahoo.com via HTTP; Thu, 27 Feb 2003 16:26:58 PST Date: Thu, 27 Feb 2003 16:26:58 -0800 (PST) From: Free BSD Reply-To: textfield@yahoo.com To: freebsd-alpha@FreeBSD.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org __________________________________________________ Do you Yahoo!? Yahoo! Tax Center - forms, calculators, tips, more http://taxes.yahoo.com/ To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message From owner-freebsd-alpha Fri Feb 28 19:38:59 2003 Delivered-To: freebsd-alpha@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CAC7137B401; Fri, 28 Feb 2003 19:38:44 -0800 (PST) Received: from mel-rto2.wanadoo.fr (smtp-out-2.wanadoo.fr [193.252.19.254]) by mx1.FreeBSD.org (Postfix) with ESMTP id E71C043FA3; Fri, 28 Feb 2003 19:38:42 -0800 (PST) (envelope-from pmiioijhi@list.ru) Received: from mel-rta6.wanadoo.fr (193.252.19.26) by mel-rto2.wanadoo.fr (6.7.015) id 3E0C3370028C6CBC; Sat, 1 Mar 2003 04:23:33 +0100 Received: from billsrv (217.128.212.103) by mel-rta6.wanadoo.fr (6.7.015) id 3E26CE21018F73F6; Sat, 1 Mar 2003 04:23:33 +0100 Message-ID: <3E26CE21018F73F6@mel-rta6.wanadoo.fr> (added by postmaster@wanadoo.fr) Received: from ALagny-101-1-4-107.abo.wanadoo.fr ([217.128.203.107]) by billsrv (602Pro LAN SUITE v. 2002) id 2e5b6895; Sat, 1 Mar 2003 4:26:26 +0100 Reply-To: pmiioijhi@list.ru From: ***Клиника Альтра-Вита*** Subject: Бесплодие женское и мужское Date: Sat, 1 Mar 2003 05:23:24 +0200 MIME-Version: 1.0 Content-Type: text/html; charset="Windows-1251" Content-Transfer-Encoding: 7bit X-Priority: 1 X-MSMail-Priority: High X-Mailer: Microsoft Outlook Express 6.00.2800.1081 X-MimeOLE: Produced By Microsoft MimeOLE V6.00.2800.1081 To: undisclosed-recipients: ; Sender: owner-freebsd-alpha@FreeBSD.ORG Precedence: bulk List-ID: List-Archive: (Web Archive) List-Help: (List Instructions) List-Subscribe: List-Unsubscribe: X-Loop: FreeBSD.org

БЕСПЛОДИЕ – ЭТО НЕ ПРИГОВОР

СОВРЕМЕННЫЕ РЕПРОДУКТИВНЫЕ ТЕХНОЛОГИИ МОГУТ ПОМОЧЬ ДАЖЕ В САМЫХ СЛОЖНЫХ СЛУЧАЯХ

 

Суперсовременная специализированная клиника по лечению бесплодия проводит точную диагностику и эффективное лечение всех форм мужского и женского бесплодия.

 

Новейшее американское оборудование, опытные специалисты – репродуктологи, прошедшие стажировку за рубежом, высочайший уровень комфорта и теплое отношение персонала – все это вы найдете в нашей клинике.

 

Мы применяем новейшие методы лечения бесплодия включая ЭКО, ИКСИ, ТЕСА и др.

 

Подробную информацию вы можете получить по телефону : 127-39-36









SFSRRZUWUVCXBKXORSCYHJNZDWKJOZSGJVTMXE To Unsubscribe: send mail to majordomo@FreeBSD.org with "unsubscribe freebsd-alpha" in the body of the message