Add compat22 distribution in anticipation of its appearance.

This commit is contained in:
Jordan K. Hubbard 1999-02-04 03:30:34 +00:00
parent ea95d6917a
commit bfaa302e64
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=43577
7 changed files with 25 additions and 17 deletions

View file

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: dist.c,v 1.131 1998/11/27 00:30:10 jkh Exp $
* $Id: dist.c,v 1.132 1999/01/06 13:55:09 peter Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -76,6 +76,7 @@ static Distribution DistTable[] = {
{ "compat1x", "/", &Dists, DIST_COMPAT1X, NULL },
{ "compat20", "/", &Dists, DIST_COMPAT20, NULL },
{ "compat21", "/", &Dists, DIST_COMPAT21, NULL },
{ "compat22", "/", &Dists, DIST_COMPAT22, NULL },
{ "ports", "/usr", &Dists, DIST_PORTS, NULL },
{ "XF86333", "/usr", &Dists, DIST_XF86, XF86DistTable },
{ NULL },

View file

@ -13,12 +13,12 @@
#define DIST_COMPAT1X 0x0100
#define DIST_COMPAT20 0x0200
#define DIST_COMPAT21 0x0400
#define DIST_XF86 0x0800
#define DIST_DES 0x1000
#define DIST_CATPAGES 0x2000
#define DIST_PORTS 0x4000
#define DIST_USR1 0x8000
#define DIST_ALL 0x7FFF
#define DIST_COMPAT22 0x0800
#define DIST_XF86 0x1000
#define DIST_DES 0x2000
#define DIST_CATPAGES 0x4000
#define DIST_PORTS 0x8000
#define DIST_ALL 0xFFFF
/* Canned distribution sets */
#define _DIST_DEVELOPER \

View file

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: menus.c,v 1.179 1999/01/06 13:55:12 peter Exp $
* $Id: menus.c,v 1.180 1999/01/08 00:14:22 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -743,6 +743,8 @@ DMenu MenuSubDistributions = {
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT20 },
{ "compat21", "FreeBSD 2.1 binary compatibility",
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT21 },
{ "compat22", "FreeBSD 2.2.x and 3.0 a.out binary compatibility",
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT22 },
{ "DES", "DES encryption code - NOT FOR EXPORT!",
DESFlagCheck, distSetDES },
{ "dict", "Spelling checker dictionary files",

View file

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: menus.c,v 1.179 1999/01/06 13:55:12 peter Exp $
* $Id: menus.c,v 1.180 1999/01/08 00:14:22 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -743,6 +743,8 @@ DMenu MenuSubDistributions = {
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT20 },
{ "compat21", "FreeBSD 2.1 binary compatibility",
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT21 },
{ "compat22", "FreeBSD 2.2.x and 3.0 a.out binary compatibility",
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT22 },
{ "DES", "DES encryption code - NOT FOR EXPORT!",
DESFlagCheck, distSetDES },
{ "dict", "Spelling checker dictionary files",

View file

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: dist.c,v 1.131 1998/11/27 00:30:10 jkh Exp $
* $Id: dist.c,v 1.132 1999/01/06 13:55:09 peter Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -76,6 +76,7 @@ static Distribution DistTable[] = {
{ "compat1x", "/", &Dists, DIST_COMPAT1X, NULL },
{ "compat20", "/", &Dists, DIST_COMPAT20, NULL },
{ "compat21", "/", &Dists, DIST_COMPAT21, NULL },
{ "compat22", "/", &Dists, DIST_COMPAT22, NULL },
{ "ports", "/usr", &Dists, DIST_PORTS, NULL },
{ "XF86333", "/usr", &Dists, DIST_XF86, XF86DistTable },
{ NULL },

View file

@ -13,12 +13,12 @@
#define DIST_COMPAT1X 0x0100
#define DIST_COMPAT20 0x0200
#define DIST_COMPAT21 0x0400
#define DIST_XF86 0x0800
#define DIST_DES 0x1000
#define DIST_CATPAGES 0x2000
#define DIST_PORTS 0x4000
#define DIST_USR1 0x8000
#define DIST_ALL 0x7FFF
#define DIST_COMPAT22 0x0800
#define DIST_XF86 0x1000
#define DIST_DES 0x2000
#define DIST_CATPAGES 0x4000
#define DIST_PORTS 0x8000
#define DIST_ALL 0xFFFF
/* Canned distribution sets */
#define _DIST_DEVELOPER \

View file

@ -4,7 +4,7 @@
* This is probably the last program in the `sysinstall' line - the next
* generation being essentially a complete rewrite.
*
* $Id: menus.c,v 1.179 1999/01/06 13:55:12 peter Exp $
* $Id: menus.c,v 1.180 1999/01/08 00:14:22 jkh Exp $
*
* Copyright (c) 1995
* Jordan Hubbard. All rights reserved.
@ -743,6 +743,8 @@ DMenu MenuSubDistributions = {
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT20 },
{ "compat21", "FreeBSD 2.1 binary compatibility",
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT21 },
{ "compat22", "FreeBSD 2.2.x and 3.0 a.out binary compatibility",
dmenuFlagCheck, dmenuSetFlag, NULL, &Dists, '[', 'X', ']', DIST_COMPAT22 },
{ "DES", "DES encryption code - NOT FOR EXPORT!",
DESFlagCheck, distSetDES },
{ "dict", "Spelling checker dictionary files",