1999-07-28 20:09:52 +00:00
|
|
|
.\" Copyright (c) 1999 Stefan Esser
|
|
|
|
.\"
|
|
|
|
.\" Redistribution and use in source and binary forms, with or without
|
|
|
|
.\" modification, are permitted provided that the following conditions
|
|
|
|
.\" are met:
|
|
|
|
.\" 1. Redistributions of source code must retain the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer.
|
|
|
|
.\" 2. Redistributions in binary form must reproduce the above copyright
|
|
|
|
.\" notice, this list of conditions and the following disclaimer in the
|
|
|
|
.\" documentation and/or other materials provided with the distribution.
|
|
|
|
.\"
|
1999-08-28 01:35:59 +00:00
|
|
|
.\" $FreeBSD$
|
1999-07-28 20:09:52 +00:00
|
|
|
.\"
|
|
|
|
.Dd July 26, 1999
|
|
|
|
.Dt ELF2EXE 8
|
2000-12-14 11:52:05 +00:00
|
|
|
.Os FreeBSD
|
1999-07-28 20:09:52 +00:00
|
|
|
.Sh NAME
|
|
|
|
.Nm elf2exe
|
|
|
|
.Nd convert Alpha ELF executable to AlphaBIOS / ARCS format
|
|
|
|
.Sh SYNOPSIS
|
2000-11-20 20:10:44 +00:00
|
|
|
.Nm
|
1999-07-28 20:09:52 +00:00
|
|
|
.Ar infile
|
|
|
|
.Ar outfile
|
|
|
|
.Sh DESCRIPTION
|
|
|
|
.Nm Elf2exe
|
|
|
|
creates an executable that can be loaded by the AlphaBIOS or ARCS consoles
|
|
|
|
as found on systems designed for
|
|
|
|
.Tn Windows/NT .
|
|
|
|
The input file must have been
|
|
|
|
created as a non-relocatable standalone binary with a load address within
|
|
|
|
the memory range available for user programs (0x80000000 to 0x806fdfff
|
|
|
|
and 0x80900000 to at least 0x80ffffff).
|
|
|
|
.Pp
|
|
|
|
The command prints a list of sections found in the ELF executable and the
|
|
|
|
section sizes and offsets of the output file for diagnostic purposes.
|
|
|
|
.Pp
|
|
|
|
Given an object file
|
2000-12-27 15:30:30 +00:00
|
|
|
.Pa src.o
|
1999-08-02 17:45:21 +00:00
|
|
|
the following two commands will create a binary for ARCS:
|
1999-07-28 20:09:52 +00:00
|
|
|
.Dl ld \-o a.out \-M \-N \-Ttext 0x80900000 src.o\c
|
|
|
|
.Dl elf2exe a.out a.exe\c
|
|
|
|
.Sh BUGS
|
|
|
|
.Nm Elf2exe
|
|
|
|
does not even attempt to verify that the input file matches the requirements
|
|
|
|
for an ARC executable.
|
|
|
|
.Sh HISTORY
|
|
|
|
The
|
|
|
|
.Nm
|
1999-08-02 17:45:21 +00:00
|
|
|
command appeared in
|
|
|
|
.Fx 4.0 .
|