From owner-freebsd-emulation@FreeBSD.ORG Sun Oct 1 16:35:36 2006 Return-Path: X-Original-To: emulation@freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 32CF616A403; Sun, 1 Oct 2006 16:35:36 +0000 (UTC) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (eva.fit.vutbr.cz [147.229.176.14]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A84243D46; Sun, 1 Oct 2006 16:35:34 +0000 (GMT) (envelope-from xdivac02@stud.fit.vutbr.cz) Received: from eva.fit.vutbr.cz (localhost [127.0.0.1]) by eva.fit.vutbr.cz (envelope-from xdivac02@eva.fit.vutbr.cz) (8.13.8/8.13.7) with ESMTP id k91GZWou039896 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sun, 1 Oct 2006 18:35:32 +0200 (CEST) Received: (from xdivac02@localhost) by eva.fit.vutbr.cz (8.13.8/8.13.3/Submit) id k91GZWJH039895; Sun, 1 Oct 2006 18:35:32 +0200 (CEST) Date: Sun, 1 Oct 2006 18:35:32 +0200 From: Divacky Roman To: hackers@freebsd.org Message-ID: <20061001163532.GA39376@stud.fit.vutbr.cz> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.4.2.2i X-Scanned-By: MIMEDefang 2.57 on 147.229.176.14 Cc: emulation@freebsd.org Subject: filedesc copying in fork() X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 01 Oct 2006 16:35:36 -0000 hi I am trying to implement CLONE_FS in linuxolator clone(). This flags is used when we want the newly created thread share root/cwd/umask. In FreeBSD we have a flags to fork1() RFFDG/RFCFDG. The first one tells fork1() to copy the filedesc from old proc to the new one. The later says we should create new filedesc struct. If neither of these is given the filedesc struct is shared among the processes. is my analysis correct? currently in the linuxolator we dont set any of this flags passed to fork1() ie. doing CLONE_FS semantics on default. I am a little confused from linux behaviour because it seems to me that they dont share open file descriptors betweeen processes after fork() which is strange. comments? roman ---------------------- www.liberalnistrana.cz From owner-freebsd-emulation@FreeBSD.ORG Mon Oct 2 11:08:15 2006 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CC8E116A4A7 for ; Mon, 2 Oct 2006 11:08:15 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 942FD43D45 for ; Mon, 2 Oct 2006 11:08:15 +0000 (GMT) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (linimon@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k92B8FAr001447 for ; Mon, 2 Oct 2006 11:08:15 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from linimon@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k92B8EZQ001443 for freebsd-emulation@FreeBSD.org; Mon, 2 Oct 2006 11:08:14 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 2 Oct 2006 11:08:14 GMT Message-Id: <200610021108.k92B8EZQ001443@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: linimon set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-emulation@FreeBSD.org Cc: Subject: Current problem reports assigned to you X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 11:08:15 -0000 Current FreeBSD problem reports Critical problems Serious problems S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/21463 emulation [linux] Linux compatability mode should not allow setu o kern/77710 emulation [linux] Linux page fault sigcontext information is wro f ports/102474 emulation linux_base-fc-4_8 appears broken, does not allow to ru o kern/102956 emulation [linux] [patch] Add partial support for SO_PEERCRED in 4 problems total. Non-critical problems S Tracker Resp. Description -------------------------------------------------------------------------------- o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/41543 emulation [patch] feature request: easier wine/w23 support o kern/55835 emulation [linux] [patch] Linux IPC emulation missing SETALL sys a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand o kern/91293 emulation [svr4] [patch] *Experimental* Update to the SVR4 emula 8 problems total. From owner-freebsd-emulation@FreeBSD.ORG Mon Oct 2 12:49:32 2006 Return-Path: X-Original-To: emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 0F11F16A403; Mon, 2 Oct 2006 12:49:32 +0000 (UTC) (envelope-from vd@datamax.bg) Received: from jengal.datamax.bg (jengal.datamax.bg [82.103.104.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 84F6C43D46; Mon, 2 Oct 2006 12:49:31 +0000 (GMT) (envelope-from vd@datamax.bg) Received: from qlovarnika.bg.datamax (qlovarnika.bg.datamax [192.168.10.2]) by jengal.datamax.bg (Postfix) with SMTP id 3A3FCB863; Mon, 2 Oct 2006 15:49:30 +0300 (EEST) Received: (nullmailer pid 18086 invoked by uid 1002); Mon, 02 Oct 2006 12:49:30 -0000 Date: Mon, 2 Oct 2006 15:49:30 +0300 From: Vasil Dimov To: FreeBSD-gnats-submit@freebsd.org Message-ID: <20061002124930.GA18063@qlovarnika.bg.datamax> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline X-send-pr-version: 3.113 Cc: emulation@FreeBSD.org Subject: [patch] bsd.linux-rpm.mk: remove support code for old linux distros X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: vd@FreeBSD.org List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 12:49:32 -0000 >Submitter-Id: current-users >Originator: Vasil Dimov >Organization: N/A >Confidential: no >Synopsis: [patch] bsd.linux-rpm.mk: remove support code for old linux distros >Severity: non-critical >Priority: low >Category: ports >Class: change-request >Release: FreeBSD 6.2-PRERELEASE amd64 >Environment: >Description: Remove support code in bsd.linux-rpm.mk for linux_base-debian and linux_base-8 which has been deleted. >How-To-Repeat: >Fix: --- bsd.linux-rpm.mk_old.diff begins here --- Index: bsd.linux-rpm.mk =================================================================== RCS file: /home/pcvs/ports/Mk/bsd.linux-rpm.mk,v retrieving revision 1.9 diff -u -r1.9 bsd.linux-rpm.mk --- bsd.linux-rpm.mk 30 Jul 2006 22:34:30 -0000 1.9 +++ bsd.linux-rpm.mk 2 Oct 2006 12:44:42 -0000 @@ -109,15 +109,11 @@ . if ${USE_LINUX} == "fc4" || ${USE_LINUX:L} == "yes" _LINUX_BASE_SUFFIX= fc4 -. elif ${USE_LINUX} == "debian" -_LINUX_BASE_SUFFIX= debian . elif ${USE_LINUX} == "fc3" _LINUX_BASE_SUFFIX= fc3 -. elif ${USE_LINUX} == "8" -_LINUX_BASE_SUFFIX= 8 . else # other linux_base ports do not provide a pkg-plist file -IGNORE= uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\", \"8\", \"debian\", \"fc3\" and \"fc4\" +IGNORE= uses AUTOMATIC_PLIST with an unsupported USE_LINUX, \"${USE_LINUX}\". Supported values are \"yes\", \"fc3\" and \"fc4\" . endif PLIST?= ${WRKDIR}/.PLIST.linux-rpm --- bsd.linux-rpm.mk_old.diff ends here --- -- Vasil Dimov gro.DSBeerF@dv % Laugh at your problems: everybody else does. From owner-freebsd-emulation@FreeBSD.ORG Mon Oct 2 13:46:35 2006 Return-Path: X-Original-To: emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C1CA216A47E; Mon, 2 Oct 2006 13:46:35 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 1EE9C43D66; Mon, 2 Oct 2006 13:46:24 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5DB3C.dip.t-dialin.net [84.165.219.60]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k92DjxHm038186; Mon, 2 Oct 2006 15:45:59 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from Magellan.Leidinger.net (Magellan.Leidinger.net [192.168.1.1]) by Andro-Beta.Leidinger.net (8.13.4/8.13.3) with ESMTP id k92DkLtC029959; Mon, 2 Oct 2006 15:46:22 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Date: Mon, 2 Oct 2006 15:46:21 +0200 From: Alexander Leidinger To: vd@FreeBSD.org Message-ID: <20061002154621.1501117d@Magellan.Leidinger.net> In-Reply-To: <20061002124930.GA18063@qlovarnika.bg.datamax> References: <20061002124930.GA18063@qlovarnika.bg.datamax> X-Mailer: Sylpheed-Claws 2.5.2 (GTK+ 2.8.20; i386-portbld-freebsd7.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit X-Virus-Scanned: by amavisd-new Cc: emulation@FreeBSD.org, FreeBSD-gnats-submit@FreeBSD.org Subject: Re: [patch] bsd.linux-rpm.mk: remove support code for old linux distros X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 13:46:35 -0000 Quoting Vasil Dimov (Mon, 2 Oct 2006 15:49:30 +0300): > > >Submitter-Id: current-users > >Originator: Vasil Dimov > >Organization: N/A > >Confidential: no > >Synopsis: [patch] bsd.linux-rpm.mk: remove support code for old linux distros > >Severity: non-critical > >Priority: low > >Category: ports > >Class: change-request > >Release: FreeBSD 6.2-PRERELEASE amd64 > >Environment: > > >Description: > > Remove support code in bsd.linux-rpm.mk for linux_base-debian and > linux_base-8 which has been deleted. Looks good. Go ahead and commit it (please remove "fc3" too while you're there, it's not in the ports tree too... pointy hat to me, I think...). Bye, Alexander. -- BOFH excuse #198: Post-it Note Sludge leaked into the monitor. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-emulation@FreeBSD.ORG Mon Oct 2 13:49:21 2006 Return-Path: X-Original-To: emulation@hub.freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 2E07416A4E6; Mon, 2 Oct 2006 13:49:21 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 384F943DA2; Mon, 2 Oct 2006 13:49:07 +0000 (GMT) (envelope-from vd@FreeBSD.org) Received: from freefall.freebsd.org (vd@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k92Dn7Mx019664; Mon, 2 Oct 2006 13:49:07 GMT (envelope-from vd@freefall.freebsd.org) Received: (from vd@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k92Dn7w8019660; Mon, 2 Oct 2006 13:49:07 GMT (envelope-from vd) Date: Mon, 2 Oct 2006 13:49:07 GMT From: Vasil Dimov Message-Id: <200610021349.k92Dn7w8019660@freefall.freebsd.org> To: vd@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, emulation@FreeBSD.org Cc: Subject: Re: ports/103901: [patch] bsd.linux-rpm.mk: remove support code for old linux distros X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 13:49:21 -0000 Synopsis: [patch] bsd.linux-rpm.mk: remove support code for old linux distros Responsible-Changed-From-To: freebsd-ports-bugs->emulation Responsible-Changed-By: vd Responsible-Changed-When: Mon Oct 2 13:48:41 UTC 2006 Responsible-Changed-Why: Assign to maintainers http://www.freebsd.org/cgi/query-pr.cgi?pr=103901 From owner-freebsd-emulation@FreeBSD.ORG Mon Oct 2 14:02:46 2006 Return-Path: X-Original-To: emulation@hub.freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C8F5416A417; Mon, 2 Oct 2006 14:02:46 +0000 (UTC) (envelope-from vd@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 19CC143D6E; Mon, 2 Oct 2006 14:02:27 +0000 (GMT) (envelope-from vd@FreeBSD.org) Received: from freefall.freebsd.org (vd@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k92E2DDk020867; Mon, 2 Oct 2006 14:02:13 GMT (envelope-from vd@freefall.freebsd.org) Received: (from vd@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k92E2DJw020863; Mon, 2 Oct 2006 14:02:13 GMT (envelope-from vd) Date: Mon, 2 Oct 2006 14:02:13 GMT From: Vasil Dimov Message-Id: <200610021402.k92E2DJw020863@freefall.freebsd.org> To: vd@FreeBSD.org, vd@FreeBSD.org, emulation@FreeBSD.org Cc: Subject: Re: ports/103901: [patch] bsd.linux-rpm.mk: remove support code for old linux distros X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 14:02:46 -0000 Synopsis: [patch] bsd.linux-rpm.mk: remove support code for old linux distros State-Changed-From-To: open->closed State-Changed-By: vd State-Changed-When: Mon Oct 2 14:01:41 UTC 2006 State-Changed-Why: Committed http://www.freebsd.org/cgi/query-pr.cgi?pr=103901 From owner-freebsd-emulation@FreeBSD.ORG Mon Oct 2 14:10:31 2006 Return-Path: X-Original-To: emulation@hub.freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C17E616A412 for ; Mon, 2 Oct 2006 14:10:31 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id A974343D6E for ; Mon, 2 Oct 2006 14:10:25 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k92EAPaQ021360 for ; Mon, 2 Oct 2006 14:10:25 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k92EAPKp021359; Mon, 2 Oct 2006 14:10:25 GMT (envelope-from gnats) Date: Mon, 2 Oct 2006 14:10:25 GMT Message-Id: <200610021410.k92EAPKp021359@freefall.freebsd.org> To: emulation@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/103901: commit references a PR X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 14:10:31 -0000 The following reply was made to PR ports/103901; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/103901: commit references a PR Date: Mon, 2 Oct 2006 14:01:25 +0000 (UTC) vd 2006-10-02 14:00:46 UTC FreeBSD ports repository Modified files: Mk bsd.linux-rpm.mk Log: Remove support code for old linux distros PR: ports/103901 Submitted by: vd Approved by: netchild Revision Changes Path 1.10 +2 -8 ports/Mk/bsd.linux-rpm.mk _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-emulation@FreeBSD.ORG Mon Oct 2 16:47:19 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 56D6116A415 for ; Mon, 2 Oct 2006 16:47:19 +0000 (UTC) (envelope-from mirya@matrix.ua) Received: from gw.matrix.kiev.ua (gw.matrix.kiev.ua [213.159.235.42]) by mx1.FreeBSD.org (Postfix) with ESMTP id DB97443D58 for ; Mon, 2 Oct 2006 16:47:18 +0000 (GMT) (envelope-from mirya@matrix.ua) Received: from gw.matrix.kiev.ua (localhost [127.0.0.1]) by gw.matrix.kiev.ua (Postfix) with ESMTP id 14BAB14BB02 for ; Mon, 2 Oct 2006 19:47:17 +0300 (EEST) Received: from miryanote (kikwidzegw.dev.matrix.kiev.ua [192.168.1.1]) by gw.matrix.kiev.ua (Postfix) with ESMTP id DF76314BB01 for ; Mon, 2 Oct 2006 19:47:16 +0300 (EEST) From: Kyryll A Mirnenko aka Mirya Organization: MATIX.ua To: freebsd-emulation@freebsd.org Date: Mon, 2 Oct 2006 19:47:20 +0300 User-Agent: KMail/1.9.4 MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610021947.21021.mirya@matrix.ua> X-Virus-Scanned: ClamAV using ClamSMTP Subject: linux driver compat X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 16:47:19 -0000 Hello. I have ac'97 winmodem but no driver for it for FreeBSD (seems like comon situation). I've recently noticed comms/hcfmdm winmodem driver appeared in ports and pkg-descr says it's just wrapped linux binary driver. The question is: is it possible to create such a generic wrapper for pci windmodems linux drivers like it was done in ndis(4) or maybe such solution already exists somewhere? -- Regards, Mirya ICQ #313898202 From owner-freebsd-emulation@FreeBSD.ORG Mon Oct 2 17:23:58 2006 Return-Path: X-Original-To: emulation@freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 94E2B16A519; Mon, 2 Oct 2006 17:23:58 +0000 (UTC) (envelope-from jhb@freebsd.org) Received: from server.baldwin.cx (66-23-211-162.clients.speedfactory.net [66.23.211.162]) by mx1.FreeBSD.org (Postfix) with ESMTP id 905E243D95; Mon, 2 Oct 2006 17:23:56 +0000 (GMT) (envelope-from jhb@freebsd.org) Received: from localhost.corp.yahoo.com (john@localhost [127.0.0.1]) (authenticated bits=0) by server.baldwin.cx (8.13.6/8.13.6) with ESMTP id k92HNpBx017897; Mon, 2 Oct 2006 13:23:52 -0400 (EDT) (envelope-from jhb@freebsd.org) From: John Baldwin To: freebsd-hackers@freebsd.org Date: Mon, 2 Oct 2006 12:51:15 -0400 User-Agent: KMail/1.9.1 References: <20061001163532.GA39376@stud.fit.vutbr.cz> In-Reply-To: <20061001163532.GA39376@stud.fit.vutbr.cz> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610021251.16453.jhb@freebsd.org> X-Greylist: Sender succeeded SMTP AUTH authentication, not delayed by milter-greylist-2.0.2 (server.baldwin.cx [127.0.0.1]); Mon, 02 Oct 2006 13:23:53 -0400 (EDT) X-Virus-Scanned: ClamAV 0.88.3/1973/Mon Oct 2 11:18:33 2006 on server.baldwin.cx X-Virus-Status: Clean X-Spam-Status: No, score=-4.4 required=4.2 tests=ALL_TRUSTED,AWL,BAYES_00 autolearn=ham version=3.1.3 X-Spam-Checker-Version: SpamAssassin 3.1.3 (2006-06-01) on server.baldwin.cx Cc: emulation@freebsd.org, hackers@freebsd.org Subject: Re: filedesc copying in fork() X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Mon, 02 Oct 2006 17:23:58 -0000 On Sunday 01 October 2006 12:35, Divacky Roman wrote: > hi > > I am trying to implement CLONE_FS in linuxolator clone(). This flags > is used when we want the newly created thread share root/cwd/umask. > > In FreeBSD we have a flags to fork1() RFFDG/RFCFDG. The first one > tells fork1() to copy the filedesc from old proc to the new one. > The later says we should create new filedesc struct. If neither > of these is given the filedesc struct is shared among the processes. > > is my analysis correct? I believe so. > currently in the linuxolator we dont set any of this flags passed to > fork1() ie. doing CLONE_FS semantics on default. > > I am a little confused from linux behaviour because it seems to me > that they dont share open file descriptors betweeen processes after > fork() which is strange. I have no idea on this one. -- John Baldwin From owner-freebsd-emulation@FreeBSD.ORG Wed Oct 4 13:23:03 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id A06E216A58E; Wed, 4 Oct 2006 13:23:03 +0000 (UTC) (envelope-from CharmaineStarkcw@arcor-ip.net) Received: from arcor-ip.net (dslb-088-073-196-004.pools.arcor-ip.net [88.73.196.4]) by mx1.FreeBSD.org (Postfix) with SMTP id B736943D49; Wed, 4 Oct 2006 13:23:02 +0000 (GMT) (envelope-from CharmaineStarkcw@arcor-ip.net) Message-Id: <730668659.419724@arcor-ip.net> From: "Judith Forrest" To: , Date: Wed, 04 Oct 2006 15:23:02 +0100 MIME-Version: 1.0 Cc: freebsd-firewire-owner@freebsd.org Subject: gurgle leadena X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Oct 2006 13:23:03 -0000 Energy Prices are near all time low, This is the best time to lock in a quality energy stock Introducing : WBRS Exchange Pinksheets Price: 0.05 3 Day Estimated : .50 ( +1000%) WILD BRUSH MAKES A MOVE! Wild Brush Acquires Additional Powder River Oil & Gas Lease. Who is Wild Brush? Wild Brush Energy is a diversified energy company whose primary goal is to identify and develop Oil & Coalbed Methane sites within the State of Wyoming. In addition, Wild Brush Energy continues to evaluate clean air alternative energy producing technologies such as Wind Power. Wild Brush trades in the U.S. under the symbol "WBRS." ADD THIS ENERGY STOCK TO YOUR LIST AND WATCH IT TRADE CLOSELY ON WEDNESDAY OCTOBER 4! Get In NOW !!! A place in the sun. Spring rain, Fall gold. Your name is mud. Weed it out. Season of mists and mellow fruitfulness. Save it for a rainy day. They're like two peas in a pod. Still waters run deep. A rose by any other name would smell as sweet. As uneasy as a cat near water. From owner-freebsd-emulation@FreeBSD.ORG Wed Oct 4 16:28:50 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 5E8D616A4AB; Wed, 4 Oct 2006 16:28:50 +0000 (UTC) (envelope-from admin@intron.ac) Received: from intron.ac (unknown [210.51.165.237]) by mx1.FreeBSD.org (Postfix) with ESMTP id 83DEA43D62; Wed, 4 Oct 2006 16:28:44 +0000 (GMT) (envelope-from admin@intron.ac) Received: from localhost (localhost [127.0.0.1]) (uid 1003) by intron.ac with local; Thu, 05 Oct 2006 00:28:42 +0800 id 0011400C.4523E13A.0001525D From: "Intron is my alias on the Internet" To: freebsd-emulation@freebsd.org, freebsd-hackers@freebsd.org Date: Thu, 05 Oct 2006 00:28:42 +0800 Mime-Version: 1.0 Content-Type: text/plain; charset="gb2312"; format=flowed Content-Transfer-Encoding: 7bit Message-ID: Cc: Subject: Survey on Video Capture API: BSD meteor(4) vs. Video for Linux 1/2 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 04 Oct 2006 16:28:50 -0000 If I would code to enhance video capture support for FreeBSD, what video capture API do you prefer? Your choices: 1. BSD Brooktree 848 (See bktr(4) and meteor(4)) This is *BSD-specific video capture API. So far only Brooktree (Conexant) 848/878 chip is supported by *BSD. Thus, actually this API is BT848/878-specific. 2. Video for Linux 1/2 (See http://v4l2spec.bytesex.org/) These are the video capture APIs for Linux. There are two versions: V4L and V4L2. Supported hardware list: http://linux.bytesex.org/v4l2/drivers.html (V4L2 mainly) http://mxhaard.free.fr/spca5xx.html (V4L) MPlayer supports both kinds of API's. But to gain Linux binary compatibility for FreeBSD, V4L/V4L2 must be introduced to FreeBSD. ------------------------------------------------------------------------ From Beijing, China From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 06:27:05 2006 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 492D116A718 for ; Thu, 5 Oct 2006 06:27:05 +0000 (UTC) (envelope-from kris@obsecurity.org) Received: from elvis.mu.org (elvis.mu.org [192.203.228.196]) by mx1.FreeBSD.org (Postfix) with ESMTP id EC23143D49 for ; Thu, 5 Oct 2006 06:27:04 +0000 (GMT) (envelope-from kris@obsecurity.org) Received: from obsecurity.dyndns.org (elvis.mu.org [192.203.228.196]) by elvis.mu.org (Postfix) with ESMTP id AA0D31A4D82 for ; Wed, 4 Oct 2006 23:27:04 -0700 (PDT) Received: by obsecurity.dyndns.org (Postfix, from userid 1000) id C8D24516CE; Thu, 5 Oct 2006 02:27:03 -0400 (EDT) Date: Thu, 5 Oct 2006 02:27:03 -0400 From: Kris Kennaway To: freebsd-emulation@FreeBSD.org Message-ID: <20061005062703.GA48074@xor.obsecurity.org> Mime-Version: 1.0 Content-Type: multipart/signed; micalg=pgp-sha1; protocol="application/pgp-signature"; boundary="uAKRQypu60I7Lcqm" Content-Disposition: inline User-Agent: Mutt/1.4.2.2i Cc: Subject: [ports-i386@FreeBSD.org: linux_kdump-1.5_2 failed on i386 7] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 06:27:05 -0000 --uAKRQypu60I7Lcqm Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Content-Transfer-Encoding: quoted-printable FYI; can you please investigate and/or report to the developers? If you are already aware of this problem but do not yet have a fix, please mark the port BROKEN in the appropriate case, so that users do not unexpectedly encounter it. See http://pointyhat.freebsd.org for the full log. Thanks, Kris ----- Forwarded message from User Ports-i386 ----- X-Original-To: kkenn@localhost Delivered-To: kkenn@localhost.obsecurity.org X-Original-To: kris@FreeBSD.org Delivered-To: kris@FreeBSD.org Date: Thu, 5 Oct 2006 06:15:43 GMT From: User Ports-i386 To: kris@FreeBSD.org Subject: linux_kdump-1.5_2 failed on i386 7 X-UIDL: 8Vg"!D/l!!8F8"!-/C"! X-Bogosity: Ham, tests=3Dbogofilter, spamicity=3D0.000000, version=3D1.0.3 building linux_kdump-1.5_2 on gohan34.freebsd.org in directory /x/tmp/7/chroot/65087 building for: 7.0-CURRENT i386 maintained by: freebsd-emulation@FreeBSD.org port directory: /usr/ports/devel/linux_kdump build started at Thu Oct 5 06:03:46 UTC 2006 FETCH_DEPENDS=3D PATCH_DEPENDS=3D EXTRACT_DEPENDS=3D BUILD_DEPENDS=3Dlinux_base-gentoo-stage3-2006.0_1.tbz RUN_DEPENDS=3D prefixes: LOCALBASE=3Dusr/local X11BASE=3Dusr/X11R6 add_pkg =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D> Using the FreeBSD source tree under /usr/src =3D=3D=3D> Set SRCDIR to use an alternate source tree =3D> linux_kdump-1.5.tar.gz doesn't seem to exist in /tmp/distfiles/. =3D> Attempting to fetch from ftp://ftp-master.freebsd.org/pub/FreeBSD/port= s/distfiles/. linux_kdump-1.5.tar.gz 6166 B 176 kBps =3D> MD5 Checksum OK for linux_kdump-1.5.tar.gz. =3D> SHA256 Checksum OK for linux_kdump-1.5.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Using the FreeBSD source tree under /usr/src =3D=3D=3D> Set SRCDIR to use an alternate source tree =3D=3D=3D> Extracting for linux_kdump-1.5_2 =3D> MD5 Checksum OK for linux_kdump-1.5.tar.gz. =3D> SHA256 Checksum OK for linux_kdump-1.5.tar.gz. =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg =3D=3D=3D> Patching for linux_kdump-1.5_2 =3D=3D=3D> Applying FreeBSD patches for linux_kdump-1.5_2 =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D add_pkg linux_base-gentoo-stage3-2006.0_1.tbz adding dependencies pkg_add linux_base-gentoo-stage3-2006.0_1.tbz lib/udev/devices/console: Can't restore device node: Operation not permitted lib/udev/devices/null: Can't restore device node: Operation not permitted lib/udev/devices/zero: Can't restore device node: Operation not permitted pkg_add: tar extract of /tmp/depends/linux_base-gentoo-stage3-2006.0_1.tbz = failed! pkg_add: unable to extract '/tmp/depends/linux_base-gentoo-stage3-2006.0_1.= tbz'! error in dependency linux_base-gentoo-stage3-2006.0_1.tbz, exiting =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D build of /usr/ports/devel/linux_kdump ended at Thu Oct 5 06:15:32 UTC 2006 ----- End forwarded message ----- --uAKRQypu60I7Lcqm Content-Type: application/pgp-signature Content-Disposition: inline -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.5 (FreeBSD) iD8DBQFFJKW3Wry0BWjoQKURAqImAKD+F8W1rMCJFGUiEpdg7y6Wg5yW5QCg8e5V 2Y8fi6NsyyQcr7v9xzVlQY8= =8JC0 -----END PGP SIGNATURE----- --uAKRQypu60I7Lcqm-- From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 10:36:40 2006 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id D7D9716A403; Thu, 5 Oct 2006 10:36:40 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2E37F43D46; Thu, 5 Oct 2006 10:36:39 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F128.dip.t-dialin.net [84.165.241.40]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k95AZc0c067165; Thu, 5 Oct 2006 12:35:39 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (webmail.Leidinger.net [192.168.1.102]) by Andro-Beta.Leidinger.net (8.13.4/8.13.4) with ESMTP id k95AaZ5b000795; Thu, 5 Oct 2006 12:36:35 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Thu, 05 Oct 2006 12:36:35 +0200 Message-ID: <20061005123635.pyqlxbjlq84g0k8g@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Thu, 05 Oct 2006 12:36:35 +0200 From: Alexander Leidinger To: Intron is my alias on the Internet References: In-Reply-To: MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: 7bit User-Agent: Internet Messaging Program (IMP) H3 (4.1.3) / FreeBSD-7.0 X-Virus-Scanned: by amavisd-new X-Mailman-Approved-At: Thu, 05 Oct 2006 11:29:46 +0000 Cc: freebsd-hackers@FreeBSD.org, freebsd-emulation@FreeBSD.org, multimedia@FreeBSD.org Subject: Re: Survey on Video Capture API: BSD meteor(4) vs. Video for Linux 1/2 X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 10:36:41 -0000 Quoting Intron is my alias on the Internet (from Thu, 05 Oct 2006 00:28:42 +0800): > If I would code to enhance video capture support for FreeBSD, what video > capture API do you prefer? Your choices: Search the archive of multimedia@ (CCed, maybe someone has a reference), this is a topic which was dicussed there a lot. Bye, Alexander. -- I disagree with what you say, but will defend to the death your right to tell such LIES! http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID = B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID = 72077137 From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 10:38:43 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EB6016A407; Thu, 5 Oct 2006 10:38:43 +0000 (UTC) (envelope-from Alexander@Leidinger.net) Received: from www.ebusiness-leidinger.de (jojo.ms-net.de [84.16.236.246]) by mx1.FreeBSD.org (Postfix) with ESMTP id D6EA343D5A; Thu, 5 Oct 2006 10:38:42 +0000 (GMT) (envelope-from Alexander@Leidinger.net) Received: from Andro-Beta.Leidinger.net (p54A5F128.dip.t-dialin.net [84.165.241.40]) (authenticated bits=0) by www.ebusiness-leidinger.de (8.13.6/8.13.6) with ESMTP id k95AbhwA067211; Thu, 5 Oct 2006 12:37:43 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from localhost (webmail.Leidinger.net [192.168.1.102]) by Andro-Beta.Leidinger.net (8.13.4/8.13.4) with ESMTP id k95Ace8w001078; Thu, 5 Oct 2006 12:38:40 +0200 (CEST) (envelope-from Alexander@Leidinger.net) Received: from pslux.cec.eu.int (pslux.cec.eu.int [158.169.9.14]) by webmail.leidinger.net (Horde MIME library) with HTTP; Thu, 05 Oct 2006 12:38:40 +0200 Message-ID: <20061005123840.f5s2faso00sgs4k4@webmail.leidinger.net> X-Priority: 3 (Normal) Date: Thu, 05 Oct 2006 12:38:40 +0200 From: Alexander Leidinger To: Kris Kennaway References: <20061005062703.GA48074@xor.obsecurity.org> In-Reply-To: <20061005062703.GA48074@xor.obsecurity.org> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8; DelSp="Yes"; format="flowed" Content-Disposition: inline Content-Transfer-Encoding: quoted-printable User-Agent: Internet Messaging Program (IMP) H3 (4.1.3) / FreeBSD-7.0 X-Virus-Scanned: by amavisd-new X-Mailman-Approved-At: Thu, 05 Oct 2006 11:30:04 +0000 Cc: freebsd-emulation@freebsd.org, gabor@freebsd.org Subject: Re: [ports-i386@FreeBSD.org: linux_kdump-1.5_2 failed on i386 7] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 10:38:43 -0000 Quoting Kris Kennaway (from Thu, 5 Oct 2006 =20 02:27:03 -0400): > =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D > add_pkg linux_base-gentoo-stage3-2006.0_1.tbz > adding dependencies > pkg_add linux_base-gentoo-stage3-2006.0_1.tbz > lib/udev/devices/console: Can't restore device node: Operation not permitt= ed > lib/udev/devices/null: Can't restore device node: Operation not permitted > lib/udev/devices/zero: Can't restore device node: Operation not permitted > pkg_add: tar extract of =20 > /tmp/depends/linux_base-gentoo-stage3-2006.0_1.tbz failed! This is a problem in the gentoo linux_base port which is not =20 maintained by emulation@. To gabor@: maybe this can be solved with symlinks to the linux dev =20 directory (where the FreeBSD devfs should be mounted by the user). Bye, Alexander. --=20 Malek's Law: =09Any simple idea will be worded in the most complicated way. http://www.Leidinger.net Alexander @ Leidinger.net: PGP ID =3D B0063FE7 http://www.FreeBSD.org netchild @ FreeBSD.org : PGP ID =3D 72077137 From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 15:10:50 2006 Return-Path: X-Original-To: freebsd-emulation@FreeBSD.org Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id EAC9316A407 for ; Thu, 5 Oct 2006 15:10:50 +0000 (UTC) (envelope-from bsam@bsam.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id ED8A243D69 for ; Thu, 5 Oct 2006 15:10:49 +0000 (GMT) (envelope-from bsam@bsam.ru) Received: from srv.sem.ipt.ru ([192.168.12.1] helo=bsam.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GVUs4-000Fs3-Pg for freebsd-emulation@FreeBSD.org; Thu, 05 Oct 2006 19:10:48 +0400 Received: from bsam by bsam.ru with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GVUtb-000CXY-3M for freebsd-emulation@FreeBSD.org; Thu, 05 Oct 2006 19:12:23 +0400 To: freebsd-emulation@FreeBSD.org From: Boris Samorodov Date: Thu, 05 Oct 2006 19:12:23 +0400 Message-ID: <14021768@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: Boris Samorodov Cc: Subject: Re: Need to Emulate Linux.. X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 15:10:51 -0000 Just for archives. ----- Boris Samorodov wrote: > On Thu, 05 Oct 2006 10:32:23 -0400 B. Cook wrote: > >> And I'm wondering what is 'lighter/smaller' > >> linux_base-fc4 or linux_base-suse-9.3 > Hello and thank you for the response. fc4 worked great and was quite a small/quick install. [/usr/local/ezproxy]# 41 > ./ezproxy EZproxy for Linux 4.0d GA (2006-09-12) Thank you for your purchase of this registered copy of EZproxy. For further information, visit http://www.usefulutilities.com Guardian initialized Guardian starting EZproxy EZproxy for Linux 4.0d GA (2006-09-12) Thank you for your purchase of this registered copy of EZproxy. For further information, visit http://www.usefulutilities.com Thanks again. ----- WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 16:18:45 2006 Return-Path: X-Original-To: emulation@hub.freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6123616A403; Thu, 5 Oct 2006 16:18:45 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 36C0F43D46; Thu, 5 Oct 2006 16:18:44 +0000 (GMT) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k95GIi9a068045; Thu, 5 Oct 2006 16:18:44 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k95GIiSb068041; Thu, 5 Oct 2006 16:18:44 GMT (envelope-from edwin) Date: Thu, 5 Oct 2006 16:18:44 GMT From: Edwin Groothuis Message-Id: <200610051618.k95GIiSb068041@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, emulation@FreeBSD.org Cc: Subject: Re: ports/104015: bsd.linux-rpm.org - comment cleanup X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 16:18:45 -0000 Synopsis: bsd.linux-rpm.org - comment cleanup Responsible-Changed-From-To: freebsd-ports-bugs->emulation Responsible-Changed-By: edwin Responsible-Changed-When: Thu Oct 5 16:18:43 UTC 2006 Responsible-Changed-Why: bsd.linux-rpm.mk is emulation territory http://www.freebsd.org/cgi/query-pr.cgi?pr=104015 From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 17:21:20 2006 Return-Path: X-Original-To: emulation@hub.freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id B2FFF16A40F; Thu, 5 Oct 2006 17:21:20 +0000 (UTC) (envelope-from bsam@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 6D3F043D55; Thu, 5 Oct 2006 17:21:20 +0000 (GMT) (envelope-from bsam@FreeBSD.org) Received: from freefall.freebsd.org (bsam@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k95HLKB3081158; Thu, 5 Oct 2006 17:21:20 GMT (envelope-from bsam@freefall.freebsd.org) Received: (from bsam@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k95HLKZ0081154; Thu, 5 Oct 2006 17:21:20 GMT (envelope-from bsam) Date: Thu, 5 Oct 2006 17:21:20 GMT From: Boris Samorodov Message-Id: <200610051721.k95HLKZ0081154@freefall.freebsd.org> To: edwin@mavetju.org, bsam@FreeBSD.org, emulation@FreeBSD.org Cc: Subject: Re: ports/104015: bsd.linux-rpm.org - comment cleanup X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 17:21:20 -0000 Synopsis: bsd.linux-rpm.org - comment cleanup State-Changed-From-To: open->closed State-Changed-By: bsam State-Changed-When: Thu Oct 5 17:21:05 UTC 2006 State-Changed-Why: Committed, thanks! http://www.freebsd.org/cgi/query-pr.cgi?pr=104015 From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 17:31:12 2006 Return-Path: X-Original-To: emulation@hub.freebsd.org Delivered-To: freebsd-emulation@FreeBSD.ORG Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4EA416A4C2 for ; Thu, 5 Oct 2006 17:31:12 +0000 (UTC) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [216.136.204.21]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9A1A943D88 for ; Thu, 5 Oct 2006 17:30:31 +0000 (GMT) (envelope-from gnats@FreeBSD.org) Received: from freefall.freebsd.org (gnats@localhost [127.0.0.1]) by freefall.freebsd.org (8.13.4/8.13.4) with ESMTP id k95HUVep081472 for ; Thu, 5 Oct 2006 17:30:31 GMT (envelope-from gnats@freefall.freebsd.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.13.4/8.13.4/Submit) id k95HUVKE081471; Thu, 5 Oct 2006 17:30:31 GMT (envelope-from gnats) Date: Thu, 5 Oct 2006 17:30:31 GMT Message-Id: <200610051730.k95HUVKE081471@freefall.freebsd.org> To: emulation@FreeBSD.org From: dfilter@FreeBSD.ORG (dfilter service) Cc: Subject: Re: ports/104015: commit references a PR X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: dfilter service List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 17:31:13 -0000 The following reply was made to PR ports/104015; it has been noted by GNATS. From: dfilter@FreeBSD.ORG (dfilter service) To: bug-followup@FreeBSD.org Cc: Subject: Re: ports/104015: commit references a PR Date: Thu, 5 Oct 2006 17:21:06 +0000 (UTC) bsam 2006-10-05 17:20:25 UTC FreeBSD ports repository Modified files: Mk bsd.linux-rpm.mk Log: Redo the comments so they match the other bsd.x.mk files. PR: 104015 Submitted by: whitespace police (edwin) Revision Changes Path 1.11 +23 -23 ports/Mk/bsd.linux-rpm.mk _______________________________________________ cvs-all@freebsd.org mailing list http://lists.freebsd.org/mailman/listinfo/cvs-all To unsubscribe, send any mail to "cvs-all-unsubscribe@freebsd.org" From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 18:05:37 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 6B63D16A531 for ; Thu, 5 Oct 2006 18:05:37 +0000 (UTC) (envelope-from gabor@FreeBSD.org) Received: from server.t-hosting.hu (server.t-hosting.hu [217.20.133.7]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8D9FE43E66 for ; Thu, 5 Oct 2006 18:03:46 +0000 (GMT) (envelope-from gabor@FreeBSD.org) Received: from localhost (localhost [127.0.0.1]) by server.t-hosting.hu (Postfix) with ESMTP id 1AD8799E5DF; Thu, 5 Oct 2006 20:03:29 +0200 (CEST) X-Virus-Scanned: amavisd-new at t-hosting.hu Received: from server.t-hosting.hu ([127.0.0.1]) by localhost (server.t-hosting.hu [127.0.0.1]) (amavisd-new, port 10024) with LMTP id yRyOyM+znPVj; Thu, 5 Oct 2006 20:03:26 +0200 (CEST) Received: from [192.168.2.186] (catv-50635cb6.catv.broadband.hu [80.99.92.182]) by server.t-hosting.hu (Postfix) with ESMTP id 80ACF99EB6E; Thu, 5 Oct 2006 20:03:26 +0200 (CEST) Message-ID: <452548EA.6030303@FreeBSD.org> Date: Thu, 05 Oct 2006 20:03:22 +0200 From: =?UTF-8?B?R8OhYm9yIEvDtnZlc2TDoW4=?= User-Agent: Thunderbird 1.5.0.7 (Windows/20060909) MIME-Version: 1.0 To: Alexander Leidinger References: <20061005062703.GA48074@xor.obsecurity.org> <20061005123840.f5s2faso00sgs4k4@webmail.leidinger.net> In-Reply-To: <20061005123840.f5s2faso00sgs4k4@webmail.leidinger.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@freebsd.org, Kris Kennaway Subject: Re: [ports-i386@FreeBSD.org: linux_kdump-1.5_2 failed on i386 7] X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 18:05:37 -0000 Alexander Leidinger wrote: > Quoting Kris Kennaway (from Thu, 5 Oct 2006 > 02:27:03 -0400): > >> ======================================== >> add_pkg linux_base-gentoo-stage3-2006.0_1.tbz >> adding dependencies >> pkg_add linux_base-gentoo-stage3-2006.0_1.tbz >> lib/udev/devices/console: Can't restore device node: Operation not >> permitted >> lib/udev/devices/null: Can't restore device node: Operation not >> permitted >> lib/udev/devices/zero: Can't restore device node: Operation not >> permitted >> pkg_add: tar extract of >> /tmp/depends/linux_base-gentoo-stage3-2006.0_1.tbz failed! > > This is a problem in the gentoo linux_base port which is not > maintained by emulation@. > > To gabor@: maybe this can be solved with symlinks to the linux dev > directory (where the FreeBSD devfs should be mounted by the user). > > Those files must be excluded from the install of gentoo ports as other device nodes are. I'll fix this before the freeze, thanks for the report. -- Cheers, Gabor From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 19:14:44 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id F117E16A403; Thu, 5 Oct 2006 19:14:44 +0000 (UTC) (envelope-from Geoff.Buckingham@reuters.com) Received: from lonsmime01.rit.reuters.com (lonsmimeo.rit.reuters.com [192.165.213.23]) by mx1.FreeBSD.org (Postfix) with ESMTP id 813F843D7F; Thu, 5 Oct 2006 19:14:31 +0000 (GMT) (envelope-from Geoff.Buckingham@reuters.com) Received: from eupig2 (unverified [129.1.30.40]) by lonsmime01.rit.reuters.com (Content Technologies SMTPRS 4.3.19) with ESMTP id ; Thu, 5 Oct 2006 19:14:23 +0000 Received: from lonsmsxb01.emea.ime.reuters.com ([10.14.113.6]) by eupig2.dtc.lon.ime.reuters.com (PMDF V6.2-1x10 #31217) with ESMTP id <0J6O00BSVG3YKS@eupig2.dtc.lon.ime.reuters.com>; Thu, 05 Oct 2006 19:14:22 +0000 (GMT) Received: from LONSMSXM04.emea.ime.reuters.com ([10.14.113.14]) by lonsmsxb01.emea.ime.reuters.com with Microsoft SMTPSVC (6.0.3790.0); Thu, 05 Oct 2006 20:14:22 +0100 Date: Thu, 05 Oct 2006 20:14:00 +0100 From: Geoff Buckingham To: freebsd-ports@freebsd.org, freebsd-emulation@freebsd.org Message-id: <8753F8EA457BFF4A9707CADA143C8F6801ADD5C6@LONSMSXM04.emea.ime.reuters.com> MIME-version: 1.0 X-MIMEOLE: Produced By Microsoft Exchange V6.5 Content-type: text/plain; charset="us-ascii" Content-transfer-encoding: quoted-printable Thread-Topic: Anyone got a working rpm4.1 port? Thread-Index: AcbosmoNLjqY1+5VTkGzGNdmFRrzjg== Content-class: urn:content-classes:message X-MS-Has-Attach: X-MS-TNEF-Correlator: X-OriginalArrivalTime: 05 Oct 2006 19:14:22.0699 (UTC) FILETIME=[771F23B0:01C6E8B2] Cc: Subject: Anyone got a working rpm4.1 port? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 19:14:45 -0000 Anyone got rpm 4.1 working natively on FreeBSD? (This seems to be when rpmts.h first appeared) This email was sent to you by Reuters, the global news and information comp= any.=20 To find out more about Reuters visit www.about.reuters.com Any views expressed in this message are those of the individual sender, exc= ept where the sender specifically states them to be the views of Reuters Lt= d. From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 19:32:52 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E6FFF16A4AB; Thu, 5 Oct 2006 19:32:52 +0000 (UTC) (envelope-from bsam@bsam.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 5D0DD43D8F; Thu, 5 Oct 2006 19:32:25 +0000 (GMT) (envelope-from bsam@bsam.ru) Received: from admin.sem.ipt.ru ([192.168.12.1] helo=bsam.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GVYx9-000GbN-Mk; Thu, 05 Oct 2006 23:32:19 +0400 Received: from bsam by bsam.ru with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GVYyg-000CmS-Kn; Thu, 05 Oct 2006 23:33:54 +0400 To: Geoff Buckingham References: <8753F8EA457BFF4A9707CADA143C8F6801ADD5C6@LONSMSXM04.emea.ime.reuters.com> From: Boris Samorodov Date: Thu, 05 Oct 2006 23:33:54 +0400 In-Reply-To: <8753F8EA457BFF4A9707CADA143C8F6801ADD5C6@LONSMSXM04.emea.ime.reuters.com> (Geoff Buckingham's message of "Thu, 05 Oct 2006 20:14:00 +0100") Message-ID: <92580541@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: Boris Samorodov Cc: freebsd-emulation@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Anyone got a working rpm4.1 port? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 19:32:53 -0000 On Thu, 05 Oct 2006 20:14:00 +0100 Geoff Buckingham wrote: > Anyone got rpm 4.1 working natively on FreeBSD? (This seems to be when > rpmts.h first appeared) I tried to use it (archivers/rpm4) neally a year ago. Other than database library names differ from those of rpm3 all worked as expected. Though I switched back to rpm3 since our linux ports used that version. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 19:34:16 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 8EDFB16A417; Thu, 5 Oct 2006 19:34:16 +0000 (UTC) (envelope-from bsam@bsam.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id EEDF843D79; Thu, 5 Oct 2006 19:34:15 +0000 (GMT) (envelope-from bsam@bsam.ru) Received: from stat.sem.ipt.ru ([192.168.12.1] helo=bsam.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GVYz1-000GcH-0x; Thu, 05 Oct 2006 23:34:15 +0400 Received: from bsam by bsam.ru with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GVZ0Y-000CmY-03; Thu, 05 Oct 2006 23:35:50 +0400 To: Geoff Buckingham References: <8753F8EA457BFF4A9707CADA143C8F6801ADD5C6@LONSMSXM04.emea.ime.reuters.com> <92580541@srv.sem.ipt.ru> From: Boris Samorodov Date: Thu, 05 Oct 2006 23:35:49 +0400 In-Reply-To: <92580541@srv.sem.ipt.ru> (Boris Samorodov's message of "Thu, 05 Oct 2006 23:33:54 +0400") Message-ID: <26500426@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Sender: Boris Samorodov Cc: freebsd-emulation@freebsd.org, freebsd-ports@freebsd.org Subject: Re: Anyone got a working rpm4.1 port? X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 19:34:16 -0000 On Thu, 05 Oct 2006 23:33:54 +0400 Boris Samorodov wrote: > On Thu, 05 Oct 2006 20:14:00 +0100 Geoff Buckingham wrote: > > Anyone got rpm 4.1 working natively on FreeBSD? (This seems to be when > > rpmts.h first appeared) > I tried to use it (archivers/rpm4) neally a year ago. Other than > database library names differ from those of rpm3 all worked as > expected. Though I switched back to rpm3 since our linux ports used > that version. Ouch, never mind, you asked about 4.1. That ports version has 4.0. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Thu Oct 5 23:13:42 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id CFDFA16A40F for ; Thu, 5 Oct 2006 23:13:42 +0000 (UTC) (envelope-from jas@math.jussieu.fr) Received: from shiva.jussieu.fr (shiva.jussieu.fr [134.157.0.129]) by mx1.FreeBSD.org (Postfix) with ESMTP id 8C92B43D55 for ; Thu, 5 Oct 2006 23:13:40 +0000 (GMT) (envelope-from jas@math.jussieu.fr) Received: from riemann.math.jussieu.fr (riemann.math.jussieu.fr [134.157.13.3]) by shiva.jussieu.fr (8.13.7/jtpda-5.4) with ESMTP id k95NDdgB023705 for ; Fri, 6 Oct 2006 01:13:39 +0200 (CEST) X-Ids: 165 Received: from cantor.math.jussieu.fr (cantor.math.jussieu.fr [134.157.13.2]) by riemann.math.jussieu.fr (8.13.8/jtpda-5.4) with ESMTP id k95NDbmq046997 for ; Fri, 6 Oct 2006 01:13:37 +0200 (CEST) Received: from cantor.math.jussieu.fr (jas@localhost [127.0.0.1]) by cantor.math.jussieu.fr (8.13.1/jtpda-5.4) with ESMTP id k95NDcW9061561 for ; Fri, 6 Oct 2006 01:13:38 +0200 (CEST) Received: (from jas@localhost) by cantor.math.jussieu.fr (8.13.1/8.13.1/Submit) id k95NDcMM061560 for freebsd-emulation@freebsd.org; Fri, 6 Oct 2006 01:13:38 +0200 (CEST) (envelope-from jas) Date: Fri, 6 Oct 2006 01:13:38 +0200 From: Albert Shih To: freebsd-emulation@freebsd.org Message-ID: <20061005231338.GB59300@math.jussieu.fr> Mime-Version: 1.0 Content-Type: text/plain; charset=unknown-8bit Content-Disposition: inline Content-Transfer-Encoding: 8bit User-Agent: Mutt/1.5.11 X-Spam-Score: 0.001 () UNPARSEABLE_RELAY X-Scanned-By: MIMEDefang 2.57 on 134.157.13.3 X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-2.0.2 (shiva.jussieu.fr [134.157.0.165]); Fri, 06 Oct 2006 01:13:39 +0200 (CEST) X-Virus-Scanned: ClamAV 0.88.2/1999/Thu Oct 5 19:35:38 2006 on shiva.jussieu.fr X-Virus-Status: Clean X-Miltered: at shiva.jussieu.fr with ID 452591A3.001 by Joe's j-chkmail (http://j-chkmail.ensmp.fr)! Subject: Linux & Maple X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: shih@math.jussieu.fr List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 05 Oct 2006 23:13:42 -0000 Hi All First I send a post in this mailing list. (I've just send something equivalent on freebsd-stable, but I don't known where the problem is) I've a big problem with a linux software. I'm runnign FreeBSD 6-Stable since 6.0 and I need two linux software, first is Maple 9.5 version, and second is Matlab. Since 6.0 (event 5.x) everything work fine with Linux emulation. Recently (last time I've check is two weeks ago) it's both work. After a recent cvsup & buildworld, now maple don't work, I've nothing when I type my command (no crash, no core-dump, no message, no application :-( ) But matlab continu to work. Anyone have a idea ? Regards. -- Albert SHIH Universite de Paris 7 (Denis DIDEROT) U.F.R. de Mathematiques. 7 ième étage, plateau D, bureau 10 Heure local/Local time: Fri Oct 6 01:10:11 CEST 2006 From owner-freebsd-emulation@FreeBSD.ORG Fri Oct 6 05:18:28 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id E4E9C16A403 for ; Fri, 6 Oct 2006 05:18:28 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id 9904743D45 for ; Fri, 6 Oct 2006 05:18:23 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from sp34.ipt.ru ([217.147.20.50] helo=bs1.sp34.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GVi6F-000ILM-Ie; Fri, 06 Oct 2006 09:18:19 +0400 Received: from bsam by bs1.sp34.ru with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GViAE-0000CB-Ad; Fri, 06 Oct 2006 09:22:26 +0400 To: shih@math.jussieu.fr References: <20061005231338.GB59300@math.jussieu.fr> From: Boris Samorodov Date: Fri, 06 Oct 2006 09:22:26 +0400 In-Reply-To: <20061005231338.GB59300@math.jussieu.fr> (Albert Shih's message of "Fri, 6 Oct 2006 01:13:38 +0200") Message-ID: <35460941@bs1.sp34.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@freebsd.org Subject: Re: Linux & Maple X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Fri, 06 Oct 2006 05:18:29 -0000 On Fri, 6 Oct 2006 01:13:38 +0200 Albert Shih wrote: > First I send a post in this mailing list. (I've just send something > equivalent on freebsd-stable, but I don't known where the problem is) > I've a big problem with a linux software. I'm runnign FreeBSD 6-Stable > since 6.0 and I need two linux software, first is Maple 9.5 version, and > second is Matlab. > Since 6.0 (event 5.x) everything work fine with Linux emulation. Recently > (last time I've check is two weeks ago) it's both work. > After a recent cvsup & buildworld, now maple don't work, I've nothing when How long was that jump? Can you say exactly from which version to which version did you upgrade? Did you upgrade your ports as well? > I type my command (no crash, no core-dump, no message, no application :-( ) Please run # ktrace -i locate ktrace.out somewhere on http:// or ftp:// and give me a link. > But matlab continu to work. Please show the output of: $ uname -a Which version of mathlab do you use? Which linux port version do you use? > Anyone have a idea ? Hope I'll have some after your answers. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve From owner-freebsd-emulation@FreeBSD.ORG Sat Oct 7 10:59:18 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id C836816A403 for ; Sat, 7 Oct 2006 10:59:18 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from outmx025.isp.belgacom.be (outmx025.isp.belgacom.be [195.238.4.49]) by mx1.FreeBSD.org (Postfix) with ESMTP id 2A0FE43D46 for ; Sat, 7 Oct 2006 10:59:17 +0000 (GMT) (envelope-from tijl@ulyssis.org) Received: from outmx025.isp.belgacom.be (localhost [127.0.0.1]) by outmx025.isp.belgacom.be (8.12.11.20060308/8.12.11/Skynet-OUT-2.22) with ESMTP id k97AxDiB031264 for ; Sat, 7 Oct 2006 12:59:14 +0200 (envelope-from ) Received: from kalimero.kotnet.org (25.202-245-81.adsl-dyn.isp.belgacom.be [81.245.202.25]) by outmx025.isp.belgacom.be (8.12.11.20060308/8.12.11/Skynet-OUT-2.22) with ESMTP id k97AxCUt031245; Sat, 7 Oct 2006 12:59:12 +0200 (envelope-from ) Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.13.8/8.13.8) with ESMTP id k97AvMIo009256; Sat, 7 Oct 2006 12:57:22 +0200 (CEST) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: freebsd-emulation@freebsd.org Date: Sat, 7 Oct 2006 12:57:19 +0200 User-Agent: KMail/1.9.4 References: <20061005231338.GB59300@math.jussieu.fr> <35460941@bs1.sp34.ru> In-Reply-To: <35460941@bs1.sp34.ru> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200610071257.21544.tijl@ulyssis.org> Cc: Subject: Re: Linux & Maple X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Oct 2006 10:59:18 -0000 > On Fri, 6 Oct 2006 01:13:38 +0200 Albert Shih wrote: > > > I've a big problem with a linux software. I'm runnign FreeBSD > > 6-Stable since 6.0 and I need two linux software, first is Maple > > 9.5 version, and second is Matlab. > > > > Since 6.0 (event 5.x) everything work fine with Linux emulation. > > Recently (last time I've check is two weeks ago) it's both work. > > > > After a recent cvsup & buildworld, now maple don't work, I've > > nothing when I type my command (no crash, no core-dump, no message, > > no application :-( ) But matlab continu to work. I don't often use these, but now that I ran them for a test, I seem to be having problems as well. However, I'm running current and for me it's the other way around: Maple 9.5.1 works, Matlab 7.0.1 doesn't. In my case I've nailed it down to a problem with ls. The following shell script works with /bin/sh, but not with /usr/compat/linux/bin/sh. In the latter case it errors out with: ls: error while loading shared libraries: /usr/lib/librt.so.1: ELF file OS ABI invalid ---simple shell script--- #! /bin/sh ls ---end of simple shell script--- From owner-freebsd-emulation@FreeBSD.ORG Sat Oct 7 16:20:12 2006 Return-Path: X-Original-To: freebsd-emulation@freebsd.org Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id 722D616A415 for ; Sat, 7 Oct 2006 16:20:12 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from mail.ipt.ru (mail.ipt.ru [80.253.10.82]) by mx1.FreeBSD.org (Postfix) with ESMTP id AB53143D4C for ; Sat, 7 Oct 2006 16:20:11 +0000 (GMT) (envelope-from bsam@ipt.ru) Received: from doc.sem.ipt.ru ([192.168.12.1] helo=ipt.ru) by mail.ipt.ru with esmtp (Exim 4.62 (FreeBSD)) (envelope-from ) id 1GWEuG-000NhQ-GQ; Sat, 07 Oct 2006 20:20:08 +0400 Received: from bsam by ipt.ru with local (Exim 4.63 (FreeBSD)) (envelope-from ) id 1GWEvt-000FCE-VV; Sat, 07 Oct 2006 20:21:49 +0400 To: Tijl Coosemans References: <20061005231338.GB59300@math.jussieu.fr> <35460941@bs1.sp34.ru> <200610071257.21544.tijl@ulyssis.org> From: Boris Samorodov Date: Sat, 07 Oct 2006 20:21:49 +0400 In-Reply-To: <200610071257.21544.tijl@ulyssis.org> (Tijl Coosemans's message of "Sat, 7 Oct 2006 12:57:19 +0200") Message-ID: <92567122@srv.sem.ipt.ru> User-Agent: Gnus/5.11 (Gnus v5.11) Emacs/22.0.50 (berkeley-unix) MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: freebsd-emulation@freebsd.org Subject: Re: Linux & Maple X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sat, 07 Oct 2006 16:20:12 -0000 On Sat, 7 Oct 2006 12:57:19 +0200 Tijl Coosemans wrote: > > On Fri, 6 Oct 2006 01:13:38 +0200 Albert Shih wrote: > > > > > I've a big problem with a linux software. I'm runnign FreeBSD > > > 6-Stable since 6.0 and I need two linux software, first is Maple > > > 9.5 version, and second is Matlab. > > > > > > Since 6.0 (event 5.x) everything work fine with Linux emulation. > > > Recently (last time I've check is two weeks ago) it's both work. > > > > > > After a recent cvsup & buildworld, now maple don't work, I've > > > nothing when I type my command (no crash, no core-dump, no message, > > > no application :-( ) But matlab continu to work. > I don't often use these, but now that I ran them for a test, I seem to > be having problems as well. However, I'm running current and for me > it's the other way around: Maple 9.5.1 works, Matlab 7.0.1 doesn't. > In my case I've nailed it down to a problem with ls. The following > shell script works with /bin/sh, but not with /usr/compat/linux/bin/sh. > In the latter case it errors out with: > ls: error while loading shared libraries: /usr/lib/librt.so.1: ELF file > OS ABI invalid > ---simple shell script--- > #! /bin/sh > ls > ---end of simple shell script--- That case seems to be a different one. Please, make sure that you followed advices given at /usr/ports/UPDATING about upgrading (and using) linux_base-fc4. If all advices are in vain, let me know. WBR -- Boris Samorodov (bsam) Research Engineer, http://www.ipt.ru Telephone & Internet SP FreeBSD committer, http://www.FreeBSD.org The Power To Serve