Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/distrib/notes Pass the set suffix (either .tgz or .tar.xz) f...



details:   https://anonhg.NetBSD.org/src/rev/4c5e0b836582
branches:  trunk
changeset: 846534:4c5e0b836582
user:      martin <martin%NetBSD.org@localhost>
date:      Thu Nov 21 19:23:16 2019 +0000

description:
Pass the set suffix (either .tgz or .tar.xz) from the makefile.
Document the rescue set.

diffstat:

 distrib/notes/Makefile.inc         |   7 ++++-
 distrib/notes/acorn32/contents     |  11 ++++++--
 distrib/notes/alpha/contents       |  11 ++++++--
 distrib/notes/amd64/contents       |  11 ++++++--
 distrib/notes/amiga/contents       |  11 ++++++--
 distrib/notes/amiga/install        |   6 ++--
 distrib/notes/arc/contents         |  11 ++++++--
 distrib/notes/atari/contents       |  11 ++++++--
 distrib/notes/atari/xfer           |   4 +-
 distrib/notes/bebox/contents       |  11 ++++++--
 distrib/notes/cats/contents        |  11 ++++++--
 distrib/notes/common/contents      |  19 +++++++++-----
 distrib/notes/common/legal.common  |   4 +-
 distrib/notes/common/main          |  48 +++++++++++++++++++-------------------
 distrib/notes/common/netboot       |  28 +++++++++++-----------
 distrib/notes/common/postinstall   |   8 +++---
 distrib/notes/common/sysinst       |  12 ++++----
 distrib/notes/common/xfer          |   8 +++---
 distrib/notes/emips/contents       |  11 ++++++--
 distrib/notes/emips/install        |   4 +-
 distrib/notes/evbarm/contents      |  11 ++++++--
 distrib/notes/evbarm/install       |  10 +++---
 distrib/notes/evbppc/contents      |  11 ++++++--
 distrib/notes/ews4800mips/contents |  11 ++++++--
 distrib/notes/hp300/contents       |  11 ++++++--
 distrib/notes/hp300/upgrade        |  10 +++---
 distrib/notes/hpcarm/contents      |  11 ++++++--
 distrib/notes/hpcmips/contents     |  11 ++++++--
 distrib/notes/hpcsh/contents       |  11 ++++++--
 distrib/notes/hppa/contents        |  11 ++++++--
 distrib/notes/i386/contents        |  11 ++++++--
 distrib/notes/landisk/contents     |  11 ++++++--
 distrib/notes/mac68k/contents      |  11 ++++++--
 distrib/notes/mac68k/install       |   4 +-
 distrib/notes/mac68k/prep          |   8 +++---
 distrib/notes/mac68k/xfer          |   4 +-
 distrib/notes/macppc/contents      |  11 ++++++--
 distrib/notes/macppc/install       |   4 +-
 distrib/notes/mmeye/contents       |  11 ++++++--
 distrib/notes/mvme68k/contents     |  11 ++++++--
 distrib/notes/mvme68k/xfer         |   4 +-
 distrib/notes/news68k/contents     |  11 ++++++--
 distrib/notes/newsmips/contents    |  11 ++++++--
 distrib/notes/next68k/contents     |  11 ++++++--
 distrib/notes/ofppc/contents       |  11 ++++++--
 distrib/notes/pmax/contents        |  11 ++++++--
 distrib/notes/pmax/install         |   4 +-
 distrib/notes/prep/contents        |  11 ++++++--
 distrib/notes/rs6000/contents      |  11 ++++++--
 distrib/notes/sandpoint/contents   |  11 ++++++--
 distrib/notes/sgimips/contents     |  17 ++++++++----
 distrib/notes/sgimips/install      |   6 ++--
 distrib/notes/shark/contents       |  11 ++++++--
 distrib/notes/shark/install        |   6 ++--
 distrib/notes/sparc/contents       |  11 ++++++--
 distrib/notes/sparc/install        |   6 ++--
 distrib/notes/sparc64/contents     |  13 +++++++---
 distrib/notes/sun2/contents        |  11 ++++++--
 distrib/notes/sun3/contents        |  11 ++++++--
 distrib/notes/sun3/upgrade         |   4 +-
 distrib/notes/vax/contents         |  11 ++++++--
 distrib/notes/vax/xfer             |   6 ++--
 distrib/notes/x68k/contents        |  11 ++++++--
 63 files changed, 433 insertions(+), 228 deletions(-)

diffs (truncated from 2137 to 300 lines):

diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/Makefile.inc
--- a/distrib/notes/Makefile.inc        Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/Makefile.inc        Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile.inc,v 1.43 2015/05/20 05:19:19 snj Exp $
+#      $NetBSD: Makefile.inc,v 1.44 2019/11/21 19:23:16 martin Exp $
 #
 
 # Ross Harvey <ross%NetBSD.org@localhost>
