From owner-freebsd-emulation@FreeBSD.ORG Sun Aug 30 00:49:21 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 76349106566C; Sun, 30 Aug 2009 00:49:21 +0000 (UTC) (envelope-from av1474@comtv.ru) Received: from akado.ru (fe02x03-cgp.akado.ru [77.232.31.165]) by mx1.freebsd.org (Postfix) with ESMTP id B78F68FC15; Sun, 30 Aug 2009 00:49:19 +0000 (UTC) Received: from [10.0.66.9] ([10.0.66.9] verified) by fe02-cgp.akado.ru (CommuniGate Pro SMTP 5.2.13) with ESMTP id 73911356; Sun, 30 Aug 2009 03:49:15 +0400 Date: Sun, 30 Aug 2009 03:49:17 +0400 (MSD) From: malc X-X-Sender: malc@linmac.oyster.ru To: Juergen Lock In-Reply-To: <20090829222339.GA93608@triton8.kn-bremen.de> Message-ID: References: <20090829222339.GA93608@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: TEXT/PLAIN; charset=US-ASCII Cc: freebsd-emulation@FreeBSD.org, qemu-devel@nongnu.org, Jung-uk Kim Subject: Re: [Qemu-devel] experimental FreeBSD qemu-devel git head port update for testing 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, 30 Aug 2009 00:49:21 -0000 On Sun, 30 Aug 2009, Juergen Lock wrote: > Hi! > > Jan Kiszka asked me if the unstable guest timer irq problem still > exists on qemu git head, so I made an update for that today: > http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch > (and found out it does.) > > The bad news (for FreeBSD users anyway) is kqemu support has now been > removed as `promised' (by the upstream qemu developers), so testing this > version is probably less interesting for many FreeBSD users than the > qemu 0.11 stable branch snapshot I posted about here, > http://lists.freebsd.org/pipermail/freebsd-emulation/2009-August/006646.html > but e.g. users of non-x86 targets probably will still be interested. > > Also the pcap patch stopped working in this snapshot and I don't yet > know why. (I think the original version of that patch was submitted by > Jung-uk Kim, maybe he has an idea; Cc'd.) > > Other misc notes: > > 1. I had to replace the line > CFLAGS += $(call cc-option, $(CFLAGS), -fno-stack-protector,"") > by > CFLAGS += -fno-stack-protector > in qemu/pc-bios/optionrom/Makefile because now make complained about > recursive use of CFLAGS (in addition to forcing use of a newer as(1) > for multiboot.S as already mentioned for the 0.11 rc, see > files/patch-pc-bios-optionrom-Makefile in the update.) Less violent way to have it is: CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-stack-protector,"") [..snip..] -- mailto:av1474@comtv.ru From owner-freebsd-emulation@FreeBSD.ORG Sun Aug 30 19:12:10 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0C595106566B; Sun, 30 Aug 2009 19:12:09 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 884E48FC08; Sun, 30 Aug 2009 19:12:09 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 05A2D1E00366; Sun, 30 Aug 2009 21:12:06 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n7UJ93Bl042354; Sun, 30 Aug 2009 21:09:03 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.3/8.14.3/Submit) id n7UJ92A7042353; Sun, 30 Aug 2009 21:09:02 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sun, 30 Aug 2009 21:09:02 +0200 To: malc Message-ID: <20090830190902.GA40977@triton8.kn-bremen.de> References: <20090829222339.GA93608@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-emulation@FreeBSD.org, Juergen Lock , Jung-uk Kim , qemu-devel@nongnu.org Subject: Re: [Qemu-devel] experimental FreeBSD qemu-devel git head port update for testing 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, 30 Aug 2009 19:12:10 -0000 On Sun, Aug 30, 2009 at 03:49:17AM +0400, malc wrote: > On Sun, 30 Aug 2009, Juergen Lock wrote: > > > Hi! > > > > Jan Kiszka asked me if the unstable guest timer irq problem still > > exists on qemu git head, so I made an update for that today: > > http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch > > (and found out it does.) > > > > The bad news (for FreeBSD users anyway) is kqemu support has now been > > removed as `promised' (by the upstream qemu developers), so testing this > > version is probably less interesting for many FreeBSD users than the > > qemu 0.11 stable branch snapshot I posted about here, > > http://lists.freebsd.org/pipermail/freebsd-emulation/2009-August/006646.html > > but e.g. users of non-x86 targets probably will still be interested. > > > > Also the pcap patch stopped working in this snapshot and I don't yet > > know why. (I think the original version of that patch was submitted by > > Jung-uk Kim, maybe he has an idea; Cc'd.) > > > > Other misc notes: > > > > 1. I had to replace the line > > CFLAGS += $(call cc-option, $(CFLAGS), -fno-stack-protector,"") > > by > > CFLAGS += -fno-stack-protector > > in qemu/pc-bios/optionrom/Makefile because now make complained about > > recursive use of CFLAGS (in addition to forcing use of a newer as(1) > > for multiboot.S as already mentioned for the 0.11 rc, see > > files/patch-pc-bios-optionrom-Makefile in the update.) > > Less violent way to have it is: > > CFLAGS := $(CFLAGS) $(call cc-option, $(CFLAGS), -fno-stack-protector,"") > > [..snip..] Thanx, that seems to work as well. Juergen From owner-freebsd-emulation@FreeBSD.ORG Mon Aug 31 08:26:19 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3AEEF1065698 for ; Mon, 31 Aug 2009 08:26:19 +0000 (UTC) (envelope-from freebsd-emulation@m.gmane.org) Received: from lo.gmane.org (lo.gmane.org [80.91.229.12]) by mx1.freebsd.org (Postfix) with ESMTP id EBA698FC0A for ; Mon, 31 Aug 2009 08:26:18 +0000 (UTC) Received: from list by lo.gmane.org with local (Exim 4.50) id 1Mi2DR-00043l-LA for freebsd-emulation@freebsd.org; Mon, 31 Aug 2009 10:26:17 +0200 Received: from lara.cc.fer.hr ([161.53.72.113]) by main.gmane.org with esmtp (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 31 Aug 2009 10:26:17 +0200 Received: from ivoras by lara.cc.fer.hr with local (Gmexim 0.1 (Debian)) id 1AlnuQ-0007hv-00 for ; Mon, 31 Aug 2009 10:26:17 +0200 X-Injected-Via-Gmane: http://gmane.org/ To: freebsd-emulation@freebsd.org From: Ivan Voras Date: Mon, 31 Aug 2009 10:25:58 +0200 Lines: 7 Message-ID: References: <20090829222339.GA93608@triton8.kn-bremen.de> Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit X-Complaints-To: usenet@ger.gmane.org X-Gmane-NNTP-Posting-Host: lara.cc.fer.hr User-Agent: Thunderbird 2.0.0.22 (X11/20090817) In-Reply-To: <20090829222339.GA93608@triton8.kn-bremen.de> Sender: news Subject: Re: experimental FreeBSD qemu-devel git head port update for testing 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, 31 Aug 2009 08:26:19 -0000 Juergen Lock wrote: > The bad news (for FreeBSD users anyway) is kqemu support has now been > removed as `promised' (by the upstream qemu developers), so testing this > version is probably less interesting for many FreeBSD users than the Why was kqemu support removed? Lack of interest and testing? From owner-freebsd-emulation@FreeBSD.ORG Mon Aug 31 11:07:04 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3645E1065679 for ; Mon, 31 Aug 2009 11:07:04 +0000 (UTC) (envelope-from owner-bugmaster@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 240F88FC1E for ; Mon, 31 Aug 2009 11:07:04 +0000 (UTC) Received: from freefall.freebsd.org (localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n7VB74OB070519 for ; Mon, 31 Aug 2009 11:07:04 GMT (envelope-from owner-bugmaster@FreeBSD.org) Received: (from gnats@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n7VB73wY070515 for freebsd-emulation@FreeBSD.org; Mon, 31 Aug 2009 11:07:03 GMT (envelope-from owner-bugmaster@FreeBSD.org) Date: Mon, 31 Aug 2009 11:07:03 GMT Message-Id: <200908311107.n7VB73wY070515@freefall.freebsd.org> X-Authentication-Warning: freefall.freebsd.org: gnats set sender to owner-bugmaster@FreeBSD.org using -f From: FreeBSD bugmaster To: freebsd-emulation@FreeBSD.org Cc: Subject: Current problem reports assigned to freebsd-emulation@FreeBSD.org 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, 31 Aug 2009 11:07:04 -0000 Note: to view an individual PR, use: http://www.freebsd.org/cgi/query-pr.cgi?pr=(number). The following is a listing of current problems submitted by FreeBSD users. These represent problem reports covering all versions including experimental development code and obsolete releases. S Tracker Resp. Description -------------------------------------------------------------------------------- o ports/137332 emulation add caution messages to some adobe products f ports/136321 emulation x11-toolkits/linux-pango: please update linux based po o ports/136229 emulation [linux] certain linux apps look for libraries using a o ports/135337 emulation [PATCH] emulators/linux_base-f10: incorrect bash usage o ports/135322 emulation Port graphics/linux_dri has incorrect packaging list c o kern/130724 emulation [linprocfs] [patch] cpuinfo in linprocfs is dated, cau o kern/129169 emulation [linux] [patch] Linux Emulation ENOTCONN error using n f ports/127018 emulation Linuxulator incapable of using FreeBSD's LDAP environm o kern/126232 emulation [linux] Linux ioctl TCGETS (0x5401) always fails o kern/97326 emulation [linux] file descriptor leakage in linux emulation o kern/73777 emulation [linux] [patch] linux emulation: root dir special hand a kern/72920 emulation [linux]: path "prefixing" is not done on unix domain s o kern/56451 emulation [linprocfs] /compat/linux/proc/cpuinfo gives wrong CPU o kern/41543 emulation [patch] [request] easier wine/w23 support o kern/39201 emulation [linux] [patch] ptrace(2) and rfork(RFLINUXTHPN) confu o kern/29698 emulation [linux] [patch] linux ipcs doesn'work o kern/21463 emulation [linux] Linux compatability mode should not allow setu o kern/11165 emulation [ibcs2] IBCS2 doesn't work correctly with PID_MAX 9999 18 problems total. From owner-freebsd-emulation@FreeBSD.ORG Mon Aug 31 21:12:19 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B69E01065670 for ; Mon, 31 Aug 2009 21:12:19 +0000 (UTC) (envelope-from uqs@spoerlein.net) Received: from acme.spoerlein.net (cl-43.dus-01.de.sixxs.net [IPv6:2a01:198:200:2a::2]) by mx1.freebsd.org (Postfix) with ESMTP id 38A068FC1C for ; Mon, 31 Aug 2009 21:12:19 +0000 (UTC) Received: from acme.spoerlein.net (localhost.spoerlein.net [127.0.0.1]) by acme.spoerlein.net (8.14.3/8.14.3) with ESMTP id n7VLCHJS062071 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Mon, 31 Aug 2009 23:12:17 +0200 (CEST) (envelope-from uqs@spoerlein.net) Received: (from uqs@localhost) by acme.spoerlein.net (8.14.3/8.14.3/Submit) id n7VLCHWs062070 for emulation@freebsd.org; Mon, 31 Aug 2009 23:12:17 +0200 (CEST) (envelope-from uqs@spoerlein.net) Date: Mon, 31 Aug 2009 23:12:17 +0200 From: Ulrich =?utf-8?B?U3DDtnJsZWlu?= To: emulation@freebsd.org Message-ID: <20090831211217.GR50352@acme.spoerlein.net> Mail-Followup-To: Ulrich =?utf-8?B?U3DDtnJsZWlu?= , emulation@freebsd.org MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline User-Agent: Mutt/1.5.20 (2009-06-14) Cc: Subject: Thanks to wine developers/porters 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, 31 Aug 2009 21:12:19 -0000 Hi, just wanted to thank those who made it possible to run an i386 wine binary on amd64 and have it just work. I wrote the steps down in the wiki wine article, for those to whom they are not obvious. Again, thanks! Uli From owner-freebsd-emulation@FreeBSD.ORG Mon Aug 31 22:20:13 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 714FD106566C for ; Mon, 31 Aug 2009 22:20:13 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 2AA718FC12 for ; Mon, 31 Aug 2009 22:20:12 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 93F491E0035F; Tue, 1 Sep 2009 00:20:11 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n7VMH6Kc033624; Tue, 1 Sep 2009 00:17:06 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.3/8.14.3/Submit) id n7VMH6Zk033623; Tue, 1 Sep 2009 00:17:06 +0200 (CEST) (envelope-from nox) Date: Tue, 1 Sep 2009 00:17:06 +0200 (CEST) From: Juergen Lock Message-Id: <200908312217.n7VMH6Zk033623@triton8.kn-bremen.de> To: ivoras@freebsd.org X-Newsgroups: local.list.freebsd.emulation In-Reply-To: References: <20090829222339.GA93608@triton8.kn-bremen.de> Organization: home Cc: freebsd-emulation@freebsd.org Subject: Re: experimental FreeBSD qemu-devel git head port update for testing 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, 31 Aug 2009 22:20:13 -0000 In article you write: >Juergen Lock wrote: > >> The bad news (for FreeBSD users anyway) is kqemu support has now been >> removed as `promised' (by the upstream qemu developers), so testing this >> version is probably less interesting for many FreeBSD users than the > >Why was kqemu support removed? Lack of interest and testing? In a way... Linux has moved on to kvm now (and yes we could relly use an up to date and working port for that [1]!), the original kqemu author has left the project and so there was no real maintainer for that code anymore that would have removed limitations kqemu imposed on qemu like the ~2G guest ram limit, or even make kqemu ready for inclusion in the Linux kernel... (since Linux seems to have a policy of discouraging out-of-tree kernel modules; kvm btw is in there now.) [1] Links: kvm: http://www.linux-kvm.org/page/Main_Page older (gsoc 07) kvm porting project: http://wiki.freebsd.org/FabioChecconi/PortingLinuxKVMToFreeBSD another seemingly dormant kvm-like project: http://sp01.cs.rice.edu/comp521/index.php/fkvm From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 1 00:22:34 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 9BE55106566C for ; Tue, 1 Sep 2009 00:22:33 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao104.cox.net (eastrmmtao104.cox.net [68.230.240.46]) by mx1.freebsd.org (Postfix) with ESMTP id EC6EB8FC0C for ; Tue, 1 Sep 2009 00:22:32 +0000 (UTC) Received: from eastrmimpo03.cox.net ([68.1.16.126]) by eastrmmtao104.cox.net (InterMail vM.8.00.01.00 201-2244-105-20090324) with ESMTP id <20090901002232.IJBH11036.eastrmmtao104.cox.net@eastrmimpo03.cox.net> for ; Mon, 31 Aug 2009 20:22:32 -0400 Received: from localhost ([68.103.37.153]) by eastrmimpo03.cox.net with bizsmtp id bCNX1c00M3JFCbG02CNXai; Mon, 31 Aug 2009 20:22:32 -0400 X-VR-Score: -90.00 X-Authority-Analysis: v=1.0 c=1 a=jmG8OjIaQysA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=q5nR23sXssTkr-T-gjMA:9 a=xFn96EYjtwVjFwQyvIRw-9VPATAA:4 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 X-CM-Score: 0.00 Date: Mon, 31 Aug 2009 19:23:47 -0500 To: emulation@freebsd.org From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Message-ID: User-Agent: Opera Mail/9.64 (Linux) Cc: Subject: linux-opera 10.x needs linux-nas-libs, anyone want to create 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: Tue, 01 Sep 2009 00:22:34 -0000 Hello all, The linux-opera (well, actually, it's QT4 that came in bundle tarball) needs libaudio.so.2 that is in nas-libs rpm file. I am deaf, so it is impossible for me to test linux-nas-libs. Also I am pretty very behind with new linux ports stuff. It will be great if anyone can create linux-nas-libs port for all version of what we have linux_base*. Thanks! Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 1 00:23:17 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5139410656A4 for ; Tue, 1 Sep 2009 00:23:17 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao103.cox.net (eastrmmtao103.cox.net [68.230.240.9]) by mx1.freebsd.org (Postfix) with ESMTP id D51438FC18 for ; Tue, 1 Sep 2009 00:23:16 +0000 (UTC) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao103.cox.net (InterMail vM.8.00.01.00 201-2244-105-20090324) with ESMTP id <20090901002316.CNBU913.eastrmmtao103.cox.net@eastrmimpo01.cox.net> for ; Mon, 31 Aug 2009 20:23:16 -0400 Received: from localhost ([68.103.37.153]) by eastrmimpo01.cox.net with bizsmtp id bCPF1c00K3JFCbG02CPFJe; Mon, 31 Aug 2009 20:23:16 -0400 X-VR-Score: -190.00 X-Authority-Analysis: v=1.0 c=1 a=KsrlxXNYF3gA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=WDSBd3yyIk1nCWpQDc0A:9 a=4dj9Ai7HMd7E_Ft4O7zRNmNaLH4A:4 a=twX6zS2zVsUA:10 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 X-CM-Score: 0.00 Date: Mon, 31 Aug 2009 19:24:32 -0500 To: emulation@freebsd.org From: "Jeremy Messenger" Content-Type: text/plain; format=flowed; delsp=yes; charset=utf-8 MIME-Version: 1.0 References: Content-Transfer-Encoding: 7bit Message-ID: In-Reply-To: User-Agent: Opera Mail/9.64 (Linux) Cc: Subject: Re: linux-opera 10.x needs linux-nas-libs, anyone want to create 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: Tue, 01 Sep 2009 00:23:17 -0000 On Mon, 31 Aug 2009 19:23:47 -0500, Jeremy Messenger wrote: > Hello all, > > The linux-opera (well, actually, it's QT4 that came in bundle tarball) > needs libaudio.so.2 that is in nas-libs rpm file. I am deaf, so it is > impossible for me to test linux-nas-libs. Also I am pretty very behind > with new linux ports stuff. It will be great if anyone can create > linux-nas-libs port for all version of what we have linux_base*. Thanks! By the way, please add me in CC. > Cheers, > Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 1 06:30:07 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CD2631065692 for ; Tue, 1 Sep 2009 06:30:07 +0000 (UTC) (envelope-from fernando.apesteguia@gmail.com) Received: from mail-ew0-f208.google.com (mail-ew0-f208.google.com [209.85.219.208]) by mx1.freebsd.org (Postfix) with ESMTP id 6453D8FC21 for ; Tue, 1 Sep 2009 06:30:07 +0000 (UTC) Received: by ewy4 with SMTP id 4so2192088ewy.36 for ; Mon, 31 Aug 2009 23:30:06 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:content-type :content-transfer-encoding; bh=VK2+7h0vyZ4JVx3mJFFBULKseH6VlLR5YU+YBJ35XSM=; b=agENUHXUHeB06Ttl//X1b7m7ebsTkS3Ho3XU+Uaq3CDo2T2+L5vXP5WKR+o8DOUsHC 29WiJP28vuc77o7Or+ixouEY/B39BTocDzC7h8apn7MebEQ9TBpxOkOs6L8qUrS7dP8M M49PLPy1AyoL1+287CnyUfRGmRw07qAAr272U= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :content-type:content-transfer-encoding; b=xuZc9xMA180VcW8KSpsOCH0dL2RNngUn29NxOhyknPGOzZeAu2iDDdzxeS6bRi11N+ NsP7SrE9vd3Z1N8E2ya3+TooS9m0uC/RgG2xOkPw0ronusQcBm7lXsBSQmJI0wRO42Ks HM2fcFxJNJZZxHiDNni6sRcHRgAEoiczLxhRM= MIME-Version: 1.0 Received: by 10.210.70.10 with SMTP id s10mr5495064eba.71.1251784825582; Mon, 31 Aug 2009 23:00:25 -0700 (PDT) In-Reply-To: <20090831211217.GR50352@acme.spoerlein.net> References: <20090831211217.GR50352@acme.spoerlein.net> Date: Tue, 1 Sep 2009 08:00:25 +0200 Message-ID: <1bd550a00908312300v4e5bef8dnbe3b82a2fc54fe0a@mail.gmail.com> From: =?ISO-8859-1?Q?Fernando_Apestegu=EDa?= To: =?ISO-8859-1?Q?Ulrich_Sp=F6rlein?= , emulation@freebsd.org Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: quoted-printable Cc: Subject: Re: Thanks to wine developers/porters 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: Tue, 01 Sep 2009 06:30:07 -0000 On Mon, Aug 31, 2009 at 11:12 PM, Ulrich Sp=F6rlein wrot= e: > Hi, just wanted to thank those who made it possible to run an i386 wine > binary on amd64 and have it just work. > > I wrote the steps down in the wiki wine article, for those to whom they > are not obvious. Could you please post the exact link as a reference? Thanks. > > Again, thanks! > Uli > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.o= rg" > From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 1 11:13:06 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0B8BC106568B; Tue, 1 Sep 2009 11:13:06 +0000 (UTC) (envelope-from tijl@ulyssis.org) Received: from mailrelay005.isp.belgacom.be (mailrelay005.isp.belgacom.be [195.238.6.171]) by mx1.freebsd.org (Postfix) with ESMTP id 76C128FC1F; Tue, 1 Sep 2009 11:13:05 +0000 (UTC) X-Belgacom-Dynamic: yes X-IronPort-Anti-Spam-Filtered: true X-IronPort-Anti-Spam-Result: ArcEAKqdnEpQyR3v/2dsb2JhbACBU9lKhBsF Received: from 239.29-201-80.adsl-dyn.isp.belgacom.be (HELO kalimero.kotnet.org) ([80.201.29.239]) by relay.skynet.be with ESMTP; 01 Sep 2009 13:13:03 +0200 Received: from kalimero.kotnet.org (kalimero.kotnet.org [127.0.0.1]) by kalimero.kotnet.org (8.14.3/8.14.3) with ESMTP id n81BAXjY004320; Tue, 1 Sep 2009 13:10:33 +0200 (CEST) (envelope-from tijl@ulyssis.org) From: Tijl Coosemans To: freebsd-questions@freebsd.org, yuri@rawbw.com, freebsd-emulation@freebsd.org Date: Tue, 1 Sep 2009 13:10:31 +0200 User-Agent: KMail/1.9.10 References: <4A9C2B02.8010001@rawbw.com> In-Reply-To: <4A9C2B02.8010001@rawbw.com> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200909011310.32746.tijl@ulyssis.org> Cc: Subject: Re: Is ALSA support working in 72? 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: Tue, 01 Sep 2009 11:13:06 -0000 On Monday 31 August 2009 21:56:50 Yuri wrote: > I tried new skype-2.1.0.47 on FreBSD-72. (I have > linux-alsa-lib-1.0.10.3_2 installed.) > > Skype starts but gives the errors below when I try to make a voice call. > Previous versions of Skype came in OSS flavor but now it seems to be > dropped and it's only available for ALSA. > > Why would ALSA library fail? > > ----- errrors ----- > > ALSA lib confmisc.c:672:(snd_func_card_driver) cannot find card '0' > ALSA lib conf.c:3493:(_snd_config_evaluate) function > snd_func_card_driver returned error: No such device > ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings > ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_concat > returned error: No such device > ALSA lib confmisc.c:1072:(snd_func_refer) error evaluating name > ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_refer > returned error: No such device > ALSA lib conf.c:3962:(snd_config_expand) Evaluate error: No such device > ALSA lib pcm.c:2099:(snd_pcm_open_noupdate) Unknown PCM default > ALSA lib confmisc.c:672:(snd_func_card_driver) cannot find card '0' > ALSA lib conf.c:3493:(_snd_config_evaluate) function > snd_func_card_driver returned error: No such device > ALSA lib confmisc.c:392:(snd_func_concat) error evaluating strings > ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_concat > returned error: No such device > ALSA lib confmisc.c:1072:(snd_func_refer) error evaluating name > ALSA lib conf.c:3493:(_snd_config_evaluate) function snd_func_refer > returned error: No such device > ALSA lib conf.c:3962:(snd_config_expand) Evaluate error: No such device > ALSA lib pcm.c:2099:(snd_pcm_open_noupdate) Unknown PCM default > /usr/ports/distfiles/skype_static-2.1.0.47/skype: relocation error: > /usr/ports/distfiles/skype_static-2.1.0.47/skype: symbol > snd_device_name_hint, version ALSA_0.9 not defined in file > libasound.so.2 with link time reference ALSA has never worked AFAIK. The library is only there for applications that link to it, but don't actually use it. It might be worth a try to install the alsa-plugins-oss RPM and then configure ALSA lib to use the FreeBSD OSS device. From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 1 11:45:40 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4CE23106566B for ; Tue, 1 Sep 2009 11:45:40 +0000 (UTC) (envelope-from bsam@ipt.ru) Received: from services.ipt.ru (services.ipt.ru [194.62.233.110]) by mx1.freebsd.org (Postfix) with ESMTP id C83048FC26 for ; Tue, 1 Sep 2009 11:45:39 +0000 (UTC) Received: from bb.ipt.ru ([194.62.233.89]) by services.ipt.ru with esmtp (Exim 4.54 (FreeBSD)) id 1MiRnu-0007vb-9c; Tue, 01 Sep 2009 15:45:38 +0400 From: Boris Samorodov To: "Jeremy Messenger" References: Date: Tue, 01 Sep 2009 15:45:41 +0400 In-Reply-To: (Jeremy Messenger's message of "Mon, 31 Aug 2009 19:23:47 -0500") Message-ID: <21460986@bb.ipt.ru> User-Agent: Gnus/5.13 (Gnus v5.13) Emacs/23.1 (berkeley-unix) MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Cc: emulation@freebsd.org Subject: Re: linux-opera 10.x needs linux-nas-libs, anyone want to create 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: Tue, 01 Sep 2009 11:45:40 -0000 --=-=-= On Mon, 31 Aug 2009 19:23:47 -0500 Jeremy Messenger wrote: > The linux-opera (well, actually, it's QT4 that came in bundle tarball) > needs libaudio.so.2 that is in nas-libs rpm file. I am deaf, so it is > impossible for me to test linux-nas-libs. Also I am pretty very behind > with new linux ports stuff. It will be great if anyone can create > linux-nas-libs port for all version of what we have > linux_base*. Thanks! Done. Enjoy. ;-) BTW, don't forget to add to opera Makefile: ----- --=-=-= Content-Type: text/x-patch Content-Disposition: inline; filename=linux-opera.diff Content-Description: add naslibs as a dependency Index: Makefile =================================================================== RCS file: /home/pcvs/ports/www/linux-opera/Makefile,v retrieving revision 1.99 diff -u -r1.99 Makefile --- Makefile 19 Mar 2009 17:28:49 -0000 1.99 +++ Makefile 1 Sep 2009 11:35:04 -0000 @@ -27,7 +27,7 @@ WRKSRC= ${WRKDIR}/${DISTNAME:S/.gcc/-${OPERA_BUILD}.gcc/} USE_BZIP2= yes USE_LINUX= yes -USE_LINUX_APPS= aspell xorglibs +USE_LINUX_APPS= aspell naslibs xorglibs ONLY_FOR_ARCHS= i386 amd64 NO_BUILD= yes --=-=-= ----- -- 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 Tue Sep 1 16:18:05 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id AF1C81065670 for ; Tue, 1 Sep 2009 16:18:05 +0000 (UTC) (envelope-from bazerka@beardz.net) Received: from mx-2.btshosting.co.uk (mx-2.btshosting.co.uk [87.117.208.79]) by mx1.freebsd.org (Postfix) with ESMTP id 721C78FC1C for ; Tue, 1 Sep 2009 16:18:05 +0000 (UTC) Received: from [192.168.1.65] (host86-139-97-202.range86-139.btcentralplus.com [86.139.97.202]) (Authenticated sender: bazerka@beardz.net) by mx-2.btshosting.co.uk (Postfix) with ESMTPA id EE14B6E5440 for ; Tue, 1 Sep 2009 16:59:31 +0100 (BST) Message-ID: <4A9D44D9.10102@beardz.net> Date: Tue, 01 Sep 2009 16:59:21 +0100 From: Jase Thew User-Agent: Mozilla/5.0 (Windows; U; Windows NT 6.0; en-GB; rv:1.9.1.1) Gecko/20090715 Thunderbird/3.0b3 MIME-Version: 1.0 To: freebsd-emulation@freebsd.org References: <20090831211217.GR50352@acme.spoerlein.net> <1bd550a00908312300v4e5bef8dnbe3b82a2fc54fe0a@mail.gmail.com> In-Reply-To: <1bd550a00908312300v4e5bef8dnbe3b82a2fc54fe0a@mail.gmail.com> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit X-Virus-Scanned: clamav-milter 0.95.2 at mx-2.btshosting.co.uk X-Virus-Status: Clean Subject: Re: Thanks to wine developers/porters 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: Tue, 01 Sep 2009 16:18:05 -0000 On 01/09/2009 07:00, Fernando Apesteguía wrote: > On Mon, Aug 31, 2009 at 11:12 PM, Ulrich Spörlein wrote: > >> Hi, just wanted to thank those who made it possible to run an i386 wine >> binary on amd64 and have it just work. >> >> I wrote the steps down in the wiki wine article, for those to whom they >> are not obvious. >> > Could you please post the exact link as a reference? > > Thanks. > http://wiki.freebsd.org/Wine#head-6963d527c173e57b1567e881305b544d33435b6d Regards, Jase. From owner-freebsd-emulation@FreeBSD.ORG Tue Sep 1 23:18:16 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3022B106566C for ; Tue, 1 Sep 2009 23:18:16 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao101.cox.net (eastrmmtao101.cox.net [68.230.240.7]) by mx1.freebsd.org (Postfix) with ESMTP id B8FC88FC12 for ; Tue, 1 Sep 2009 23:18:15 +0000 (UTC) Received: from eastrmimpo02.cox.net ([68.1.16.120]) by eastrmmtao101.cox.net (InterMail vM.8.00.01.00 201-2244-105-20090324) with ESMTP id <20090901231815.WYFD6358.eastrmmtao101.cox.net@eastrmimpo02.cox.net>; Tue, 1 Sep 2009 19:18:15 -0400 Received: from localhost ([68.103.37.153]) by eastrmimpo02.cox.net with bizsmtp id bbJE1c0033JFCbG02bJEpo; Tue, 01 Sep 2009 19:18:14 -0400 X-VR-Score: -310.00 X-Authority-Analysis: v=1.0 c=1 a=KsrlxXNYF3gA:10 a=kviXuzpPAAAA:8 a=6I5d2MoRAAAA:8 a=DaMdDqtmhl7jK1nCM7MA:9 a=oqLPl6El4POOiCkSYFc8oGMVrQkA:4 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 X-CM-Score: 0.00 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: "Boris Samorodov" References: <21460986@bb.ipt.ru> Date: Tue, 01 Sep 2009 18:19:34 -0500 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: "Jeremy Messenger" Message-ID: In-Reply-To: <21460986@bb.ipt.ru> User-Agent: Opera Mail/10.00 (Linux) Cc: emulation@freebsd.org Subject: Re: linux-opera 10.x needs linux-nas-libs, anyone want to create 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: Tue, 01 Sep 2009 23:18:16 -0000 On Tue, 01 Sep 2009 06:45:41 -0500, Boris Samorodov wrote: >> The linux-opera (well, actually, it's QT4 that came in bundle tarball) >> needs libaudio.so.2 that is in nas-libs rpm file. I am deaf, so it is >> impossible for me to test linux-nas-libs. Also I am pretty very behind >> with new linux ports stuff. It will be great if anyone can create >> linux-nas-libs port for all version of what we have >> linux_base*. Thanks! > > Done. Enjoy. ;-) Thanks! I owe you a beer. ;-) The linux-opera 10.00 works great with no issue as I am writing on this right now (Opera M2 email client) so far. I am going to post patch of update linux-opera in a separate email for I can get more tests from the others before I commit it. Because I will be out of town for a few days without access to FreeBSD boxes, only netbook with Linux (yes, I know and will be MacOS X soon anyway). Cheers, Mezz > BTW, don't forget to add to opera Makefile: > ----- -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 2 02:48:01 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C2E6F106566C; Wed, 2 Sep 2009 02:48:01 +0000 (UTC) (envelope-from mezz7@cox.net) Received: from eastrmmtao104.cox.net (eastrmmtao104.cox.net [68.230.240.46]) by mx1.freebsd.org (Postfix) with ESMTP id 43A4F8FC19; Wed, 2 Sep 2009 02:48:00 +0000 (UTC) Received: from eastrmimpo01.cox.net ([68.1.16.119]) by eastrmmtao104.cox.net (InterMail vM.8.00.01.00 201-2244-105-20090324) with ESMTP id <20090902024800.NABF11036.eastrmmtao104.cox.net@eastrmimpo01.cox.net>; Tue, 1 Sep 2009 22:48:00 -0400 Received: from localhost ([68.103.37.153]) by eastrmimpo01.cox.net with bizsmtp id benz1c00E3JFCbG02enzL2; Tue, 01 Sep 2009 22:48:00 -0400 X-VR-Score: -60.00 X-Authority-Analysis: v=1.0 c=1 a=3-c-Uza78Q0A:10 a=6I5d2MoRAAAA:8 a=kviXuzpPAAAA:8 a=63mjNN8WxVcD9H44zZ4A:9 a=9As9NkkUSLmTN5m4pR0Iw15l1MMA:4 a=4vB-4DCPJfMA:10 a=SV7veod9ZcQA:10 X-CM-Score: 0.00 Content-Type: text/plain; charset=utf-8; format=flowed; delsp=yes To: ports@freebsd.org Date: Tue, 01 Sep 2009 21:49:20 -0500 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit From: "Jeremy Messenger" Message-ID: User-Agent: Opera Mail/10.00 (Linux) Cc: emulation@freebsd.org Subject: Testers: Here's a patch to update linux-opera to 10.00. 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, 02 Sep 2009 02:48:01 -0000 Hello all, Here is a patch to update linux-opera to 10.00. It works great with old ~/.linux-opera so far, I haven't seen any problem. I will be out of town for a few days. I need someone to test it more and report any bug if there is any. When I commit it, I am planning to note in the UPDATING about make the back up of ~/.linux-opera and turn the auto-update off. Also, I am planning to make a request to the Opera developer for allow us to tweak the path of /etc instead of hardcore that way I can put operaprefs_fixed.ini and put in ${PREFIX}/etc/ to force disable auto-update. Patch: http://people.freebsd.org/~mezz/diff/linux-opera.diff Couldn't have done without bsam. He has created linux-nas-lib for all linux_base*. The linux-opera (well, it's QT libraries that came in its tarball) needs it, so be sure to have your ports tree and installed ports up to date. Cheers, Mezz -- mezz7@cox.net - mezz@FreeBSD.org FreeBSD GNOME Team http://www.FreeBSD.org/gnome/ - gnome@FreeBSD.org From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 2 09:07:51 2009 Return-Path: Delivered-To: emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 5E8EA106568B; Wed, 2 Sep 2009 09:07:51 +0000 (UTC) (envelope-from gary.jennejohn@freenet.de) Received: from mout3.freenet.de (mout3.freenet.de [IPv6:2001:748:100:40::2:5]) by mx1.freebsd.org (Postfix) with ESMTP id F11038FC19; Wed, 2 Sep 2009 09:07:50 +0000 (UTC) Received: from [195.4.92.21] (helo=11.mx.freenet.de) by mout3.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #92) id 1Miloj-0006p7-TW; Wed, 02 Sep 2009 11:07:49 +0200 Received: from te7c6.t.pppool.de ([89.55.231.198]:39245 helo=ernst.jennejohn.org) by 11.mx.freenet.de with esmtpa (ID gary.jennejohn@freenet.de) (port 25) (Exim 4.69 #94) id 1Miloj-0002OI-M5; Wed, 02 Sep 2009 11:07:49 +0200 Date: Wed, 2 Sep 2009 11:07:49 +0200 From: Gary Jennejohn To: "Jeremy Messenger" Message-ID: <20090902110749.243fe108@ernst.jennejohn.org> In-Reply-To: References: X-Mailer: Claws Mail 3.7.2 (GTK+ 2.16.2; amd64-portbld-freebsd8.0) Mime-Version: 1.0 Content-Type: text/plain; charset=US-ASCII Content-Transfer-Encoding: 7bit Cc: ports@freebsd.org, emulation@freebsd.org Subject: Re: Testers: Here's a patch to update linux-opera to 10.00. X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: gary.jennejohn@freenet.de List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Wed, 02 Sep 2009 09:07:51 -0000 On Tue, 01 Sep 2009 21:49:20 -0500 "Jeremy Messenger" wrote: > Here is a patch to update linux-opera to 10.00. It works great with old > ~/.linux-opera so far, I haven't seen any problem. I will be out of town > for a few days. I need someone to test it more and report any bug if there > is any. > Works extremely well so far, even flash works without any complications. I'm using linux_base-f10-10_1. uname -a (sanitized): FreeBSD 9.0-CURRENT FreeBSD 9.0-CURRENT #35: Sat Aug 29 18:30:32 CEST 2009 amd64 --- Gary Jennejohn From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 2 12:26:48 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BFA8210656A6 for ; Wed, 2 Sep 2009 12:26:48 +0000 (UTC) (envelope-from fli@shapeshifter.se) Received: from mx1.h3q.net (mx1.h3q.net [IPv6:2001:16d8:ffe5:1::f1]) by mx1.freebsd.org (Postfix) with ESMTP id 4CC4C8FC0A for ; Wed, 2 Sep 2009 12:26:48 +0000 (UTC) Received: from smtp-auth.h3q.net (smtp-auth.h3q.net [127.0.0.1]) (Authenticated sender: hidden) by mx1.h3q.net (Postfix) with ESMTPSA id 9CCC433DDA ; Wed, 2 Sep 2009 14:26:45 +0200 (CEST) Message-ID: <4A9E6481.9070200@shapeshifter.se> Date: Wed, 02 Sep 2009 14:26:41 +0200 From: Fredrik Lindberg User-Agent: Thunderbird 2.0.0.22 (X11/20090801) MIME-Version: 1.0 To: freebsd-emulation@freebsd.org References: <4A8EB3D2.7010109@shapeshifter.se> In-Reply-To: <4A8EB3D2.7010109@shapeshifter.se> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: VirtualBox bridged adapter (vboxnetflt) 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, 02 Sep 2009 12:26:48 -0000 Okay, so this past weekend I re-wrote the vboxnetflt driver using netgraph (as suggested by Julian Elischer). It's now an netgraph node and automatically attaches to ng_ether. This is probably the best solution that also works properly on FreeBSD 7. One minor thing, one do I manually generate opt_netgraph.h on FreeBSD 7 without using bsd.kmod.mk? Currently I just create an empty file. Also changed it to the MIT license to keep the Vbox guys happy (in reality a NOP as the MIT and 2-clause BSD licenses are essentially equal). This version has been tested on FreeBSD 7.2/i386 and FreeBSD 8/i386-SMP. Patches are at http://www.shapeshifter.se/pub/patches/vbox-freebsd-netif-20090831.patch http://www.shapeshifter.se/pub/patches/vbox-freebsd-vboxnetflt-20090831.patch http://www.shapeshifter.se/pub/patches/virtualbox-port.patch Apply/compile with cd /usr/ports/emulators/virtualbox make clean patch mkdir work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd patch -d work/virtualbox-3.0.51r22226 < vbox-freebsd-netif-20090831.patch patch -d work/virtualbox-3.0.51r22226 < vbox-freebsd-vboxnetflt-20090831.patch patch < virtualbox-port.patch make install Test if you're interested and report failures/successes. Fredrik From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 2 14:48:36 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 8CE1F1065693 for ; Wed, 2 Sep 2009 14:48:36 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 7F8B08FC1D for ; Wed, 2 Sep 2009 14:48:35 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id RAA07473; Wed, 02 Sep 2009 17:48:33 +0300 (EEST) (envelope-from avg@icyb.net.ua) Message-ID: <4A9E85C1.1090605@icyb.net.ua> Date: Wed, 02 Sep 2009 17:48:33 +0300 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.22 (X11/20090724) MIME-Version: 1.0 To: vbox@FreeBSD.org, freebsd-emulation@FreeBSD.org X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: virtualbox 3.0.51r22226: some quirks 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, 02 Sep 2009 14:48:36 -0000 Just to check if the following issues are mine local or if they are known ones. 1. Host+Del combination doesn't sent Ctrl+Alt+Del to a guest, this used to work correctly before. 2. Permanent shared directories disappear after VirtualBox restart. 3. VirtualBox guest clipboard driver freezes on attempts to copy something from host to guest; guest to host works OK. Otherwise, VirtualBox works great for me. Thank you! -- Andriy Gapon From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 2 18:01:08 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D6D47106568B; Wed, 2 Sep 2009 18:01:08 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 740D38FC1F; Wed, 2 Sep 2009 18:01:08 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 1AF0A1E0037E; Wed, 2 Sep 2009 20:01:07 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n82HuM6q063942; Wed, 2 Sep 2009 19:56:22 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.3/8.14.3/Submit) id n82HuMuG063941; Wed, 2 Sep 2009 19:56:22 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Wed, 2 Sep 2009 19:56:21 +0200 To: Juergen Lock Message-ID: <20090902175621.GA63905@triton8.kn-bremen.de> References: <20090829222339.GA93608@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090829222339.GA93608@triton8.kn-bremen.de> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-emulation@FreeBSD.org, qemu-devel@nongnu.org, Jung-uk Kim Subject: Re: experimental FreeBSD qemu-devel git head port update for testing 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, 02 Sep 2009 18:01:08 -0000 On Sun, Aug 30, 2009 at 12:23:39AM +0200, Juergen Lock wrote: > Hi! > > Jan Kiszka asked me if the unstable guest timer irq problem still > exists on qemu git head, so I made an update for that today: > http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch > (and found out it does.) > > The bad news (for FreeBSD users anyway) is kqemu support has now been > removed as `promised' (by the upstream qemu developers), so testing this > version is probably less interesting for many FreeBSD users than the > qemu 0.11 stable branch snapshot I posted about here, > http://lists.freebsd.org/pipermail/freebsd-emulation/2009-August/006646.html > but e.g. users of non-x86 targets probably will still be interested. > > Also the pcap patch stopped working in this snapshot and I don't yet > know why. (I think the original version of that patch was submitted by > Jung-uk Kim, maybe he has an idea; Cc'd.) > [...] Jung-uk Kim sent me a new pcap patch (thanx! :), and I have just included it in the mentioned update at http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch Enjoy, Juergen From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 2 18:27:44 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 0BBF4106568B; Wed, 2 Sep 2009 18:27:44 +0000 (UTC) (envelope-from avg@icyb.net.ua) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id 0C39C8FC13; Wed, 2 Sep 2009 18:27:42 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id VAA11987; Wed, 02 Sep 2009 21:27:41 +0300 (EEST) (envelope-from avg@icyb.net.ua) Message-ID: <4A9EB91C.4060203@icyb.net.ua> Date: Wed, 02 Sep 2009 21:27:40 +0300 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.22 (X11/20090724) MIME-Version: 1.0 To: freebsd-emulation@freebsd.org, ports@freebsd.org X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: skype 2.1 beta for 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: Wed, 02 Sep 2009 18:27:44 -0000 Just noticed this: http://www.skype.com/intl/en/download/skype/linux/ -- Andriy Gapon From owner-freebsd-emulation@FreeBSD.ORG Wed Sep 2 22:42:07 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E5E4710656B1 for ; Wed, 2 Sep 2009 22:42:07 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: from bsdcrew.de (duro.unixfreunde.de [85.214.90.4]) by mx1.freebsd.org (Postfix) with ESMTP id AC4508FC23 for ; Wed, 2 Sep 2009 22:42:07 +0000 (UTC) Received: by bsdcrew.de (Postfix, from userid 1001) id 64A774AC67; Thu, 3 Sep 2009 00:24:07 +0200 (CEST) Date: Thu, 3 Sep 2009 00:24:07 +0200 From: Martin Wilke To: Andriy Gapon Message-ID: <20090902222407.GF82548@bsdcrew.de> References: <4A9EB91C.4060203@icyb.net.ua> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii; x-action=pgp-signed Content-Disposition: inline In-Reply-To: <4A9EB91C.4060203@icyb.net.ua> User-Agent: Mutt/1.5.19 (2009-01-05) Cc: ports@freebsd.org, freebsd-emulation@freebsd.org Subject: Re: skype 2.1 beta for 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: Wed, 02 Sep 2009 22:42:08 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Wed, Sep 02, 2009 at 09:27:40PM +0300, Andriy Gapon wrote: > > Just noticed this: > http://www.skype.com/intl/en/download/skype/linux/ > It doesn't work, this version missing the OSS support, I talked to the guys we get later a oss version! - - Martin > -- > Andriy Gapon > _______________________________________________ > freebsd-emulation@freebsd.org mailing list > http://lists.freebsd.org/mailman/listinfo/freebsd-emulation > To unsubscribe, send any mail to "freebsd-emulation-unsubscribe@freebsd.org" > - -- +-----------------------+-------------------------------+ | PGP : 0xB1E6FCE9 | Jabber : miwi(at)BSDCrew.de | | Skype : splash_111 | Mail : miwi(at)FreeBSD.org | +-----------------------+-------------------------------+ | Mess with the Best, Die like the Rest! | +-----------------------+-------------------------------+ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkqe8IcACgkQdLJIhLHm/OmkxACg00eR6eTBtWR6EbFPaEuciVRy AgwAoNUiEBM3ZnDzFkIx52dBPQsqEaPk =BS/5 -----END PGP SIGNATURE----- From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 07:14:53 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 6BF42106566C for ; Thu, 3 Sep 2009 07:14:53 +0000 (UTC) (envelope-from npapke@acm.org) Received: from idcmail-mo2no.shaw.ca (idcmail-mo2no.shaw.ca [64.59.134.9]) by mx1.freebsd.org (Postfix) with ESMTP id 3C8D68FC14 for ; Thu, 3 Sep 2009 07:14:53 +0000 (UTC) Received: from pd6ml1no-ssvc.prod.shaw.ca ([10.0.153.160]) by pd7mo1no-svcs.prod.shaw.ca with ESMTP; 03 Sep 2009 01:14:52 -0600 X-Cloudmark-SP-Filtered: true X-Cloudmark-SP-Result: v=1.0 c=1 a=ogK6VqJQCzgA:10 a=VF9RaR9bft6c8SsOr3WyFg==:17 a=N54-gffFAAAA:8 a=lvbMJxvVAAAA:8 a=40mWEHl__bKsQY-lorwA:9 a=RoUFHI0CsHiEI2sU0AgA:7 a=KPln17II0hhCRfJ6RGykRdFeh7cA:4 a=nAPXUAfsBmEA:10 Received: from unknown (HELO proven.lan) ([24.85.241.34]) by pd6ml1no-dmz.prod.shaw.ca with ESMTP; 03 Sep 2009 01:14:52 -0600 Received: from proven.lan (localhost [127.0.0.1]) by proven.lan (8.14.3/8.14.3) with ESMTP id n837Epiv004235; Thu, 3 Sep 2009 00:14:51 -0700 (PDT) (envelope-from npapke@acm.org) Received: from localhost (localhost [[UNIX: localhost]]) by proven.lan (8.14.3/8.14.3/Submit) id n837EpSJ004234; Thu, 3 Sep 2009 00:14:51 -0700 (PDT) (envelope-from npapke@acm.org) X-Authentication-Warning: proven.lan: npapke set sender to npapke@acm.org using -f From: Norbert Papke Organization: Archaeological Filing To: freebsd-emulation@freebsd.org, Fredrik Lindberg Date: Thu, 3 Sep 2009 00:14:51 -0700 User-Agent: KMail/1.9.10 References: <4A8EB3D2.7010109@shapeshifter.se> <4A9E6481.9070200@shapeshifter.se> In-Reply-To: <4A9E6481.9070200@shapeshifter.se> MIME-Version: 1.0 Content-Type: text/plain; charset="iso-8859-1" Content-Transfer-Encoding: 7bit Content-Disposition: inline Message-Id: <200909030014.51466.npapke@acm.org> Cc: Subject: Re: VirtualBox bridged adapter (vboxnetflt) 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, 03 Sep 2009 07:14:53 -0000 Hi Frederik, On September 2, 2009, Fredrik Lindberg wrote: > Okay, so this past weekend I re-wrote the vboxnetflt driver using > netgraph (as suggested by Julian Elischer). > > [...] > > Test if you're interested and report failures/successes. I just built and installed on 7.2/amd64 without any problems. I didn't even have to think, your instructions were spot-on. :) First impressions are good. I have not yet encountered any problems. I will continue to test. Thank you very much for your hard work. -- Norbert Papke. npapke@acm.org http://saveournet.ca Protecting your Internet's level playing field From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 07:42:16 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 54A49106566C for ; Thu, 3 Sep 2009 07:42:16 +0000 (UTC) (envelope-from fli@shapeshifter.se) Received: from mx1.h3q.net (mx1.h3q.net [IPv6:2001:16d8:ffe5:1::f1]) by mx1.freebsd.org (Postfix) with ESMTP id D16B68FC16 for ; Thu, 3 Sep 2009 07:42:15 +0000 (UTC) Received: from smtp-auth.h3q.net (smtp-auth.h3q.net [127.0.0.1]) (Authenticated sender: hidden) by mx1.h3q.net (Postfix) with ESMTPSA id E5F1F33D9E ; Thu, 3 Sep 2009 09:42:13 +0200 (CEST) Message-ID: <4A9F7353.3020106@shapeshifter.se> Date: Thu, 03 Sep 2009 09:42:11 +0200 From: Fredrik Lindberg User-Agent: Thunderbird 2.0.0.22 (X11/20090801) MIME-Version: 1.0 To: =?ISO-8859-1?Q?Gustau_P=E9rez?= References: <4A8EB3D2.7010109@shapeshifter.se> <4A9E6481.9070200@shapeshifter.se> <4A9F8AE6.1000001@entel.upc.edu> In-Reply-To: <4A9F8AE6.1000001@entel.upc.edu> Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 8bit Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox bridged adapter (vboxnetflt) 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, 03 Sep 2009 07:42:16 -0000 Gustau Pérez wrote: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > Fredrik Lindberg wrote: >> Test if you're interested and report failures/successes. > > Hi, > > tried your patches against FreeBSD 8.0BETA3/i386-SMP. When selecting > an interface and configuring it as a bridged one, it finds all my host > interfaces. I can select one of them (in my case bge0), but when I try > to start the > vm it gives me the following error : > > ******************* > > p, li { white-space: pre-wrap; } > > Failed to open/create the internal network > 'HostInterfaceNetworking-bge0' (VERR_SUPDRV_COMPONENT_NOT_FOUND). > > Unknown error creating VM (VERR_SUPDRV_COMPONENT_NOT_FOUND). > Did you by any chance forget to do a kldload /boot/modules/vboxnetflt.ko ? Fredrik From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 08:27:05 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 3895B106568B; Thu, 3 Sep 2009 08:27:05 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from dd12710.kasserver.com (dd12710.kasserver.com [85.13.134.233]) by mx1.freebsd.org (Postfix) with ESMTP id E941B8FC08; Thu, 3 Sep 2009 08:27:04 +0000 (UTC) Received: from current.Sisis.de (ppp-62-216-210-134.dynamic.mnet-online.de [62.216.210.134]) by dd12710.kasserver.com (Postfix) with ESMTP id DAB25184A60AE; Thu, 3 Sep 2009 10:10:13 +0200 (CEST) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id n838AFra002421; Thu, 3 Sep 2009 10:10:15 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Thu, 3 Sep 2009 10:10:15 +0200 From: Matthias Apitz To: Martin Wilke , Andriy Gapon , ports@freebsd.org, freebsd-emulation@freebsd.org Message-ID: <20090903081015.GA2343@current.Sisis.de> References: <4A9EB91C.4060203@icyb.net.ua> <20090902222407.GF82548@bsdcrew.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20090902222407.GF82548@bsdcrew.de> User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 8.0-CURRENT (i386) Cc: Subject: Re: skype 2.1 beta for linux X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Sep 2009 08:27:05 -0000 El día Thursday, September 03, 2009 a las 12:24:07AM +0200, Martin Wilke escribió: > -----BEGIN PGP SIGNED MESSAGE----- > Hash: SHA1 > > On Wed, Sep 02, 2009 at 09:27:40PM +0300, Andriy Gapon wrote: > > > > Just noticed this: > > http://www.skype.com/intl/en/download/skype/linux/ > > > > It doesn't work, this version missing the OSS support, > I talked to the guys we get later a oss version! > > - - Martin I'm using 2.0.0.72-oss in 8-CURRENT which works fine for me. I don't need a better Skype version, what I would like to see is that also the video would work in Skype for us in FBSD. Just my opinion about a newer Skype. Thx matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 08:54:52 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 095CA1065672; Thu, 3 Sep 2009 08:54:52 +0000 (UTC) (envelope-from miwi@bsdcrew.de) Received: from bsdcrew.de (duro.unixfreunde.de [85.214.90.4]) by mx1.freebsd.org (Postfix) with ESMTP id C0EBA8FC13; Thu, 3 Sep 2009 08:54:51 +0000 (UTC) Received: by bsdcrew.de (Postfix, from userid 1001) id D7CA14AC67; Thu, 3 Sep 2009 10:54:46 +0200 (CEST) Date: Thu, 3 Sep 2009 10:54:46 +0200 From: Martin Wilke To: Matthias Apitz Message-ID: <20090903085446.GG82548@bsdcrew.de> References: <4A9EB91C.4060203@icyb.net.ua> <20090902222407.GF82548@bsdcrew.de> <20090903081015.GA2343@current.Sisis.de> MIME-Version: 1.0 Content-Type: text/plain; charset=utf-8; x-action=pgp-signed Content-Disposition: inline Content-Transfer-Encoding: quoted-printable In-Reply-To: <20090903081015.GA2343@current.Sisis.de> User-Agent: Mutt/1.5.19 (2009-01-05) Cc: ports@freebsd.org, freebsd-emulation@freebsd.org, Andriy Gapon Subject: Re: skype 2.1 beta for 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, 03 Sep 2009 08:54:52 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 On Thu, Sep 03, 2009 at 10:10:15AM +0200, Matthias Apitz wrote: > El d=C3=ADa Thursday, September 03, 2009 a las 12:24:07AM +0200, Martin W= ilke escribi=C3=B3: >=20 > > -----BEGIN PGP SIGNED MESSAGE----- > > Hash: SHA1 > >=20 > > On Wed, Sep 02, 2009 at 09:27:40PM +0300, Andriy Gapon wrote: > > >=20 > > > Just noticed this: > > > http://www.skype.com/intl/en/download/skype/linux/ > > >=20 > >=20 > > It doesn't work, this version missing the OSS support, > > I talked to the guys we get later a oss version! > >=20 > > - - Martin >=20 > I'm using 2.0.0.72-oss in 8-CURRENT which works fine for me. I don't > need a better Skype version, what I would like to see is that also the > video would work in Skype for us in FBSD. Just my opinion about a newer > Skype. Also that's not a problem from Skype, FreeBSD need a v4l(v4bsd)... - - Martin >=20 > Thx >=20 > matthias > --=20 > Matthias Apitz > t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 > e - w http://www.unixarea.de/ > People who hate Microsoft Windows use Linux but people who love UNIX use = FreeBSD. >=20 - --=20 +-----------------------+-------------------------------+ | PGP : 0xB1E6FCE9 | Jabber : miwi(at)BSDCrew.de | | Skype : splash_111 | Mail : miwi(at)FreeBSD.org | +-----------------------+-------------------------------+ | Mess with the Best, Die like the Rest! | +-----------------------+-------------------------------+ -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.11 (FreeBSD) iEYEARECAAYFAkqfhFYACgkQdLJIhLHm/Ol3OACg4vV9WkjBjm498ika1lktUZ/7 kCsAn2n82QxvTS+lC8werC+9mSzXlLeY =3Du/yO -----END PGP SIGNATURE----- From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 10:44:03 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 4F7DB106566C for ; Thu, 3 Sep 2009 10:44:03 +0000 (UTC) (envelope-from gperez@entel.upc.edu) Received: from dash.upc.es (dash.upc.es [147.83.2.50]) by mx1.freebsd.org (Postfix) with ESMTP id B1DA28FC08 for ; Thu, 3 Sep 2009 10:44:02 +0000 (UTC) Received: from ackerman2.upc.es (ackerman2.upc.es [147.83.2.244]) by dash.upc.es (8.14.1/8.13.1) with ESMTP id n837P6p7024083 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Thu, 3 Sep 2009 09:25:06 +0200 Received: from [147.83.40.234] ([147.83.40.234]) (authenticated bits=0) by ackerman2.upc.es (8.13.8/8.13.8) with ESMTP id n837P3DW028673 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Sep 2009 09:25:05 +0200 Message-ID: <4A9F8AE6.1000001@entel.upc.edu> Date: Thu, 03 Sep 2009 09:22:46 +0000 From: =?ISO-8859-1?Q?Gustau_P=E9rez?= User-Agent: Thunderbird 2.0.0.17pre (X11/20090808) MIME-Version: 1.0 To: Fredrik Lindberg References: <4A8EB3D2.7010109@shapeshifter.se> <4A9E6481.9070200@shapeshifter.se> In-Reply-To: <4A9E6481.9070200@shapeshifter.se> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Mail-Scanned: Criba 2.0 + Clamd X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (dash.upc.es [147.83.2.50]); Thu, 03 Sep 2009 09:25:06 +0200 (CEST) Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox bridged adapter (vboxnetflt) 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, 03 Sep 2009 10:44:03 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fredrik Lindberg wrote: > > Test if you're interested and report failures/successes. Hi, tried your patches against FreeBSD 8.0BETA3/i386-SMP. When selecting an interface and configuring it as a bridged one, it finds all my host interfaces. I can select one of them (in my case bge0), but when I try to start the vm it gives me the following error : ******************* p, li { white-space: pre-wrap; } Failed to open/create the internal network 'HostInterfaceNetworking-bge0' (VERR_SUPDRV_COMPONENT_NOT_FOUND). Unknown error creating VM (VERR_SUPDRV_COMPONENT_NOT_FOUND). Details Result Code : NS_ERROR_FAILURE (0x80004005) Component : Console Interface : IConsole {0a51994b-cbc6-4686-94eb-d4e4023280e2} li { white-space: pre-wrap; } ******************* Your previous set of patches worked fine. I'll try in a 7.2-STABLE in a while a let you know my results. Greets, Gus - -- PGP KEY : http://www-entel.upc.edu/gus/gus.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkqfiuYACgkQKk3pq6YadNvFCgCfXGwbcbaOeeAhRtKiy3SHFrep 79gAoK22jdIHrKE5OXkY+oldtWtlM3XD =hxob -----END PGP SIGNATURE----- From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 10:55:28 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id C6FB61065672 for ; Thu, 3 Sep 2009 10:55:28 +0000 (UTC) (envelope-from gustau.perez@gmail.com) Received: from dash.upc.es (dash.upc.es [147.83.2.50]) by mx1.freebsd.org (Postfix) with ESMTP id 39C6C8FC16 for ; Thu, 3 Sep 2009 10:55:27 +0000 (UTC) Received: from ackerman2.upc.es (ackerman2.upc.es [147.83.2.244]) by dash.upc.es (8.14.1/8.13.1) with ESMTP id n837e0hR002918 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL) for ; Thu, 3 Sep 2009 09:40:00 +0200 Received: from [147.83.40.234] ([147.83.40.234]) (authenticated bits=0) by ackerman2.upc.es (8.13.8/8.13.8) with ESMTP id n837dxLo029938 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO) for ; Thu, 3 Sep 2009 09:39:59 +0200 Message-ID: <4A9F8E66.7020408@gmail.com> Date: Thu, 03 Sep 2009 09:37:42 +0000 From: Gustau Perez User-Agent: Thunderbird 2.0.0.17pre (X11/20090808) MIME-Version: 1.0 CC: freebsd-emulation@freebsd.org References: <4A8EB3D2.7010109@shapeshifter.se> <4A9E6481.9070200@shapeshifter.se> In-Reply-To: <4A9E6481.9070200@shapeshifter.se> Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Mail-Scanned: Criba 2.0 + Clamd X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (dash.upc.es [147.83.2.50]); Thu, 03 Sep 2009 09:40:00 +0200 (CEST) Subject: Re: VirtualBox bridged adapter (vboxnetflt) 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, 03 Sep 2009 10:55:28 -0000 Fredrik Lindberg wrote: > > Test if you're interested and report failures/successes. Hi, tried your patches against FreeBSD 8.0BETA3/i386-SMP. When selecting an interface and configuring it as a bridged one, it finds all my host interfaces. I can select one of them (in my case bge0), but when I try to start the vm it gives me the following error : ******************* Failed to open/create the internal network 'HostInterfaceNetworking-bge0' (VERR_SUPDRV_COMPONENT_NOT_FOUND). Unknown error creating VM (VERR_SUPDRV_COMPONENT_NOT_FOUND). Details Result Code : NS_ERROR_FAILURE (0x80004005) Component : Console Interface : IConsole {0a51994b-cbc6-4686-94eb-d4e4023280e2} ******************* Your previous set of patches worked fine. I'll try in a 7.2-STABLE in a while a let you know my results. Greets, Gus From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 11:35:33 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id BEF68106566C; Thu, 3 Sep 2009 11:35:33 +0000 (UTC) (envelope-from guru@unixarea.de) Received: from dd12710.kasserver.com (dd12710.kasserver.com [85.13.134.233]) by mx1.freebsd.org (Postfix) with ESMTP id 7A4838FC0C; Thu, 3 Sep 2009 11:35:33 +0000 (UTC) Received: from current.Sisis.de (ppp-62-216-213-11.dynamic.mnet-online.de [62.216.213.11]) by dd12710.kasserver.com (Postfix) with ESMTP id 026E6184928CE; Thu, 3 Sep 2009 13:35:33 +0200 (CEST) Received: (from guru@localhost) by current.Sisis.de (8.14.3/8.14.3/Submit) id n83BZYOV002102; Thu, 3 Sep 2009 13:35:34 +0200 (CEST) (envelope-from guru@unixarea.de) X-Authentication-Warning: current.Sisis.de: guru set sender to guru@unixarea.de using -f Date: Thu, 3 Sep 2009 13:35:34 +0200 From: Matthias Apitz To: Martin Wilke Message-ID: <20090903113534.GA1984@current.Sisis.de> References: <4A9EB91C.4060203@icyb.net.ua> <20090902222407.GF82548@bsdcrew.de> <20090903081015.GA2343@current.Sisis.de> <20090903085446.GG82548@bsdcrew.de> Mime-Version: 1.0 Content-Type: text/plain; charset=iso-8859-1 Content-Disposition: inline Content-Transfer-Encoding: 8bit In-Reply-To: <20090903085446.GG82548@bsdcrew.de> User-Agent: Mutt/1.4.2.3i X-Operating-System: FreeBSD 8.0-CURRENT (i386) Cc: ports@FreeBSD.org, freebsd-emulation@FreeBSD.org, Andriy Gapon Subject: Re: skype 2.1 beta for linux X-BeenThere: freebsd-emulation@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list Reply-To: Matthias Apitz List-Id: Development of Emulators of other operating systems List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Thu, 03 Sep 2009 11:35:33 -0000 El día Thursday, September 03, 2009 a las 10:54:46AM +0200, Martin Wilke escribió: > > I'm using 2.0.0.72-oss in 8-CURRENT which works fine for me. I don't > > need a better Skype version, what I would like to see is that also the > > video would work in Skype for us in FBSD. Just my opinion about a newer > > Skype. > > Also that's not a problem from Skype, FreeBSD need a v4l(v4bsd)... I know. Even better would be that Skype.com provides a native FreeBSD port of Skype. matthias -- Matthias Apitz t +49-89-61308 351 - f +49-89-61308 399 - m +49-170-4527211 e - w http://www.unixarea.de/ People who hate Microsoft Windows use Linux but people who love UNIX use FreeBSD. From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 17:44:18 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 45B52106566B for ; Thu, 3 Sep 2009 17:44:18 +0000 (UTC) (envelope-from gperez@entel.upc.edu) Received: from dash.upc.es (dash.upc.es [147.83.2.50]) by mx1.freebsd.org (Postfix) with ESMTP id C2C1B8FC19 for ; Thu, 3 Sep 2009 17:44:17 +0000 (UTC) Received: from ackerman2.upc.es (ackerman2.upc.es [147.83.2.244]) by dash.upc.es (8.14.1/8.13.1) with ESMTP id n83HiFnq020387 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=FAIL); Thu, 3 Sep 2009 19:44:16 +0200 Received: from [192.168.100.184] (132.Red-88-12-185.dynamicIP.rima-tde.net [88.12.185.132]) (authenticated bits=0) by ackerman2.upc.es (8.13.8/8.13.8) with ESMTP id n83HiCfA021785 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Thu, 3 Sep 2009 19:44:15 +0200 Message-ID: <4AA01C01.6030000@entel.upc.edu> Date: Thu, 03 Sep 2009 19:41:53 +0000 From: =?ISO-8859-1?Q?Gustau_P=E9rez?= User-Agent: Thunderbird 2.0.0.17pre (X11/20090808) MIME-Version: 1.0 To: Fredrik Lindberg References: <4A8EB3D2.7010109@shapeshifter.se> <4A9E6481.9070200@shapeshifter.se> <4A9F8AE6.1000001@entel.upc.edu> <4A9F7353.3020106@shapeshifter.se> In-Reply-To: <4A9F7353.3020106@shapeshifter.se> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=ISO-8859-1 Content-Transfer-Encoding: 7bit X-Mail-Scanned: Criba 2.0 + Clamd X-Greylist: Sender IP whitelisted, not delayed by milter-greylist-3.0 (dash.upc.es [147.83.2.50]); Thu, 03 Sep 2009 19:44:16 +0200 (CEST) Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox bridged adapter (vboxnetflt) 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, 03 Sep 2009 17:44:18 -0000 -----BEGIN PGP SIGNED MESSAGE----- Hash: SHA1 Fredrik Lindberg wrote: >> >> Hi, >> >> tried your patches against FreeBSD 8.0BETA3/i386-SMP. When selecting >> an interface and configuring it as a bridged one, it finds all my host >> interfaces. I can select one of them (in my case bge0), but when I try >> to start the >> vm it gives me the following error : >> >> ******************* >> >> p, li { white-space: pre-wrap; } >> >> Failed to open/create the internal network >> 'HostInterfaceNetworking-bge0' >> (VERR_SUPDRV_COMPONENT_NOT_FOUND). >> >> Unknown error creating VM (VERR_SUPDRV_COMPONENT_NOT_FOUND). >> > > Did you by any chance forget to do a kldload > /boot/modules/vboxnetflt.ko ? > > Fredrik I cleaned emulators/virtualbox, cvsup'ed it (to make sure it is clean). Then I reapplied the patches following the instructions. Both vboxdrv.ko and vboxnetflt.ko are in the kernel and I made sure they were the new ones. With 8.0-BETA3/i386-SMP it still fails. I checked dmesg, but nothing special there. What else can I try ? It worked fine with your previou set of patches. Gus - -- PGP KEY : http://www-entel.upc.edu/gus/gus.asc -----BEGIN PGP SIGNATURE----- Version: GnuPG v2.0.12 (FreeBSD) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org iEYEARECAAYFAkqgHAAACgkQKk3pq6YadNuHigCfaN9expfLR0TdxnbgNdA+MGNP igEAnjkvmPNl1KPkewdoBbtUAzzHDCLC =VH7P -----END PGP SIGNATURE----- From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 19:37:21 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 89AD6106568D for ; Thu, 3 Sep 2009 19:37:21 +0000 (UTC) (envelope-from lapo@lapo.it) Received: from mail.lapo.it (motoko.lapo.it [88.198.0.105]) by mx1.freebsd.org (Postfix) with ESMTP id E076F8FC0C for ; Thu, 3 Sep 2009 19:37:20 +0000 (UTC) Received: (qmail 68441 invoked by uid 89); 3 Sep 2009 19:10:39 -0000 Received: from host71-40-static.74-81-b.business.telecomitalia.it (HELO ?10.0.0.1?) (lapo@lapo.it@81.74.40.71) by 0 with ESMTPA; 3 Sep 2009 19:10:39 -0000 Message-ID: <4AA0149E.30209@lapo.it> Date: Thu, 03 Sep 2009 21:10:22 +0200 From: Lapo Luchini User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.1.23) Gecko/20090812 Thunderbird/2.0.0.23 Mnenhy/0.7.5.0 MIME-Version: 1.0 To: Martin Wilke References: <20090527134343.GB1104@bsdcrew.de> <85d001330905270909jde4d723s65e8708a8b498c29@mail.gmail.com> <20090527163952.GI1104@bsdcrew.de> In-Reply-To: <20090527163952.GI1104@bsdcrew.de> X-Enigmail-Version: 0.96.0 OpenPGP: id=C8F252FB; url=http://www.lapo.it/pgpkey.txt Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enigABD3E114924551AF40FD267C" Cc: freebsd-emulation@freebsd.org, freebsd-current@freebsd.org, "M. Vale" Subject: Re: [Call For Testing] VirtualBox for FreeBSD! take 4 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, 03 Sep 2009 19:37:21 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enigABD3E114924551AF40FD267C Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Martin Wilke wrote: >> /usr/ports/devel/kBuild/work/kBuild-0.1.5-p1/kBuild/footer.kmk:2304: *= ** >> target file `virtualbox' has both : and :: entries. >> Stop . >> kmk: Leaving directory `/usr/ports/devel/kBuild/work/kBuild-0.1.5-p1' >> gmake: *** >> [/usr/ports/devel/kBuild/work/kBuild-0.1.5-p1/out/freebsd.amd64/releas= e/bootstrap/ts-stage2-build] >> Error 2 >> ./kBuild/env.sh: info: rc=3D2: gmake -f bootstrap.gmk >> *** Error code 2 >=20 >> Stop in /usr/ports/devel/kBuild. >> " > > Please update to 7.2 or higher Errr, and what if I have that in a FreeBSD 7.2-STABLE? Any other ideas? (both on my i386 laptop and amd64 home-server) Strangely I can find nothing on Google for that, which seems to indicate very little people is trying VirtualBox on FreeBSD or both my unrelated and different boxes have got a "rare" bug =3D) (but of course they got more or less the same mix of ports installed, so they're not really unrelated one another) --=20 Lapo Luchini - http://lapo.it/ =E2=80=9C=E2=80=A6one of the main causes of the fall of the Roman Empire = was that, lacking zero, they had no way to indicate successful termination of their C programs.=E2=80=9D (Robert Firth) --------------enigABD3E114924551AF40FD267C Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBCAAGBQJKoBSlAAoJELBiMTth2oCDWxcQAKGqt9y08atiOR389PqjDqoj PiXH4uR1/KNe3Y5PCMG26I91mpSPCSZVkV4C7iFWJ4QEgE9ygDRz0/zGCcjvBrI6 yMv5ZZBh0aro93O55Vp9GS5oVVn9D6sKoOHLw2bdnccU4/wO9X06BgUzh9QpFrbK 9I4mE0tK/JY944R7TEssth71BS6ligp/7jw5foHlD41qmg9ZYFudmrkQWhXFb9B3 MfjURuIBcNsaN9pOjniRVkjURPzV/zFJOYrml2DOxaJkPL3+uKFGidVLyvjvLsdy q1UzZGnZxVnF4TQROoGTmUUTvdc9saMjVI+uoaJ/o6U4Ox1I7wDbS0WiSlzajfL4 tkccU/wgNWD2u+Sqb54FCscGpTnHY9Vj251KWHuZ+XEAro9zqDHbjJM89d0pdtvN 00CkUP2GkcCV3p5u2XFk2qmS25nX508GwvPWMD179hyqOq5nZdloJcxnMyxKkaZM Jxa6Lzu6E0q/CZS03H1YHlyTrjvhLnsNXGDcQ4BppmvAZ/mlgAf6cWwJt/jIkKNC 4NuCry6hO1fHLpT1ERW8+AJmhw0q1r1cfKPrUVi+iQG8dTy0rbFcU+Wv8aF80bsh fdQh+H1UyTy3c0URCVwbjWbNamqVNMxkE5xs4NohWQ9Sc6G6xoKD0TgVGEHfZbgp 0uJ9fgxXvh69zZd6iNZl =05kV -----END PGP SIGNATURE----- --------------enigABD3E114924551AF40FD267C-- From owner-freebsd-emulation@FreeBSD.ORG Thu Sep 3 20:14:48 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 55C331065672; Thu, 3 Sep 2009 20:14:48 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-vw0-f189.google.com (mail-vw0-f189.google.com [209.85.212.189]) by mx1.freebsd.org (Postfix) with ESMTP id CD2A98FC1B; Thu, 3 Sep 2009 20:14:47 +0000 (UTC) Received: by vws27 with SMTP id 27so257336vws.3 for ; Thu, 03 Sep 2009 13:14:47 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=fnq7WyorOcz6KP0dAAgj9hCIG6sO87qNDPbSfh7G4ZU=; b=YtCAv/q0mrLLU0HWOVshJoTS9df8tisIZwEWeqnQj8jrLr+mEvCBPZuP1jdkTujGo2 akFxNH5h4s6eWIvqvdRKzxfK2a8gtzoFMVZhvCQFuxv995JfMCnTuGwsYq80clEY2gkh EkjmNGrIdQ/jygaM2TSHr8Xc7W9GrVMP9By7o= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=jV5fDgOTeiyhOy8in9A7Jmh6U7wew8J5PEn7WBffJBwZeLRpiKxfV2zKzAdIJa+VsZ XuhfXDt6KlcSDOWPkcS8pJYEVP6p4KIef4nTc9i+YYBJf+5qLOlGvgAxaJCrysebpXxE ZshOBynlZwevrtWiv3ncGYQJMTCE0l1rYXtyg= MIME-Version: 1.0 Received: by 10.150.132.19 with SMTP id f19mr16909243ybd.83.1252007566848; Thu, 03 Sep 2009 12:52:46 -0700 (PDT) In-Reply-To: <4AA0149E.30209@lapo.it> References: <20090527134343.GB1104@bsdcrew.de> <85d001330905270909jde4d723s65e8708a8b498c29@mail.gmail.com> <20090527163952.GI1104@bsdcrew.de> <4AA0149E.30209@lapo.it> Date: Thu, 3 Sep 2009 14:52:46 -0500 Message-ID: <6201873e0909031252r41bced2eqe1784a17214f1cd1@mail.gmail.com> From: Adam Vande More To: Lapo Luchini Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-emulation@freebsd.org, freebsd-current@freebsd.org, "M. Vale" Subject: Re: [Call For Testing] VirtualBox for FreeBSD! take 4 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, 03 Sep 2009 20:14:48 -0000 On Thu, Sep 3, 2009 at 2:10 PM, Lapo Luchini wrote: > Martin Wilke wrote: > >> /usr/ports/devel/kBuild/work/kBuild-0.1.5-p1/kBuild/footer.kmk:2304: *= ** > >> target file `virtualbox' has both : and :: entries. > >> Stop . > >> kmk: Leaving directory `/usr/ports/devel/kBuild/work/kBuild-0.1.5-p1' > >> gmake: *** > >> > [/usr/ports/devel/kBuild/work/kBuild-0.1.5-p1/out/freebsd.amd64/release/b= ootstrap/ts-stage2-build] > >> Error 2 > >> ./kBuild/env.sh: info: rc=3D2: gmake -f bootstrap.gmk > >> *** Error code 2 > > > >> Stop in /usr/ports/devel/kBuild. > >> " > > > > Please update to 7.2 or higher > > Errr, and what if I have that in a FreeBSD 7.2-STABLE? > Any other ideas? (both on my i386 laptop and amd64 home-server) > > Strangely I can find nothing on Google for that, which seems to indicate > very little people is trying VirtualBox on FreeBSD or both my unrelated > and different boxes have got a "rare" bug =3D) > > (but of course they got more or less the same mix of ports installed, so > they're not really unrelated one another) > > -- > Lapo Luchini - http://lapo.it/ > > =93=85one of the main causes of the fall of the Roman Empire was that, > lacking zero, they had no way to indicate successful termination of > their C programs.=94 (Robert Firth) > > Are you using portmaster to build virtualbox? --=20 Adam Vande More From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 4 04:14:22 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 61321106566C for ; Fri, 4 Sep 2009 04:14:22 +0000 (UTC) (envelope-from lapo@lapo.it) Received: from mail.lapo.it (motoko.lapo.it [88.198.0.105]) by mx1.freebsd.org (Postfix) with ESMTP id B829B8FC14 for ; Fri, 4 Sep 2009 04:14:21 +0000 (UTC) Received: (qmail 47004 invoked by uid 89); 4 Sep 2009 04:14:20 -0000 Received: from host71-40-static.74-81-b.business.telecomitalia.it (HELO ?10.0.0.1?) (lapo@lapo.it@81.74.40.71) by 0 with ESMTPA; 4 Sep 2009 04:14:20 -0000 Message-ID: <4AA09410.8020302@lapo.it> Date: Fri, 04 Sep 2009 06:14:08 +0200 From: Lapo Luchini User-Agent: Mozilla/5.0 (Windows; U; Windows NT 5.2; en-US; rv:1.8.1.23) Gecko/20090812 Thunderbird/2.0.0.23 Mnenhy/0.7.5.0 MIME-Version: 1.0 To: Adam Vande More References: <20090527134343.GB1104@bsdcrew.de> <85d001330905270909jde4d723s65e8708a8b498c29@mail.gmail.com> <20090527163952.GI1104@bsdcrew.de> <4AA0149E.30209@lapo.it> <6201873e0909031252r41bced2eqe1784a17214f1cd1@mail.gmail.com> In-Reply-To: <6201873e0909031252r41bced2eqe1784a17214f1cd1@mail.gmail.com> X-Enigmail-Version: 0.96.0 OpenPGP: id=C8F252FB Content-Type: multipart/signed; micalg=pgp-sha256; protocol="application/pgp-signature"; boundary="------------enig364510BCBF0FC7948039456A" Cc: Doug Barton , freebsd-emulation@freebsd.org, freebsd-current@freebsd.org, "M. Vale" Subject: Re: [Call For Testing] VirtualBox for FreeBSD! take 4 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, 04 Sep 2009 04:14:22 -0000 This is an OpenPGP/MIME signed message (RFC 2440 and 3156) --------------enig364510BCBF0FC7948039456A Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: quoted-printable Adam Vande More wrote: >>>/usr/ports/devel/kBuild/work/kBuild-0.1.5-p1/kBuild/footer.kmk:2304: *= ** >>> target file `virtualbox' has both : and :: entries. >>> >>> Please update to 7.2 or higher >>=20 >> Errr, and what if I have that in a FreeBSD 7.2-STABLE? >=20 > Are you using portmaster to build virtualbox? Yes indeed... and now that you say it, I tried a simple "cd emulators/virtualbox ; make install" and it worked! I wonder what does portmaster different to break only that specific port.= =2E. --=20 Lapo Luchini - http://lapo.it/ =E2=80=9CAny sufficiently advanced technology is indistinguishable from m= agic.=E2=80=9D (Arthur C. Clarke) --------------enig364510BCBF0FC7948039456A Content-Type: application/pgp-signature; name="signature.asc" Content-Description: OpenPGP digital signature Content-Disposition: attachment; filename="signature.asc" -----BEGIN PGP SIGNATURE----- Version: GnuPG v1.4.9 (Cygwin) Comment: Using GnuPG with Mozilla - http://enigmail.mozdev.org/ iQIcBAEBCAAGBQJKoJQWAAoJELBiMTth2oCDJrkP/i8HEydXOiy4W+c1FYwtMvdl suJsLLlvAlV0UloIzrjDKL916qxzCiJOWfXuzzXtHBWIAw5ICLSQruXFcZ5FF3Tl PqmQ73g5imoZELvkOupQtTZA2/VICKIJCSbJbfTinU1IcNXiFQkChs0h0Sfnpe7Z aZ1Hz7AvGyk+u6YUm6AB5qzS23Y/g1cyfwzyPij1hSC07bMEMuV/qcXXtZW3LbbQ 0pWg6RahxdLbwFfSf1oy32OHZHYDxT13VMGbInPVJDZZsHVl5N22jDd8WaCBE4TT aE+5dbm1SB1MPj/W+3dj3EWRgqLADF1zPOscBfGcFsLqPZYm2lRGxEnq9Lfui+Al 4r1zkiSgBBtQUvq6bDsMFQFyFD/rVlD4TVdPDYWMEq2KFTIl6HdeMhngckWh7AFb 8qC/t9UkDcrOuQGj2oXJyOcRcuvV5c5Ua+DfJ5gXJIKbVGG/Vcj7vDjb2ADQEtMY r+MXYFxMMnu+MBRqveTmXmMp/zaIGyklnhznfRyzYolFZ9FDvJMkeXW+FLcEWw6I PHgVKa1WbyUrzwrUvP8mrOx0lpmLq5ScgMGw4w5lwg5dt5/V0yBp/3V15XOvemZd g1TDID4YKIsh8aqDAe2Ix2m5NtudUN3Zji1WeTzpiyPkVBgkP+5xmNlRPSvo1WT3 Q+JcpzrCPlHNNhOdKbp5 =LljS -----END PGP SIGNATURE----- --------------enig364510BCBF0FC7948039456A-- From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 4 12:36:50 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 1C3C1106568B; Fri, 4 Sep 2009 12:36:50 +0000 (UTC) (envelope-from amvandemore@gmail.com) Received: from mail-yw0-f187.google.com (mail-yw0-f187.google.com [209.85.211.187]) by mx1.freebsd.org (Postfix) with ESMTP id 728178FC28; Fri, 4 Sep 2009 12:36:49 +0000 (UTC) Received: by ywh17 with SMTP id 17so1394233ywh.3 for ; Fri, 04 Sep 2009 05:36:48 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:in-reply-to:references :date:message-id:subject:from:to:cc:content-type; bh=KUxl8ddq0JOIsZgs81l2QhgrfGZHmtodQhA8iQicPww=; b=ZG8fEgSsJ7IxTEGIdoN71m5BaE0Nq4hOE28QYMP6GVmVCP/k3vumfU79C2GIyZZEPa B/MbyIHHJmKLKaNq4ogxhwDxHL55NvmGDco4nrrm0xllWK+4CRBMHv87vxpZ+M+HlTAw xlAwENbaO6P30XlpbKOsL+FmjmUVSXyu5KbkI= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:in-reply-to:references:date:message-id:subject:from:to :cc:content-type; b=oCY34nE4SyCHA707nco4RL/Au2sXMrwzmsl97ZXRIEPTld1gXpn6XccSMeRdTFnfDl fkamYHq6WpQ0FmmzxFkvjyOWJ+zT7H3hHRmmsvSFtFfOJFdfpRlB6qShf9Zg1Ct2W0bj dgVe2NyW8j/rOnio3fKYyKinJrgcw4XsiWdgo= MIME-Version: 1.0 Received: by 10.150.238.1 with SMTP id l1mr18502393ybh.68.1252067808244; Fri, 04 Sep 2009 05:36:48 -0700 (PDT) In-Reply-To: <4AA09410.8020302@lapo.it> References: <20090527134343.GB1104@bsdcrew.de> <85d001330905270909jde4d723s65e8708a8b498c29@mail.gmail.com> <20090527163952.GI1104@bsdcrew.de> <4AA0149E.30209@lapo.it> <6201873e0909031252r41bced2eqe1784a17214f1cd1@mail.gmail.com> <4AA09410.8020302@lapo.it> Date: Fri, 4 Sep 2009 07:36:48 -0500 Message-ID: <6201873e0909040536y2a2c7a22t30247d61adc26318@mail.gmail.com> From: Adam Vande More To: Lapo Luchini Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: quoted-printable X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: freebsd-emulation@freebsd.org, freebsd-current@freebsd.org, "M. Vale" Subject: Re: [Call For Testing] VirtualBox for FreeBSD! take 4 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, 04 Sep 2009 12:36:50 -0000 On Thu, Sep 3, 2009 at 11:14 PM, Lapo Luchini wrote: > Adam Vande More wrote: > >>>/usr/ports/devel/kBuild/work/kBuild-0.1.5-p1/kBuild/footer.kmk:2304: *= ** > >>> target file `virtualbox' has both : and :: entries. > >>> > >>> Please update to 7.2 or higher > >> > >> Errr, and what if I have that in a FreeBSD 7.2-STABLE? > > > > Are you using portmaster to build virtualbox? > > Yes indeed... and now that you say it, I tried a simple > "cd emulators/virtualbox ; make install" > and it worked! > > I wonder what does portmaster different to break only that specific port.= .. > > -- > Lapo Luchini - http://lapo.it/ > > =93Any sufficiently advanced technology is indistinguishable from magic.= =94 > (Arthur C. Clarke) > > I believe portmaster uses a lot environmental variables, and kBuild does something funky with them. So technically, the issue lies w/ kBuild, not portmaster. At least that's what I read. --=20 Adam Vande More From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 4 16:37:52 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B4EC6106566C for ; Fri, 4 Sep 2009 16:37:52 +0000 (UTC) (envelope-from julian@elischer.org) Received: from outU.internet-mail-service.net (outu.internet-mail-service.net [216.240.47.244]) by mx1.freebsd.org (Postfix) with ESMTP id A077C8FC1C for ; Fri, 4 Sep 2009 16:37:52 +0000 (UTC) Received: from idiom.com (mx0.idiom.com [216.240.32.160]) by out.internet-mail-service.net (Postfix) with ESMTP id 1127DB57E for ; Fri, 4 Sep 2009 09:37:53 -0700 (PDT) X-Client-Authorized: MaGic Cook1e Received: from julian-mac.elischer.org (home.elischer.org [216.240.48.38]) by idiom.com (Postfix) with ESMTP id 5A0A32D601F for ; Fri, 4 Sep 2009 09:37:52 -0700 (PDT) Message-ID: <4AA1425F.5030701@elischer.org> Date: Fri, 04 Sep 2009 09:37:51 -0700 From: Julian Elischer User-Agent: Thunderbird 2.0.0.23 (Macintosh/20090812) MIME-Version: 1.0 To: freebsd-emulation@freebsd.org Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Subject: Re: problem with virtualbox bridge.. 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, 04 Sep 2009 16:37:52 -0000 The new bridge code used netgraph so make sure you have netgraph and ng_ether nodes loaded..... I think. From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 4 17:15:17 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id B05CE106566C; Fri, 4 Sep 2009 17:15:17 +0000 (UTC) (envelope-from avg@freebsd.org) Received: from citadel.icyb.net.ua (citadel.icyb.net.ua [212.40.38.140]) by mx1.freebsd.org (Postfix) with ESMTP id A49138FC0C; Fri, 4 Sep 2009 17:15:16 +0000 (UTC) Received: from odyssey.starpoint.kiev.ua (alpha-e.starpoint.kiev.ua [212.40.38.101]) by citadel.icyb.net.ua (8.8.8p3/ICyb-2.3exp) with ESMTP id TAA27068; Fri, 04 Sep 2009 19:56:03 +0300 (EEST) (envelope-from avg@freebsd.org) Message-ID: <4AA146A2.1000007@freebsd.org> Date: Fri, 04 Sep 2009 19:56:02 +0300 From: Andriy Gapon User-Agent: Thunderbird 2.0.0.22 (X11/20090724) MIME-Version: 1.0 To: vbox@freebsd.org, freebsd-emulation@freebsd.org References: <4A9E85C1.1090605@icyb.net.ua> In-Reply-To: <4A9E85C1.1090605@icyb.net.ua> X-Enigmail-Version: 0.95.7 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 7bit Cc: Subject: Re: virtualbox 3.0.51r22226: some quirks 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, 04 Sep 2009 17:15:17 -0000 on 02/09/2009 17:48 Andriy Gapon said the following: > 2. Permanent shared directories disappear after VirtualBox restart. It seems that the following line always stays unchanged: I manually replaced it with the following: But when I started VirtualBox it immediately magically went back to the previous state. Although VirtualBox itself showed that share as configured and permanent. Seems like a bug in some configuration saving logic. -- Andriy Gapon From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 4 20:18:22 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 98E3E106566B; Fri, 4 Sep 2009 20:18:22 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 55A4E8FC08; Fri, 4 Sep 2009 20:18:22 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 99D171E00371; Fri, 4 Sep 2009 22:18:21 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n84JYZj5077745; Fri, 4 Sep 2009 21:34:35 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.3/8.14.3/Submit) id n84JYZeq077744; Fri, 4 Sep 2009 21:34:35 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Fri, 4 Sep 2009 21:34:35 +0200 To: Juergen Lock Message-ID: <20090904193435.GA77708@triton8.kn-bremen.de> References: <20090829222339.GA93608@triton8.kn-bremen.de> <20090902175621.GA63905@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090902175621.GA63905@triton8.kn-bremen.de> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-emulation@FreeBSD.org, qemu-devel@nongnu.org, Jung-uk Kim Subject: Re: experimental FreeBSD qemu-devel git head port update for testing 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, 04 Sep 2009 20:18:22 -0000 On Wed, Sep 02, 2009 at 07:56:21PM +0200, Juergen Lock wrote: > On Sun, Aug 30, 2009 at 12:23:39AM +0200, Juergen Lock wrote: > > Hi! > > > > Jan Kiszka asked me if the unstable guest timer irq problem still > > exists on qemu git head, so I made an update for that today: > > http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch > > (and found out it does.) > > > > The bad news (for FreeBSD users anyway) is kqemu support has now been > > removed as `promised' (by the upstream qemu developers), so testing this > > version is probably less interesting for many FreeBSD users than the > > qemu 0.11 stable branch snapshot I posted about here, > > http://lists.freebsd.org/pipermail/freebsd-emulation/2009-August/006646.html > > but e.g. users of non-x86 targets probably will still be interested. > > > > Also the pcap patch stopped working in this snapshot and I don't yet > > know why. (I think the original version of that patch was submitted by > > Jung-uk Kim, maybe he has an idea; Cc'd.) > > [...] > > Jung-uk Kim sent me a new pcap patch (thanx! :), and I have just included > it in the mentioned update at > http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch New update at the same place, Jung-uk Kim sent me another version of the pcap patch and while I was at it I added the tap close patch and removed the dynticks patch since it seems to perform even worse than -clock unix on FreeBSD. :( Happy testing... Juergen From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 4 20:18:22 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CEEBE1065676 for ; Fri, 4 Sep 2009 20:18:22 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id 5EB2F8FC0A for ; Fri, 4 Sep 2009 20:18:22 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id A29621E0036F; Fri, 4 Sep 2009 22:18:21 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n84KDmGw078494; Fri, 4 Sep 2009 22:13:48 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.3/8.14.3/Submit) id n84KDmlD078493; Fri, 4 Sep 2009 22:13:48 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Fri, 4 Sep 2009 22:13:47 +0200 To: Anthony Liguori Message-ID: <20090904201347.GA77929@triton8.kn-bremen.de> References: <4AA11B9F.9050101@codemonkey.ws> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <4AA11B9F.9050101@codemonkey.ws> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-emulation@freebsd.org, qemu-devel@nongnu.org Subject: Re: [Qemu-devel] ANNOUNCE: Release 0.11.0-rc2 of QEMU 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, 04 Sep 2009 20:18:23 -0000 On Fri, Sep 04, 2009 at 08:52:31AM -0500, Anthony Liguori wrote: > The QEMU team is pleased to announce the availability of the 0.11.0-rc2 > release. This is the second release candidate for the 0.11.0 release. > This release contains only bug fixes since 0.11.0-rc1. > > Any bugs can be reported at http://bugs.launchpad.net/qemu/+bugs > > It can be downloaded from Savannah at: > > http://download.savannah.gnu.org/releases/qemu/qemu-0.11.0-rc2.tar.gz > Since I already made an experimental FreeBSD qemu-devel port update for 0.11.0 rc1 updating that to 0.11.0 rc2 was easy: http://people.freebsd.org/~nox/qemu/qemu-devel-0.11.0r2.patch (I changed two things tho, see below.) > The following fixes have been added since qemu-0.11.0-rc1: > > - mips: fix conditional move off fp conditions codes (Nath Froyd) > - fix migration to obey -S (Paolo Bonzini) > - remove pc-0-10 machine type (Mark McLoughlin) > - vnc: fix copyrect screen corruption (Gerd Hoffman) > - fix vm state change handlers running order (Markus Armbruster) > - e1000: fix eerc and ics emulation (Bill Paul) > - fix sdl zooming with pl110 (Blue Swirl) > - sparc64: flush pending conditional evaluations (Igor Kovalenko) > - esp: fix interrupt register read (Blue Swirl) > - option rom makefile fixes (Paul Brook) > - fix sparse warnings (Blue Swirl) > - fix symfind (Laurent Desnogues) > - win32: fix default prefix (Stefan Weil) > - fix checksum writing in signboot (Alex Graf) > - fix sdl window resize (Stefano Stabellini) > - do not resize the screen on hw_invalidate (Stefano Stabellini) > - Add checks for -smbios option (Beth Kon) > - fix do_set_link (Luiz Capitulino) > - fix do_commit behavior (Luiz Capitulino) > - make windows notice media change (Gleb Natapov) > - check for PR_SET_NAME being defined (Nathan Froyd) > - fix migration for ide devices (Anthony Liguori) > - Use correct depth in vmware vga (Reimar Doffiner) This seems to work well, I now can run a Linux iso with -vga vmware and vmmouse and set all kinds of resolutions in the guest using xrandr. Thanx! > - support 32bpp cursors in sdl (Reimar Doffinger) > - fix device name completion for eject (Blue Swirl) > - make screendump use DisplayState properly (Stefano Stabellini) > - fix autostart with live migration (Avi Kivity) > - fix detached migration with exec (Chris Lalancette) > - fix segv when changing vnc password in sdl (Zach Amsden) > - fix vnc password clearing with stdio monitor (Zach Amsden) > - clean up VGA type selection (Zach Amsden) > - add missing linefeed in error message (Stefan Weil) Ok now what I changed: I removed the dynticks patch since it seems to perform even worse than -clock unix on FreeBSD (does this count as a qemu bug? The problem seems to be that FreeBSD's POSIX `realtime' timers still only count in increments of HZ, and then seem to always round up too.) And -clock unix is only marginally better, see my post here: http://lists.gnu.org/archive/html/qemu-devel/2009-09/msg00049.html (well at least its good enough that Linux guest kernels don't fail to boot like with -clock dynticks.) The second change is a small patch to tap_cleanup that makes it close the tap fd before calling the ifdown script instead of after, otherwise FreeBSD's tap driver may hit a KASSERT in case the ifdown script does something like an `ifconfig tap0 destroy'... Index: qemu/net.c @@ -1643,12 +1643,13 @@ static void tap_cleanup(VLANClientState qemu_purge_queued_packets(vc); - if (s->down_script[0]) - launch_script(s->down_script, s->down_script_arg, s->fd); - tap_read_poll(s, 0); tap_write_poll(s, 0); close(s->fd); + + if (s->down_script[0]) + launch_script(s->down_script, s->down_script_arg, -1); + qemu_free(s); } I don't know if there are use cases where the ifdown script needs the tap fd still open, otherwise I guess this can also be committed upstream. And in case you want to: :) Signed-off-by: Juergen Lock From owner-freebsd-emulation@FreeBSD.ORG Fri Sep 4 22:23:07 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id CB8E0106566B for ; Fri, 4 Sep 2009 22:23:07 +0000 (UTC) (envelope-from rondzierwa@comcast.net) Received: from QMTA03.westchester.pa.mail.comcast.net (qmta03.westchester.pa.mail.comcast.net [76.96.62.32]) by mx1.freebsd.org (Postfix) with ESMTP id 706958FC12 for ; Fri, 4 Sep 2009 22:23:07 +0000 (UTC) Received: from OMTA14.westchester.pa.mail.comcast.net ([76.96.62.60]) by QMTA03.westchester.pa.mail.comcast.net with comcast id cayy1c0041HzFnQ53mN9EZ; Fri, 04 Sep 2009 22:22:09 +0000 Received: from sz0128.wc.mail.comcast.net ([76.96.58.192]) by OMTA14.westchester.pa.mail.comcast.net with comcast id cmP71c00848qnZY3amP7fS; Fri, 04 Sep 2009 22:23:07 +0000 Date: Fri, 4 Sep 2009 22:23:07 +0000 (UTC) From: rondzierwa@comcast.net To: freebsd-emulation@freebsd.org Message-ID: <1636246179.7585961252102987506.JavaMail.root@sz0128a.westchester.pa.mail.comcast.net> MIME-Version: 1.0 X-Originating-IP: [76.111.0.24] X-Mailer: Zimbra 5.0.16_GA_2927.RHEL5_64 (ZimbraWebClient - FF3.0 (Win)/5.0.16_GA_2927.RHEL5_64) Content-Type: text/plain; charset=utf-8 Content-Transfer-Encoding: 7bit X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Subject: VirtualBox bridged adapter (vboxnetflt) 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, 04 Sep 2009 22:23:08 -0000 I am running FreeBSD 7.2-RELEASE-p2 on i386. I fetched the virtualbox-3.0.51r22226 port and followed your directions in your posting to the emulators mailing list i found on 22-aug. i did a "make clean patch", then applied the two patches http://www.shapeshifter.se/pub/patches/vbox-freebsd-network.patch http://www.shapeshifter.se/pub/patches/virtualbox-Makefile.patch did a make install and got compile errors: kBuild: Compiling vboxdrv - /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/Suppor t/freebsd/SUPDrv-freebsd.c /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c: In function 'vboxNetFltOsInitInstance': /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:330: warning: implicit declaration of function 'ifunit_ref' /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:330: warning: nested extern declaration of 'ifunit_ref' /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:330: warning: assignment makes pointer from integer without a cast /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:337: error: 'struct ifnet' has no member named 'if_transmit' /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c: In function 'vboxNetFltOsMaybeRediscovered': /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:357: error: 'struct ifnet' has no member named 'if_transmit' /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:359: warning: implicit declaration of function 'if_rele' /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:359: warning: nested extern declaration of 'if_rele' /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c: In function 'vboxNetFltOsDeleteInstance': /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:374: error: 'struct ifnet' has no member named 'if_transmit' /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c: In function 'vboxNetFltPortOsSetActive': /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:402: error: 'struct ifnet' has no member named 'if_transmit' /usr/ports/emulators/virtualbox/work/virtualbox-3.0.51r22226/src/VBox/HostDrivers/VBoxNetFlt/freebsd/VBoxNetFlt-free bsd.c:410: error: 'struct ifnet' has no member named 'if_transmit' which version do these patches work with? thanks, ron. From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 5 07:44:00 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id DD74D106566B for ; Sat, 5 Sep 2009 07:44:00 +0000 (UTC) (envelope-from fli@shapeshifter.se) Received: from mx1.h3q.net (mx1.h3q.net [IPv6:2001:16d8:ffe5:1::f1]) by mx1.freebsd.org (Postfix) with ESMTP id A151E8FC0A for ; Sat, 5 Sep 2009 07:44:00 +0000 (UTC) Received: from smtp-auth.h3q.net (smtp-auth.h3q.net [127.0.0.1]) (Authenticated sender: hidden) by mx1.h3q.net (Postfix) with ESMTPSA id D29E133D9E ; Sat, 5 Sep 2009 09:43:58 +0200 (CEST) Message-ID: <4AA216BB.6000609@shapeshifter.se> Date: Sat, 05 Sep 2009 09:43:55 +0200 From: Fredrik Lindberg User-Agent: Thunderbird 2.0.0.22 (X11/20090801) MIME-Version: 1.0 To: rondzierwa@comcast.net References: <1636246179.7585961252102987506.JavaMail.root@sz0128a.westchester.pa.mail.comcast.net> In-Reply-To: <1636246179.7585961252102987506.JavaMail.root@sz0128a.westchester.pa.mail.comcast.net> Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@freebsd.org Subject: Re: VirtualBox bridged adapter (vboxnetflt) 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, 05 Sep 2009 07:44:00 -0000 rondzierwa@comcast.net wrote: > I am running FreeBSD 7.2-RELEASE-p2 on i386. I fetched the virtualbox-3.0.51r22226 port and > followed your directions in your posting to the emulators mailing list i found on 22-aug. > > i did a "make clean patch", then applied the two patches > http://www.shapeshifter.se/pub/patches/vbox-freebsd-network.patch > http://www.shapeshifter.se/pub/patches/virtualbox-Makefile.patch > > did a make install and got compile errors: > > which version do these patches work with? > The first set of patches only worked on 8.0, I posted a set of new patches a few days ago, please take a look at http://lists.freebsd.org/pipermail/freebsd-emulation/2009-September/006740.html Fredrik From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 5 12:00:29 2009 Return-Path: Delivered-To: emulation@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id D0A9B106566B; Sat, 5 Sep 2009 12:00:29 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id A7E2E8FC15; Sat, 5 Sep 2009 12:00:29 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n85C0TWd093431; Sat, 5 Sep 2009 12:00:29 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n85C0TmU093421; Sat, 5 Sep 2009 12:00:29 GMT (envelope-from edwin) Date: Sat, 5 Sep 2009 12:00:29 GMT Message-Id: <200909051200.n85C0TmU093421@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, emulation@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/138545: Update request for audio/linux-f10-alsa-lib 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, 05 Sep 2009 12:00:29 -0000 Synopsis: Update request for audio/linux-f10-alsa-lib Responsible-Changed-From-To: freebsd-ports-bugs->emulation Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 5 12:00:28 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=138545 From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 5 12:10:13 2009 Return-Path: Delivered-To: freebsd-emulation@hub.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 58AD3106566B; Sat, 5 Sep 2009 12:10:13 +0000 (UTC) (envelope-from edwin@FreeBSD.org) Received: from freefall.freebsd.org (freefall.freebsd.org [IPv6:2001:4f8:fff6::28]) by mx1.freebsd.org (Postfix) with ESMTP id 2FF1F8FC08; Sat, 5 Sep 2009 12:10:13 +0000 (UTC) Received: from freefall.freebsd.org (edwin@localhost [127.0.0.1]) by freefall.freebsd.org (8.14.3/8.14.3) with ESMTP id n85CADX2003661; Sat, 5 Sep 2009 12:10:13 GMT (envelope-from edwin@freefall.freebsd.org) Received: (from edwin@localhost) by freefall.freebsd.org (8.14.3/8.14.3/Submit) id n85CADpC003651; Sat, 5 Sep 2009 12:10:13 GMT (envelope-from edwin) Date: Sat, 5 Sep 2009 12:10:13 GMT Message-Id: <200909051210.n85CADpC003651@freefall.freebsd.org> To: edwin@FreeBSD.org, freebsd-ports-bugs@FreeBSD.org, freebsd-emulation@FreeBSD.org From: edwin@FreeBSD.org Cc: Subject: Re: ports/138546: Update request for x11/linux-f10-xorg-libs 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, 05 Sep 2009 12:10:13 -0000 Synopsis: Update request for x11/linux-f10-xorg-libs Responsible-Changed-From-To: freebsd-ports-bugs->freebsd-emulation Responsible-Changed-By: edwin Responsible-Changed-When: Sat Sep 5 12:10:12 UTC 2009 Responsible-Changed-Why: Over to maintainer (via the GNATS Auto Assign Tool) http://www.freebsd.org/cgi/query-pr.cgi?pr=138546 From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 5 15:06:15 2009 Return-Path: Delivered-To: freebsd-emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E7DA1106568D; Sat, 5 Sep 2009 15:06:15 +0000 (UTC) (envelope-from nox@jelal.kn-bremen.de) Received: from smtp.kn-bremen.de (gelbbaer.kn-bremen.de [78.46.108.116]) by mx1.freebsd.org (Postfix) with ESMTP id A3ACD8FC20; Sat, 5 Sep 2009 15:06:15 +0000 (UTC) Received: by smtp.kn-bremen.de (Postfix, from userid 10) id 64E5D1E0036F; Sat, 5 Sep 2009 17:06:14 +0200 (CEST) Received: from triton8.kn-bremen.de (noident@localhost [127.0.0.1]) by triton8.kn-bremen.de (8.14.3/8.14.3) with ESMTP id n85F3Y5W056024; Sat, 5 Sep 2009 17:03:34 +0200 (CEST) (envelope-from nox@triton8.kn-bremen.de) Received: (from nox@localhost) by triton8.kn-bremen.de (8.14.3/8.14.3/Submit) id n85F3YJX056023; Sat, 5 Sep 2009 17:03:34 +0200 (CEST) (envelope-from nox) From: Juergen Lock Date: Sat, 5 Sep 2009 17:03:34 +0200 To: Juergen Lock Message-ID: <20090905150334.GA55989@triton8.kn-bremen.de> References: <20090829222339.GA93608@triton8.kn-bremen.de> <20090902175621.GA63905@triton8.kn-bremen.de> <20090904193435.GA77708@triton8.kn-bremen.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20090904193435.GA77708@triton8.kn-bremen.de> User-Agent: Mutt/1.5.20 (2009-06-14) Cc: freebsd-emulation@FreeBSD.org, qemu-devel@nongnu.org, Jung-uk Kim Subject: Re: experimental FreeBSD qemu-devel git head port update for testing 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, 05 Sep 2009 15:06:16 -0000 On Fri, Sep 04, 2009 at 09:34:35PM +0200, Juergen Lock wrote: > On Wed, Sep 02, 2009 at 07:56:21PM +0200, Juergen Lock wrote: > > On Sun, Aug 30, 2009 at 12:23:39AM +0200, Juergen Lock wrote: > > > Hi! > > > > > > Jan Kiszka asked me if the unstable guest timer irq problem still > > > exists on qemu git head, so I made an update for that today: > > > http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch > > > (and found out it does.) > > > > > > The bad news (for FreeBSD users anyway) is kqemu support has now been > > > removed as `promised' (by the upstream qemu developers), so testing this > > > version is probably less interesting for many FreeBSD users than the > > > qemu 0.11 stable branch snapshot I posted about here, > > > http://lists.freebsd.org/pipermail/freebsd-emulation/2009-August/006646.html > > > but e.g. users of non-x86 targets probably will still be interested. > > > > > > Also the pcap patch stopped working in this snapshot and I don't yet > > > know why. (I think the original version of that patch was submitted by > > > Jung-uk Kim, maybe he has an idea; Cc'd.) > > > [...] > > > > Jung-uk Kim sent me a new pcap patch (thanx! :), and I have just included > > it in the mentioned update at > > http://people.freebsd.org/~nox/qemu/qemu-devel-20090829.patch > > New update at the same place, Jung-uk Kim sent me another version of the > pcap patch and while I was at it I added the tap close patch and removed > the dynticks patch since it seems to perform even worse than -clock unix > on FreeBSD. :( I forgot to mention this update also fixes the build on FreeBSD 7 (libmath didn't get built properly), apologies if you were affected... Juergen From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 5 20:13:27 2009 Return-Path: Delivered-To: freebsd-emulation@freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id 88A381065672 for ; Sat, 5 Sep 2009 20:13:27 +0000 (UTC) (envelope-from dougb@FreeBSD.org) Received: from mail2.fluidhosting.com (mx21.fluidhosting.com [204.14.89.4]) by mx1.freebsd.org (Postfix) with ESMTP id C77A38FC0C for ; Sat, 5 Sep 2009 20:13:26 +0000 (UTC) Received: (qmail 29734 invoked by uid 399); 5 Sep 2009 20:13:19 -0000 Received: from localhost (HELO ?10.9.1.119?) (dougb@dougbarton.us@127.0.0.1) by localhost with ESMTPAM; 5 Sep 2009 20:13:19 -0000 X-Originating-IP: 127.0.0.1 X-Sender: dougb@dougbarton.us Message-ID: <4AA2C659.8050800@FreeBSD.org> Date: Sat, 05 Sep 2009 13:13:13 -0700 From: Doug Barton Organization: http://www.FreeBSD.org/ User-Agent: Thunderbird 2.0.0.23 (Windows/20090812) MIME-Version: 1.0 To: Adam Vande More References: <20090527134343.GB1104@bsdcrew.de> <85d001330905270909jde4d723s65e8708a8b498c29@mail.gmail.com> <20090527163952.GI1104@bsdcrew.de> <4AA0149E.30209@lapo.it> <6201873e0909031252r41bced2eqe1784a17214f1cd1@mail.gmail.com> <4AA09410.8020302@lapo.it> <6201873e0909040536y2a2c7a22t30247d61adc26318@mail.gmail.com> In-Reply-To: <6201873e0909040536y2a2c7a22t30247d61adc26318@mail.gmail.com> X-Enigmail-Version: 0.96.0 OpenPGP: id=D5B2F0FB Content-Type: text/plain; charset=windows-1252 Content-Transfer-Encoding: 7bit Cc: freebsd-emulation@freebsd.org, freebsd-current@freebsd.org, "M. Vale" , Lapo Luchini Subject: Re: [Call For Testing] VirtualBox for FreeBSD! take 4 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, 05 Sep 2009 20:13:27 -0000 Adam Vande More wrote: > I believe portmaster uses a lot environmental variables, and kBuild does > something funky with them. So technically, the issue lies w/ kBuild, not > portmaster. At least that's what I read. Yes, that's correct. Doug From owner-freebsd-emulation@FreeBSD.ORG Sat Sep 5 21:17:30 2009 Return-Path: Delivered-To: emulation@FreeBSD.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:4f8:fff6::34]) by hub.freebsd.org (Postfix) with ESMTP id E0341106566C for ; Sat, 5 Sep 2009 21:17:30 +0000 (UTC) (envelope-from gulanito@gmail.com) Received: from mail-yw0-f180.google.com (mail-yw0-f180.google.com [209.85.211.180]) by mx1.freebsd.org (Postfix) with ESMTP id 9D33C8FC12 for ; Sat, 5 Sep 2009 21:17:30 +0000 (UTC) Received: by ywh10 with SMTP id 10so3691886ywh.7 for ; Sat, 05 Sep 2009 14:17:29 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=gamma; h=domainkey-signature:mime-version:received:date:message-id:subject :from:to:content-type; bh=7HwyLLja2SYWLfwc5PFRvgU50U/S/D28YrsNREHemIA=; b=Hvas+Chltav+tGDBUgk6bq8PaJ38sgyxs3DR0vtePgk3CkOJqw25RcYgWvYUCx5dly 9SW2WR9QgoUpG2PAq/1kISbEU1jJe/6DpaQQaTrrI2CzCV4+j3bf0U+ajdYvo+TiGyiC GVgo/1XnNL7riiI+1bMeudNYYv3AP0JGdq7aY= DomainKey-Signature: a=rsa-sha1; c=nofws; d=gmail.com; s=gamma; h=mime-version:date:message-id:subject:from:to:content-type; b=Scu8kmm5JJRHgGo3K917mJPNwB5VtgQnqDaaftCXpHiOCrBsCcBQOme0r3xARAt8C8 AUC8vcgVLbbkru80A+3jYe3acxrJEtSa45VLD4dJG3XZ11s0zhuHwVyXuqqroHNs7+mh v6gXjVJvIgaBr/7b3ZkGpkc6kmtirN1ieGYLI= MIME-Version: 1.0 Received: by 10.100.192.12 with SMTP id p12mr13901726anf.142.1252184163458; Sat, 05 Sep 2009 13:56:03 -0700 (PDT) Date: Sat, 5 Sep 2009 17:56:03 -0300 Message-ID: From: gula nito To: emulation@FreeBSD.org Content-Type: text/plain; charset=ISO-8859-1 X-Content-Filtered-By: Mailman/MimeDel 2.1.5 Cc: Subject: linux-nero no device detected 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, 05 Sep 2009 21:17:31 -0000 Hi. I install linux-nero from ports today. The program runs well but at the begin it says two warnings: Code: Your /proc directory not seems to be mounted Please check your linux installation And Code: No device detected. Nero Linux was not able to acces any physical device. Please check your system configuration. I have linux proc mounted (linproc /usr/compat/linux/proc linprocfs rw 0 0 in /etc/fstab) And I have linux_enable="YES" in rc.conf. Thanks for help.