Date: Tue, 30 May 1995 13:07:57 +0300 From: Kai Vorma <vode@snakemail.hut.fi> To: freebsd-current@FreeBSD.org Subject: Re: New DOOM^H^H^H^HLINUX emulator available !! Message-ID: <199505301007.NAA22608@vinkku.hut.fi> In-Reply-To: <9505291824.AA02096@login.dknet.dk> References: <9505291824.AA02096@login.dknet.dk>
next in thread | previous in thread | raw e-mail | index | archive | help
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
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?199505301007.NAA22608>