From owner-freebsd-current Tue May 30 03:08:59 1995 Return-Path: current-owner Received: (from majordom@localhost) by freefall.cdrom.com (8.6.10/8.6.6) id DAA21441 for current-outgoing; Tue, 30 May 1995 03:08:59 -0700 Received: from vinkku.hut.fi (vode@vinkku.hut.fi [130.233.245.1]) by freefall.cdrom.com (8.6.10/8.6.6) with ESMTP id DAA21426 for ; Tue, 30 May 1995 03:08:51 -0700 Received: (from vode@localhost) by vinkku.hut.fi (8.6.11/8.6.7) id NAA22608; Tue, 30 May 1995 13:07:57 +0300 Date: Tue, 30 May 1995 13:07:57 +0300 From: Kai Vorma Message-Id: <199505301007.NAA22608@vinkku.hut.fi> To: freebsd-current@FreeBSD.org Subject: Re: New DOOM^H^H^H^HLINUX emulator available !! In-Reply-To: <9505291824.AA02096@login.dknet.dk> References: <9505291824.AA02096@login.dknet.dk> Reply-To: Kai.Vorma@hut.fi Sender: current-owner@FreeBSD.org Precedence: bulk Nice work. Thanks! Now I have a few notes and questions. 1) COMPAT_LINUX breaks BSDI emulation (at least netscape for BSDI failed) This patch helps (I don't know if this is right thing to do, but now I can run FreeBSD binaries, netscape and doom): *** kern/imgact_aout.c.orig Thu Mar 16 23:17:01 1995 --- kern/imgact_aout.c Tue May 30 12:45:43 1995 *************** *** 59,65 **** * only the machine id is different: * 0x64 for Linux, 0x86 for *BSD. */ ! if (((a_out->a_magic >> 16) & 0xff) != 0x86) return -1; #endif /* COMPAT_LINUX */ --- 59,65 ---- * only the machine id is different: * 0x64 for Linux, 0x86 for *BSD. */ ! if (((a_out->a_magic >> 16) & 0xff) == 0x64) return -1; #endif /* COMPAT_LINUX */ 2) Does the emulation support sounds? 3) Does XFree86-3.1.1 support 320x200 mode? How? ..vode