@@ -27,6 +27,11 @@
 whatis: .OPTIONAL
 
 PRESET=        ${GFLAGS} -U -dM=${M} -dV=${DISTRIBVER} -d.CURDIR=${.CURDIR} -r${M}=1
+.if ${USE_XZ_SETS}
+PRESET+=       -dsetsuffix=tar.xz
+.else
+PRESET+=       -dsetsuffix=tgz
+.endif
 
 POST_PLAIN= -P-b -P-u -P-o
 
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/acorn32/contents
--- a/distrib/notes/acorn32/contents    Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/acorn32/contents    Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: contents,v 1.4 2018/06/24 09:38:45 leot Exp $
+.\"    $NetBSD: contents,v 1.5 2019/11/21 19:23:16 martin Exp $
 .\"
 .\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -192,6 +192,11 @@
 .It Sy modules
 This set includes kernel modules to add functionality to a running system.
 .
+.It Sy rescue
+This set includes the statically linked emergency recover binaries installed
+in
+.Pa /rescue .
+.
 .It Sy text
 This set includes
 .Nx Ns 's
@@ -252,9 +257,9 @@
 .Pp
 The \*M binary distribution sets are distributed as gzipped tar files
 named with the extension
-.Sy .tgz ,
+.Sy .\*[setsuffix] ,
 e.g.
-.Pa base.tgz .
+.Pa base.\*[setsuffix] .
 .
 .
 .Pp
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/alpha/contents
--- a/distrib/notes/alpha/contents      Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/alpha/contents      Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: contents,v 1.18 2018/06/24 09:38:45 leot Exp $
+.\"    $NetBSD: contents,v 1.19 2019/11/21 19:23:16 martin Exp $
 .\"
 .\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -248,6 +248,11 @@
 .It Sy modules
 This set includes kernel modules to add functionality to a running system.
 .
+.It Sy rescue
+This set includes the statically linked emergency recover binaries installed
+in
+.Pa /rescue .
+.
 .It Sy text
 This set includes
 .Nx Ns 's
@@ -307,9 +312,9 @@
 .Pp
 The \*M binary distribution sets are distributed as gzipped tar files
 named with the extension
-.Sy .tgz ,
+.Sy .\*[setsuffix] ,
 e.g.
-.Pa base.tgz .
+.Pa base.\*[setsuffix] .
 .
 .
 .Pp
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/amd64/contents
--- a/distrib/notes/amd64/contents      Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/amd64/contents      Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: contents,v 1.7 2018/06/24 09:38:45 leot Exp $
+.\"    $NetBSD: contents,v 1.8 2019/11/21 19:23:17 martin Exp $
 .\"
 .\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -185,6 +185,11 @@
 .It Sy modules
 This set includes kernel modules to add functionality to a running system.
 .
+.It Sy rescue
+This set includes the statically linked emergency recover binaries installed
+in
+.Pa /rescue .
+.
 .It Sy text
 This set includes
 .Nx Ns 's
@@ -243,8 +248,8 @@
 .Pp
 The \*M binary distribution sets are distributed as gzipped tar files
 named with the extension
-.Sy .tgz
-.Pq e.g., Pa base.tgz .
+.Sy .\*[setsuffix]
+.Pq e.g., Pa base.\*[setsuffix] .
 .
 .
 .Pp
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/amiga/contents
--- a/distrib/notes/amiga/contents      Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/amiga/contents      Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: contents,v 1.22 2018/06/24 09:38:46 leot Exp $
+.\"    $NetBSD: contents,v 1.23 2019/11/21 19:23:17 martin Exp $
 .\"
 .\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -212,6 +212,11 @@
 .It Sy modules
 This set includes kernel modules to add functionality to a running system.
 .
+.It Sy rescue
+This set includes the statically linked emergency recover binaries installed
+in
+.Pa /rescue .
+.
 .It Sy text
 This set includes
 .Nx Ns 's
@@ -267,9 +272,9 @@
 .Pp
 The \*M binary distribution sets are distributed as gzipped tar files
 named with the extension
-.Sy .tgz ,
+.Sy .\*[setsuffix] ,
 e.g.
-.Pa base.tgz .
+.Pa base.\*[setsuffix] .
 .
 .
 .Pp
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/amiga/install
--- a/distrib/notes/amiga/install       Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/amiga/install       Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: install,v 1.36 2017/08/15 12:15:10 mlelstv Exp $
+.\"    $NetBSD: install,v 1.37 2019/11/21 19:23:17 martin Exp $
 .\"
 .\" Copyright (c) 1999-2002 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -284,10 +284,10 @@
 If the installed system already has a kernel, it will ask you for
 confirmation.
 .Pp If you are doing an upgrade and you did not install the
