Add amd64 to the list of ports that support linux emulation.
Note that the emulation root is linux32 when running i386 linux programs on an amd64 system. Note that paths that start /../ are only looked up in the real root. Modify the bug/note about symlinks not being looked up in the emulation root. Some of this stuff ought to be in a generic 'emulation' man page.
This commit is contained in:
parent
fe47977a5f
commit
bfe36c5b04
|
@ -1,4 +1,4 @@
|
||||||
.\" $NetBSD: compat_linux.8,v 1.33 2006/09/22 15:37:20 christos Exp $
|
.\" $NetBSD: compat_linux.8,v 1.34 2007/04/30 21:16:55 dsl Exp $
|
||||||
.\"
|
.\"
|
||||||
.\" Copyright (c) 1995 Frank van der Linden
|
.\" Copyright (c) 1995 Frank van der Linden
|
||||||
.\" All rights reserved.
|
.\" All rights reserved.
|
||||||
|
@ -29,7 +29,7 @@
|
||||||
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
.\" (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
|
||||||
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
.\" THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
.\"
|
.\"
|
||||||
.Dd September 22, 2006
|
.Dd April 30, 2007
|
||||||
.Dt COMPAT_LINUX 8
|
.Dt COMPAT_LINUX 8
|
||||||
.Os
|
.Os
|
||||||
.Sh NAME
|
.Sh NAME
|
||||||
|
@ -38,10 +38,11 @@
|
||||||
.Sh DESCRIPTION
|
.Sh DESCRIPTION
|
||||||
.Nx
|
.Nx
|
||||||
supports running Linux binaries.
|
supports running Linux binaries.
|
||||||
This applies to arm, alpha, i386, m68k and powerpc systems for now.
|
This applies to amd64, arm, alpha, i386, m68k and powerpc systems for now.
|
||||||
Both the a.out and ELF binary formats are supported.
|
Both the a.out and ELF binary formats are supported.
|
||||||
Most programs should work, including the ones that use the Linux SVGAlib (only
|
Most programs should work, including the ones that use the Linux SVGAlib (only
|
||||||
on i386).
|
on i386).
|
||||||
|
NetBSD amd64 can execute both 32bit and 64bit linux programs.
|
||||||
Programs that will not work include some that use
|
Programs that will not work include some that use
|
||||||
i386-specific calls, such as enabling virtual 8086 mode.
|
i386-specific calls, such as enabling virtual 8086 mode.
|
||||||
Currently, sound is only partially supported for Linux binaries (they will
|
Currently, sound is only partially supported for Linux binaries (they will
|
||||||
|
@ -72,7 +73,10 @@ directory for Linux binaries on your
|
||||||
.Nx
|
.Nx
|
||||||
system.
|
system.
|
||||||
This directory is named
|
This directory is named
|
||||||
.Pa /emul/linux .
|
.Pa /emul/linux
|
||||||
|
or
|
||||||
|
.Pa /emul/linux32
|
||||||
|
for 32bit emulation on 64bit systems.
|
||||||
Any file operations done by Linux programs run under
|
Any file operations done by Linux programs run under
|
||||||
.Nx
|
.Nx
|
||||||
will look in this directory first.
|
will look in this directory first.
|
||||||
|
@ -93,6 +97,7 @@ to avoid naming conflicts with possible
|
||||||
.Nx
|
.Nx
|
||||||
counterparts.
|
counterparts.
|
||||||
Shared libraries should also be installed in the shadow tree.
|
Shared libraries should also be installed in the shadow tree.
|
||||||
|
Filenames that start "/../" are only looked up in the real root.
|
||||||
.Pp
|
.Pp
|
||||||
Generally, you will need to look for the shared libraries that Linux
|
Generally, you will need to look for the shared libraries that Linux
|
||||||
binaries depend on only the first few times that you install a Linux
|
binaries depend on only the first few times that you install a Linux
|
||||||
|
@ -112,7 +117,7 @@ do the necessary installation steps).
|
||||||
.Bl -enum
|
.Bl -enum
|
||||||
.It
|
.It
|
||||||
For i386, you can simply install the SuSE shared libs using the
|
For i386, you can simply install the SuSE shared libs using the
|
||||||
.Pa pkgsrc/emulators/suse_linux
|
.Pa pkgsrc/emulators/suse100_linux
|
||||||
package(s).
|
package(s).
|
||||||
On PowerPC ports, the
|
On PowerPC ports, the
|
||||||
.Pa pkgsrc/emulators/linuxppc_lib
|
.Pa pkgsrc/emulators/linuxppc_lib
|
||||||
|
@ -540,8 +545,9 @@ some point.
|
||||||
.Sh BUGS
|
.Sh BUGS
|
||||||
The information about Linux distributions may become outdated.
|
The information about Linux distributions may become outdated.
|
||||||
.Pp
|
.Pp
|
||||||
Pathnames pointed to by symbolic links are not looked up in the
|
Absolute pathnames pointed to by symbolic links are only looked up in the
|
||||||
shadow root when running a Linux executable.
|
shadow root when the symbolic link itself was found by an absolute
|
||||||
|
pathname inside the shadow root.
|
||||||
This is not consistent.
|
This is not consistent.
|
||||||
.Pp
|
.Pp
|
||||||
Linux executables cannot handle directory offset cookies \*[Gt] 32 bits.
|
Linux executables cannot handle directory offset cookies \*[Gt] 32 bits.
|
||||||
|
|
Loading…
Reference in New Issue