1.\" Copyright (c) 1997 2.\" John-Mark Gurney. All rights reserved. 3.\" 4.\" Redistribution and use in source and binary forms, with or without 5.\" modification, are permitted provided that the following conditions 6.\" are met: 7.\" 1. Redistributions of source code must retain the above copyright 8.\" notice, this list of conditions and the following disclaimer. 9.\" 2. Redistributions in binary form must reproduce the above copyright 10.\" notice, this list of conditions and the following disclaimer in the 11.\" documentation and/or other materials provided with the distribution. 12.\" 3. Neither the name of the author nor the names of any co-contributors 13.\" may be used to endorse or promote products derived from this software 14.\" without specific prior written permission. 15.\" 16.\" THIS SOFTWARE IS PROVIDED BY John-Mark Gurney AND CONTRIBUTORS ``AS IS'' 17.\" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 18.\" IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 19.\" ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 20.\" FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 21.\" DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 22.\" OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 23.\" HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 24.\" LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 25.\" OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 26.\" SUCH DAMAGE. 27.\" 28.\" 29.Dd February 6, 1997 30.Dt BRANDELF 1 31.Os FreeBSD 32.Sh NAME 33.Nm brandelf 34.Nd mark an ELF binary for a specific ABI 35.Sh SYNOPSIS 36.Nm brandelf 37.Op Fl v 38.Op Fl t Ar string 39.Ar file ... 40.Sh DESCRIPTION 41This command marks an ELF binary to be run under a certain ABI for FreeBSD. 42.Pp 43The options are as follows: 44.Bl -tag -width Fl 45.It Fl v 46turns on verbose reporting 47.It Fl t Ar string 48Brands the given ELF binaries with 49.Ar string 50as the ABI type. Currently supported ABI's are 51.Dq FreeBSD 52and 53.Dq Linux . 54.It Ar file 55If 56.Fl t Ar string 57is given it will brand 58.Ar file 59with 60.Ar string , 61otherwise it will simply display the branding of 62.Ar file . 63.El 64.Sh EXAMPLES 65The following is an example of a typical usage 66of the 67.Nm 68command: 69.Pp 70.Dl % brandelf file 71.Dl % brandelf -t Linux file 72.Sh DIAGNOSTICS 73Exit status is 0 on success, and 1 if the command 74fails if a file doesn't exist, is too short, or fails to brand properly. 75.Sh HISTORY 76The 77.Nm 78manual page first appeared in 79.Fx 3.0 . 80.Sh AUTHOR 81This 82manual page was written by John-Mark Gurney 83.Aq gurney_j@efn.org . 84