-kern.tgz distribution set, this is an old kernel, and you should answer
+kern.\*[setsuffix] distribution set, this is an old kernel, and you should answer
 "y" to install a working (although restricted) INSTALL kernel.
 .Pp
-If you did install the kern.tgz kernel, you normally should answer "n".
+If you did install the kern.\*[setsuffix] kernel, you normally should answer "n".
 .Pp
 Finally, the installer asks you if you want to install the bootblock
 code on your root disk and, if yes, what boot command it should execute.
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/arc/contents
--- a/distrib/notes/arc/contents        Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/arc/contents        Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: contents,v 1.4 2018/06/24 09:38:46 leot Exp $
+.\"    $NetBSD: contents,v 1.5 2019/11/21 19:23:17 martin Exp $
 .\"
 .\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -184,6 +184,11 @@
 .It Sy modules
 This set includes kernel modules to add functionality to a running system.
 .
+.It Sy rescue
+This set includes the statically linked emergency recover binaries installed
+in
+.Pa /rescue .
+.
 .It Sy text
 This set includes
 .Nx Ns 's
@@ -243,9 +248,9 @@
 .Pp
 The \*M binary distribution sets are distributed as gzipped tar files
 named with the extension
-.Sy .tgz ,
+.Sy .\*[setsuffix] ,
 e.g.
-.Pa base.tgz .
+.Pa base.\*[setsuffix] .
 .
 .
 .Pp
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/atari/contents
--- a/distrib/notes/atari/contents      Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/atari/contents      Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: contents,v 1.22 2018/06/24 09:38:46 leot Exp $
+.\"    $NetBSD: contents,v 1.23 2019/11/21 19:23:17 martin Exp $
 .\"
 .\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -217,6 +217,11 @@
 .It Sy modules
 This set includes kernel modules to add functionality to a running system.
 .
+.It Sy rescue
+This set includes the statically linked emergency recover binaries installed
+in
+.Pa /rescue .
+.
 .It Sy text
 This set includes
 .Nx Ns 's
@@ -276,9 +281,9 @@
 .Pp
 The \*M binary distribution sets are distributed as gzipped tar files
 named with the extension
-.Sy .tgz ,
+.Sy .\*[setsuffix] ,
 e.g.
-.Pa base.tgz .
+.Pa base.\*[setsuffix] .
 .
 .
 .Pp
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/atari/xfer
--- a/distrib/notes/atari/xfer  Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/atari/xfer  Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: xfer,v 1.17 2019/10/02 11:16:00 maya Exp $
+.\"    $NetBSD: xfer,v 1.18 2019/11/21 19:23:17 martin Exp $
 .
 Installation is supported from several media types, including:
 .Pp
@@ -93,7 +93,7 @@
 .Dl # Ic "T=\*[Lt]tape_device\*[Gt]"
 .Dl # Ic "mt -f $T rewind"
 .Dl # Ic "for f in base etc comp games man misc rescue text"
-.Dl   Ic "\ \ \ \ dd if=$f.tgz of=$T conv=osync bs=5k"
+.Dl   Ic "\ \ \ \ dd if=$f.\*[setsuffix] of=$T conv=osync bs=5k"
 .Dl # Ic "done"
 .Dl # Ic "mt -f $T rewind"
 .Pp
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/bebox/contents
--- a/distrib/notes/bebox/contents      Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/bebox/contents      Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: contents,v 1.4 2018/06/24 09:38:46 leot Exp $
+.\"    $NetBSD: contents,v 1.5 2019/11/21 19:23:17 martin Exp $
 .\"
 .\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
 .\" All rights reserved.
@@ -192,6 +192,11 @@
 .It Sy modules
 This set includes kernel modules to add functionality to a running system.
 .
+.It Sy rescue
+This set includes the statically linked emergency recover binaries installed
+in
+.Pa /rescue .
+.
 .It Sy text
 This set includes
 .Nx Ns 's
@@ -252,9 +257,9 @@
 .Pp
 The \*M binary distribution sets are distributed as gzipped tar files
 named with the extension
-.Sy .tgz ,
+.Sy .\*[setsuffix] ,
 e.g.
-.Pa base.tgz .
+.Pa base.\*[setsuffix] .
 .
 .
 .Pp
diff -r 57d56feb3238 -r 4c5e0b836582 distrib/notes/cats/contents
--- a/distrib/notes/cats/contents       Thu Nov 21 19:02:43 2019 +0000
+++ b/distrib/notes/cats/contents       Thu Nov 21 19:23:16 2019 +0000
@@ -1,4 +1,4 @@
-.\"    $NetBSD: contents,v 1.4 2018/06/24 09:38:46 leot Exp $
+.\"    $NetBSD: contents,v 1.5 2019/11/21 19:23:17 martin Exp $
 .\"
 .\" Copyright (c) 1999-2005 The NetBSD Foundation, Inc.
 .\" All rights reserved.



Home | Main Index | Thread Index | Old Index