? patch Index: config.8 =================================================================== RCS file: /home/ncvs/src/usr.sbin/config/config.8,v retrieving revision 1.45 diff -u -r1.45 config.8 --- config.8 21 Oct 2006 20:09:51 -0000 1.45 +++ config.8 8 May 2007 20:38:20 -0000 @@ -36,7 +36,7 @@ .Nd build system configuration files .Sh SYNOPSIS .Nm -.Op Fl Vgp +.Op Fl gpV .Op Fl d Ar destdir .Ar SYSTEM_NAME .Sh DESCRIPTION @@ -72,6 +72,18 @@ .Pp Available options and operands: .Bl -tag -width ".Ar SYSTEM_NAME" +.It Fl g +Configure a system for debugging. +.It Fl p +Configure a system for profiling; for example, +.Xr kgmon 8 +and +.Xr gprof 1 . +If two or more +.Fl p +options are supplied, +.Nm +configures a system for high resolution profiling. .It Fl V Print the .Nm @@ -85,18 +97,6 @@ does not append .Ar SYSTEM_NAME to the directory given. -.It Fl g -Configure a system for debugging. -.It Fl p -Configure a system for profiling; for example, -.Xr kgmon 8 -and -.Xr gprof 1 . -If two or more -.Fl p -options are supplied, -.Nm -configures a system for high resolution profiling. .It Ar SYSTEM_NAME Specify the name of the system configuration file containing device specifications, configuration options Index: main.c =================================================================== RCS file: /home/ncvs/src/usr.sbin/config/main.c,v retrieving revision 1.73 diff -u -r1.73 main.c --- main.c 24 Oct 2006 00:31:59 -0000 1.73 +++ main.c 8 May 2007 20:38:20 -0000 @@ -235,7 +235,7 @@ usage(void) { - fprintf(stderr, "usage: config [-Vgp] [-d destdir] sysname\n"); + fprintf(stderr, "usage: config [-gpV] [-d destdir] sysname\n"); exit(1); }