summaryrefslogtreecommitdiff
path: root/usr/src/tools/scripts
diff options
context:
space:
mode:
Diffstat (limited to 'usr/src/tools/scripts')
-rw-r--r--usr/src/tools/scripts/its.reg4
-rw-r--r--usr/src/tools/scripts/onu.1onbld10
-rw-r--r--usr/src/tools/scripts/validate_pkg.py10
-rw-r--r--usr/src/tools/scripts/webrev.sh2
-rw-r--r--usr/src/tools/scripts/xref.sh4
5 files changed, 15 insertions, 15 deletions
diff --git a/usr/src/tools/scripts/its.reg b/usr/src/tools/scripts/its.reg
index 1f40e67fe6..cf03804cf2 100644
--- a/usr/src/tools/scripts/its.reg
+++ b/usr/src/tools/scripts/its.reg
@@ -65,7 +65,7 @@
#
# REGEX (required)
#
-# A regexp(5) to tokenize a valid, unique key. See NOTES below.
+# A regexp(7) to tokenize a valid, unique key. See NOTES below.
#
# CONTACT
#
@@ -78,7 +78,7 @@
# NOTES
#
# REGEX should use parenthesization via \(\) to provide one or more
-# tokens to be substituted in *_URLs. See regexp(5) for syntax.
+# tokens to be substituted in *_URLs. See regexp(7) for syntax.
#
# A REGEX for a particular system is required to match any unique keys
# that are valid for that system. For the common case, where such a key
diff --git a/usr/src/tools/scripts/onu.1onbld b/usr/src/tools/scripts/onu.1onbld
index 385d5bd6bd..d6fa09ac28 100644
--- a/usr/src/tools/scripts/onu.1onbld
+++ b/usr/src/tools/scripts/onu.1onbld
@@ -34,7 +34,7 @@
is a replacement for
.I bfu
used to update a system with the latest set of IPS packages for the ON
-(OS/Net) consolidation of Solaris, using beadm(1M) to create a new Boot
+(OS/Net) consolidation of Solaris, using beadm(8) to create a new Boot
Environment (BE) and pkg(1) to update the image.
.SH OPTIONS
.LP
@@ -103,7 +103,7 @@ differently from bfu. First, as noted above, onu creates a new BE, rather
than updating an existing BE in-place. Second, onu will not install packages
that are older than what is already installed in the source BE. Third,
conflicts in system configuration files are automatically resolved according
-to the files' "preserve" attribute, as described in pkg(5).
+to the files' "preserve" attribute, as described in pkg(7).
.LP
If the
.B -d
@@ -162,6 +162,6 @@ If the -U option is not provided, and this variable is set, it will be
used as the publisher name for the packaging repository. If -U is not
provided and this variable is not set, on-nightly will be used.
.SH SEE ALSO
-.BR beadm "(1M), "
-.BR pkg "(1), "
-.BR pkg "(5) "
+.BR beadm (8),
+.BR pkg (1),
+.BR pkg (7)
diff --git a/usr/src/tools/scripts/validate_pkg.py b/usr/src/tools/scripts/validate_pkg.py
index b2d9bfca80..18a2c0cc77 100644
--- a/usr/src/tools/scripts/validate_pkg.py
+++ b/usr/src/tools/scripts/validate_pkg.py
@@ -577,7 +577,7 @@ class ManifestTree(DirectoryTree):
"""
def addmanifest(self, root, mfile, arch, modechecks, exceptions):
- """Treats the specified input file as a pkg(5) package
+ """Treats the specified input file as a pkg(7) package
manifest, and extends the ManifestTree dictionary with entries
for the actions therein.
"""
@@ -607,9 +607,9 @@ class ManifestTree(DirectoryTree):
#
# The dir action is currently fully specified, in that it
# lists owner, group, and mode attributes. If that
- # changes in pkg(5) code, we'll need to revisit either this
+ # changes in pkg(7) code, we'll need to revisit either this
# code or the ActionInfo() constructor. It's possible
- # that the pkg(5) system could be extended to provide a
+ # that the pkg(7) system could be extended to provide a
# mechanism for specifying directory permissions outside
# of the individual manifests that deliver files into
# those directories. Doing so at time of manifest
@@ -644,7 +644,7 @@ class ManifestTree(DirectoryTree):
var = None
#
- # The name of this method changed in pkg(5) build 150, we need to
+ # The name of this method changed in pkg(7) build 150, we need to
# work with both sets.
#
if hasattr(action, 'get_variants'):
@@ -665,7 +665,7 @@ class ManifestTree(DirectoryTree):
print("")
def adddir(self, mdir, arch, modechecks, exceptions):
- """Walks the specified directory looking for pkg(5) manifests.
+ """Walks the specified directory looking for pkg(7) manifests.
"""
for mfile in os.listdir(mdir):
if (mfile.endswith(".mog") and
diff --git a/usr/src/tools/scripts/webrev.sh b/usr/src/tools/scripts/webrev.sh
index 2229e39be0..66fd2ab854 100644
--- a/usr/src/tools/scripts/webrev.sh
+++ b/usr/src/tools/scripts/webrev.sh
@@ -3293,7 +3293,7 @@ print "<table>"
# syntax characters) in the email address.
#
# Otherwise, use the current userid in the form "John Doe (jdoe)", but
-# to maintain compatibility with passwd(4), we must support '&' substitutions.
+# to maintain compatibility with passwd(5), we must support '&' substitutions.
#
preparer=
if [[ "$SCM_MODE" == git ]]; then
diff --git a/usr/src/tools/scripts/xref.sh b/usr/src/tools/scripts/xref.sh
index d69a364fda..d765cbe988 100644
--- a/usr/src/tools/scripts/xref.sh
+++ b/usr/src/tools/scripts/xref.sh
@@ -147,7 +147,7 @@ dirs=$@
#
# Get the canonical path to the workspace. This allows xref to work
-# even in the presence of lofs(7FS).
+# even in the presence of lofs(4FS).
#
cd $CODEMGR_WS
CODEMGR_WS=`/bin/pwd`
@@ -202,7 +202,7 @@ for dir in $dirs; do
#
# NOTE: we cannot use $PWD because it will mislead in the presence
- # of lofs(7FS).
+ # of lofs(4FS).
#
cd $dir || fail "cannot change to directory $dir"
pwd=`/bin/pwd`