[BACK]Return to mkubootimage.1 CVS log [TXT][DIR] Up to [cvs.NetBSD.org] / src / usr.bin / mkubootimage

Please note that diffs are not public domain; they are subject to the copyright notices on the relevant files.

Diff for /src/usr.bin/mkubootimage/mkubootimage.1 between version 1.1 and 1.8.8.1

version 1.1, 2012/11/29 23:23:22 version 1.8.8.1, 2017/07/25 02:00:33
Line 27 
Line 27 
 .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE  .\" ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
 .\" POSSIBILITY OF SUCH DAMAGE.  .\" POSSIBILITY OF SUCH DAMAGE.
 .\"  .\"
 .Dd November 28, 2012  .Dd July 15, 2017
 .Dt MKUBOOTIMAGE 1  .Dt MKUBOOTIMAGE 1
 .Os  .Os
 .Sh NAME  .Sh NAME
Line 35 
Line 35 
 .Nd create U-Boot loader image  .Nd create U-Boot loader image
 .Sh SYNOPSIS  .Sh SYNOPSIS
 .Nm  .Nm
 .Fl A No ( arm Ns | Ns mips Ns | Ns mips64 Ns | Ns powerpc )  .Op Fl h
   .Fl A No ( arm Ns | Ns arm64 Ns | Ns i386 Ns | Ns mips Ns | Ns mips64 Ns | Ns or1k Ns | Ns powerpc )
 .Fl a Ar address  .Fl a Ar address
 .Op Fl C No Po bz2 Ns | Ns gz Ns | Ns lzma Ns | Ns lzo Ns | Ns none Pc  .Op Fl C Po bz2 Ns | Ns gz Ns | Ns lzma Ns | Ns lzo Ns | Ns none Pc
 .Op Fl E Ar address  .Op Fl E Ar address
 .Op Fl e Ar address  .Op Fl e Ar address
 .Op Fl h  
 .Op Fl m Ar magic  .Op Fl m Ar magic
 .Fl n Ar image  .Fl n Ar image
 .Op Fl O No Po freebsd Ns | Ns linux Ns | Ns netbsd Ns | Ns openbsd Pc  .Op Fl O Po freebsd Ns | Ns linux Ns | Ns netbsd Ns | Ns openbsd Pc
 .Fl T No ( fs Ns | Ns kernel Ns | Ns ramdisk Ns | Ns standalone )  .Fl T No ( fs Ns | Ns kernel Ns | Ns kernel_noload Ns | Ns ramdisk Ns | Ns standalone )
 .Ar source destination  .Ar source destination
 .\"  .\"
 .Sh DESCRIPTION  .Sh DESCRIPTION
Line 55  utility is used to create an image for D
Line 55  utility is used to create an image for D
 .Pp  .Pp
 The arguments are as follows:  The arguments are as follows:
 .Bl -tag -width indent  .Bl -tag -width indent
 .It Fl A No ( arm Ns | Ns mips Ns | Ns mips64 Ns | Ns powerpc )  .It Fl A No ( arm Ns | Ns arm64 Ns | Ns i386 Ns | Ns mips Ns | Ns mips64 Ns | Ns or1k Ns | Ns powerpc )
 Defines the architecture.  Defines the architecture.
 This is required.  This is required.
 .It Fl a Ar address  .It Fl a Ar address
 Sets the image load address.  Sets the image load address.
 This is an integer between 0 and ULONG_MAX.  This is an integer between 0 and
 This is required.  .Dv UINT32_MAX .
 .It Fl C No ( bz2 Ns | Ns gz Ns | Ns lzma Ns | Ns lzo Ns | Ns none Ns )  This is required for all image types except for script, ramdisk, and kernel_noload.
   .It Fl C No ( bz2 Ns | Ns gz Ns | Ns lzma Ns | Ns lzo Ns | Ns none )
 Defines the compression.  Defines the compression.
 The default is  The default is
 .Qq none .  .Qq none .
 .It Fl E Ar address  .It Fl E Ar address
 Define the entry point.  Define the entry point.
 This is an integer between 0 and ULONG_MAX.  This is an integer between 0 and
   .Dv UINT32_MAX .
 This option is the same as  This option is the same as
 .Fl e  .Fl e
 but it inverts the bytes to convert the 32 bit integer  but it inverts the bytes to convert the 32 bit integer
Line 82  image load address
Line 84  image load address
 .Pq Fl a .  .Pq Fl a .
 .It Fl e Ar address  .It Fl e Ar address
 Define the entry point.  Define the entry point.
 This is an integer between 0 and ULONG_MAX.  This is an integer between 0 and
   .Dv UINT32_MAX .
 If  If
 .Fl E  .Fl E
 or  or
Line 94  image load address
Line 97  image load address
 Display the usage and exit.  Display the usage and exit.
 .It Fl m Ar magic  .It Fl m Ar magic
 Set the magic.  Set the magic.
 This is an integer between 0 and ULONG_MAX.  This is an integer between 0 and
   .Dv UINT32_MAX .
 The default is  The default is
 .Qq 0x27051956.  .Qq 0x27051956 .
 .It Fl n Ar image  .It Fl n Ar image
 Defines the image name.  Defines the image name.
 This is required.  This is required.
Line 104  This is required.
Line 108  This is required.
 Defines the operating system type.  Defines the operating system type.
 The default OS name is  The default OS name is
 .Qq netbsd .  .Qq netbsd .
 .It Fl T No ( fs Ns | Ns kernel Ns | Ns ramdisk Ns | Ns standalone )  .It Fl T No ( fs Ns | Ns kernel Ns | Ns kernel_noload Ns | Ns ramdisk Ns | Ns standalone Ns | Ns script )
 Defines the image type.  Defines the image type.
 This is required.  This is required.
 .El  .El
Line 116  The required
Line 120  The required
 .Ar destination  .Ar destination
 argument is the filename of the image file that is created.  argument is the filename of the image file that is created.
 .\"  .\"
 .Sh RETURN VALUES  .Sh EXIT STATUS
 .Nm  .Nm
 returns 1 on failure to read the kernel,  returns 1 on failure to read the kernel,
 generate a header, or create the image.  generate a header, or create the image.
Line 153  command first appeared in
Line 157  command first appeared in
 .Nx 6.0 .  .Nx 6.0 .
 .\"  .\"
 .Sh AUTHORS  .Sh AUTHORS
   .An -nosplit
 The  The
 .Nm  .Nm
 utility was originally written by Jared D. McNeill.  utility was originally written by
 This manual page was written by Jeremy C. Reed.  .An Jared D. McNeill .
   This manual page was written by
   .An Jeremy C. Reed .
 .\" .Sh CAVEATS  .\" .Sh CAVEATS
 .\" .Sh BUGS  .\" .Sh BUGS
 .\" .Sh SECURITY CONSIDERATIONS  .\" .Sh SECURITY CONSIDERATIONS

Legend:
Removed from v.1.1  
changed lines
  Added in v.1.8.8.1

CVSweb <webmaster@jp.NetBSD.org>