Source-Changes-HG archive

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

[src/trunk]: src/distrib/utils/sysinst/arch/acorn32 Let the user choose betwe...



details:   https://anonhg.NetBSD.org/src/rev/f23fcb74bb5b
branches:  trunk
changeset: 522266:f23fcb74bb5b
user:      reinoud <reinoud%NetBSD.org@localhost>
date:      Thu Feb 14 15:25:02 2002 +0000

description:
Let the user choose between the other kernels available than just
`GENERIC'.

diffstat:

 distrib/utils/sysinst/arch/acorn32/md.h        |  19 ++++++++------
 distrib/utils/sysinst/arch/acorn32/menus.md.en |  33 ++++++++++++++-----------
 distrib/utils/sysinst/arch/acorn32/menus.md.fr |  33 ++++++++++++++-----------
 3 files changed, 47 insertions(+), 38 deletions(-)

diffs (175 lines):

diff -r 40ec3d93b9ae -r f23fcb74bb5b distrib/utils/sysinst/arch/acorn32/md.h
--- a/distrib/utils/sysinst/arch/acorn32/md.h   Thu Feb 14 13:42:05 2002 +0000
+++ b/distrib/utils/sysinst/arch/acorn32/md.h   Thu Feb 14 15:25:02 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md.h,v 1.1 2002/01/31 00:33:49 reinoud Exp $   */
+/*     $NetBSD: md.h,v 1.2 2002/02/14 15:25:02 reinoud Exp $   */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -37,7 +37,7 @@
  *
  */
 
-/* md.h -- Machine specific definitions for the arm32 */
+/* md.h -- Machine specific definitions for the Acorn32 */
 
 /* Constants and defines */
 
@@ -50,8 +50,8 @@
  *      base, etc, comp, games, man, misc, text,
  *      xbase, xfont, xserver, xcontrib, xcomp.
  *
- * arm32 has the MD set kern first, because generic kernels are too
- * big to fit on install floppies. arm32 does not yet include xsets
+ * Acorn32 has the MD set kern first, because generic kernels are too
+ * big to fit on install floppies. Acorn32 does not yet include xsets
  *
  * Third entry is the last extension name in the split sets for loading
  * from floppy.
@@ -60,6 +60,9 @@
 #ifdef MAIN
 = {
     {"kern-GENERIC",   1, NULL, "Kernel       : "},
+    {"kern-RPC_WSCONS",        1, NULL, "Kernel       : "},
+    {"kern-NC",                1, NULL, "Kernel       : "},
+    {"kern-NC_WSCONS", 1, NULL, "Kernel       : "},
     {"base",           1, NULL, "Base         : "},
     {"etc",            1, NULL, "System (/etc): "},
     {"comp",           1, NULL, "Compiler     : "},
@@ -82,7 +85,7 @@
 /*
  * Disk names accepted as valid targets for a from-scratch installation.
  *
- * On arm32, we allow "wd" IDE disks and "sd" scsi disks.
+ * On acorn32, we allow "wd" IDE disks and "sd" scsi disks.
  */
 EXTERN char *disk_names[]
 #ifdef MAIN
@@ -95,13 +98,13 @@
  * this must return 1 for a character that matches the first
  * characters of each member of disk_names.
  *
- * On arm32, that means matching 'w' for ide and 's' for sd.
+ * On acorn32, that means matching 'w' for ide and 's' for sd.
  */
 #define ISDISKSTART(dn)        (dn == 'w' || dn == 's')
 
 /*
  * Machine-specific command to write a new label to a disk.
- * For example, arm32 uses "/sbin/disklabel -w -r", just like arm32
+ * For example, acorn32 uses "/sbin/disklabel -w -r", just like acorn32
  * miniroot scripts, though this may leave a bogus incore label.
  * Sun ports should probably use  DISKLABEL_CMD "/sbin/disklabel -w"
  * to get incore to ondisk inode translation for the Sun proms.
@@ -112,7 +115,7 @@
 
 /*
  * Default fileystem type for floppy disks.
- * On arm32, that is  msdos.
+ * On acorn32, that is  msdos.
  */
 EXTERN char *fdtype INIT("msdos");
 
diff -r 40ec3d93b9ae -r f23fcb74bb5b distrib/utils/sysinst/arch/acorn32/menus.md.en
--- a/distrib/utils/sysinst/arch/acorn32/menus.md.en    Thu Feb 14 13:42:05 2002 +0000
+++ b/distrib/utils/sysinst/arch/acorn32/menus.md.en    Thu Feb 14 15:25:02 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: menus.md.en,v 1.1 2002/01/31 00:33:50 reinoud Exp $    */
+/*     $NetBSD: menus.md.en,v 1.2 2002/02/14 15:25:02 reinoud Exp $    */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -37,7 +37,7 @@
  *
  */
 
-/* arm32 machine dependent menus, english */
+/* Acorn32 machine dependent menus, english */
 
 menu editfsparts, y=12, exit;
        display action  {
@@ -58,16 +58,19 @@
 menu md_distcustom, x=26, y=5, exit, title "Selection toggles inclusion";
        display action { show_cur_distsets (); };
        option  "Kernel (GENERIC)",      action { toggle_getit (0); };
-       option  "Base",                  action { toggle_getit (1); };
-       option  "System (/etc)",         action { toggle_getit (2); };
-       option  "Compiler Tools",        action { toggle_getit (3); };
-       option  "Games",                 action { toggle_getit (4); };
-       option  "Online Manual Pages",   action { toggle_getit (5); };
-       option  "Miscellaneous",         action { toggle_getit (6); };
-       option  "Text Processing Tools", action { toggle_getit (7); };
-       option  "X11 base and clients",  action { toggle_getit (8); };
-       option  "X11 fonts",             action { toggle_getit (9); };
-       option  "X11 servers",           action { toggle_getit (10); };
-       option  "X contrib clients",     action { toggle_getit (11); };
-       option  "X11 programming",       action { toggle_getit (12); };
-       option  "X11 Misc.",             action { toggle_getit (13); };
+       option  "Kernel (RPC_WSCONS)",   action { toggle_getit (1); };
+       option  "Kernel (NC)",           action { toggle_getit (2); };
+       option  "Kernel (NC-WSCONS)",    action { toggle_getit (3); };
+       option  "Base",                  action { toggle_getit (4); };
+       option  "System (/etc)",         action { toggle_getit (5); };
+       option  "Compiler Tools",        action { toggle_getit (6); };
+       option  "Games",                 action { toggle_getit (7); };
+       option  "Online Manual Pages",   action { toggle_getit (8); };
+       option  "Miscellaneous",         action { toggle_getit (9); };
+       option  "Text Processing Tools", action { toggle_getit (10); };
+       option  "X11 base and clients",  action { toggle_getit (11); };
+       option  "X11 fonts",             action { toggle_getit (12); };
+       option  "X11 servers",           action { toggle_getit (13); };
+       option  "X contrib clients",     action { toggle_getit (14); };
+       option  "X11 programming",       action { toggle_getit (15); };
+       option  "X11 Misc.",             action { toggle_getit (16); };
diff -r 40ec3d93b9ae -r f23fcb74bb5b distrib/utils/sysinst/arch/acorn32/menus.md.fr
--- a/distrib/utils/sysinst/arch/acorn32/menus.md.fr    Thu Feb 14 13:42:05 2002 +0000
+++ b/distrib/utils/sysinst/arch/acorn32/menus.md.fr    Thu Feb 14 15:25:02 2002 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: menus.md.fr,v 1.1 2002/01/31 00:33:50 reinoud Exp $    */
+/*     $NetBSD: menus.md.fr,v 1.2 2002/02/14 15:25:02 reinoud Exp $    */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -37,7 +37,7 @@
  *
  */
 
-/* arm32 machine dependent menus, french */
+/* Acorn32 machine dependent menus, french */
 
 menu editfsparts, y=12, exit;
        display action  {
@@ -58,16 +58,19 @@
 menu md_distcustom, x=26, y=5, exit, title "Sélection des composants";
        display action { show_cur_distsets (); };
        option  "Kernel (GENERIC)",      action { toggle_getit (0); };
-       option  "Base",                  action { toggle_getit (1); };
-       option  "System (/etc)",         action { toggle_getit (2); };
-       option  "Outils de développement",       action { toggle_getit (3); };
-       option  "Jeux",                  action { toggle_getit (4); };
-       option  "Pages de manuel",       action { toggle_getit (5); };
-       option  "Divers",        action { toggle_getit (6); };
-       option  "Outils de manipulation de textes", action { toggle_getit (7); };
-       option  "X11 base et clients",   action { toggle_getit (8); };
-       option  "X11 polices",           action { toggle_getit (9); };
-       option  "X11 serveurs",          action { toggle_getit (10); };
-       option  "X11 clients contribués", action { toggle_getit (11); };
-       option  "X11 développement",     action { toggle_getit (12); };
-       option  "X11 Misc.",             action { toggle_getit (13); };
+       option  "Kernel (RPC_WSCONS)",   action { toggle_getit (1); };
+       option  "Kernel (NC)",           action { toggle_getit (2); };
+       option  "Kernel (NC-WSCONS)",    action { toggle_getit (3); };
+       option  "Base",                  action { toggle_getit (4); };
+       option  "System (/etc)",         action { toggle_getit (5); };
+       option  "Outils de développement",       action { toggle_getit (6); };
+       option  "Jeux",                  action { toggle_getit (7); };
+       option  "Pages de manuel",       action { toggle_getit (8); };
+       option  "Divers",                action { toggle_getit (9); };
+       option  "Outils de manipulation de textes", action { toggle_getit (10); };
+       option  "X11 base et clients",   action { toggle_getit (11); };
+       option  "X11 polices",           action { toggle_getit (12); };
+       option  "X11 serveurs",          action { toggle_getit (13); };
+       option  "X11 clients contribués", action { toggle_getit (14); };
+       option  "X11 développement",     action { toggle_getit (15); };
+       option  "X11 Misc.",             action { toggle_getit (16); };



Home | Main Index | Thread Index | Old Index