Source-Changes-HG archive

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

[src/trunk]: src As requested in PR port-cats/30460 add support for GENERIC.A...



details:   https://anonhg.NetBSD.org/src/rev/b7bc9a453364
branches:  trunk
changeset: 583437:b7bc9a453364
user:      chris <chris%NetBSD.org@localhost>
date:      Sun Aug 07 00:21:38 2005 +0000

description:
As requested in PR port-cats/30460 add support for GENERIC.ABLE kernel to
sysinst, and also add the ABLE install kernel to the generated release
kernels.

diffstat:

 distrib/cats/instkernel/Makefile          |  5 +++--
 distrib/utils/sysinst/arch/cats/md.h      |  3 ++-
 distrib/utils/sysinst/arch/cats/msg.md.de |  5 ++++-
 distrib/utils/sysinst/arch/cats/msg.md.en |  5 ++++-
 distrib/utils/sysinst/arch/cats/msg.md.fr |  5 ++++-
 distrib/utils/sysinst/arch/cats/msg.md.pl |  5 ++++-
 etc/etc.cats/Makefile.inc                 |  6 +++---
 7 files changed, 24 insertions(+), 10 deletions(-)

diffs (119 lines):

diff -r d3eea282c988 -r b7bc9a453364 distrib/cats/instkernel/Makefile
--- a/distrib/cats/instkernel/Makefile  Sat Aug 06 23:40:39 2005 +0000
+++ b/distrib/cats/instkernel/Makefile  Sun Aug 07 00:21:38 2005 +0000
@@ -1,4 +1,4 @@
-#      $NetBSD: Makefile,v 1.13 2003/10/25 04:39:48 lukem Exp $
+#      $NetBSD: Makefile,v 1.14 2005/08/07 00:21:38 chris Exp $
 
 .include <bsd.own.mk>
 .include "${NETBSDSRCDIR}/distrib/common/Makefile.distrib"
@@ -6,7 +6,8 @@
 RAMDISKDIR!=   cd ${.CURDIR}/../ramdisk && ${PRINTOBJDIR}
 RAMDISK=       ${RAMDISKDIR}/ramdisk.fs
 
-MDSETTARGETS=          INSTALL ${RAMDISK} netbsd.aout-INSTALL
+MDSETTARGETS=          INSTALL ${RAMDISK} netbsd.aout-INSTALL \
+                       INSTALL.ABLE ${RAMDISK} netbsd.able-INSTALL
 MDSET_RELEASEDIR=      binary/kernel
 
 MDSET_NOSTRIP=         # defined
diff -r d3eea282c988 -r b7bc9a453364 distrib/utils/sysinst/arch/cats/md.h
--- a/distrib/utils/sysinst/arch/cats/md.h      Sat Aug 06 23:40:39 2005 +0000
+++ b/distrib/utils/sysinst/arch/cats/md.h      Sun Aug 07 00:21:38 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: md.h,v 1.11 2004/06/06 06:06:59 christos Exp $ */
+/*     $NetBSD: md.h,v 1.12 2005/08/07 00:21:39 chris Exp $    */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -50,6 +50,7 @@
  *      base etc comp games man misc text xbase xcomp xetc xfont xserver
  */
 #define SET_KERNEL_1_NAME      "kern-GENERIC"
+#define SET_KERNEL_2_NAME      "kern-GENERIC.ABLE"
 
 /*
  * Machine-specific command to write a new label to a disk.
diff -r d3eea282c988 -r b7bc9a453364 distrib/utils/sysinst/arch/cats/msg.md.de
--- a/distrib/utils/sysinst/arch/cats/msg.md.de Sat Aug 06 23:40:39 2005 +0000
+++ b/distrib/utils/sysinst/arch/cats/msg.md.de Sun Aug 07 00:21:38 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg.md.de,v 1.3 2004/10/21 12:14:22 martin Exp $       */
+/*     $NetBSD: msg.md.de,v 1.4 2005/08/07 00:21:39 chris Exp $        */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -53,3 +53,6 @@
 
 message set_kernel_1
 {Kernel (GENERIC)}
+
+message set_kernel_2
+{Kernel (GENERIC.ABLE)}
diff -r d3eea282c988 -r b7bc9a453364 distrib/utils/sysinst/arch/cats/msg.md.en
--- a/distrib/utils/sysinst/arch/cats/msg.md.en Sat Aug 06 23:40:39 2005 +0000
+++ b/distrib/utils/sysinst/arch/cats/msg.md.en Sun Aug 07 00:21:38 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg.md.en,v 1.6 2003/06/12 11:20:05 dsl Exp $  */
+/*     $NetBSD: msg.md.en,v 1.7 2005/08/07 00:21:39 chris Exp $        */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -53,3 +53,6 @@
 
 message set_kernel_1
 {Kernel (GENERIC)}
+
+message set_kernel_2
+{Kernel (GENERIC.ABLE)}
diff -r d3eea282c988 -r b7bc9a453364 distrib/utils/sysinst/arch/cats/msg.md.fr
--- a/distrib/utils/sysinst/arch/cats/msg.md.fr Sat Aug 06 23:40:39 2005 +0000
+++ b/distrib/utils/sysinst/arch/cats/msg.md.fr Sun Aug 07 00:21:38 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg.md.fr,v 1.6 2003/06/12 11:20:05 dsl Exp $  */
+/*     $NetBSD: msg.md.fr,v 1.7 2005/08/07 00:21:39 chris Exp $        */
 
 /*
  * Copyright 1997 Piermont Information Systems Inc.
@@ -54,3 +54,6 @@
 
 message set_kernel_1
 {Kernel (GENERIC)}
+
+message set_kernel_2
+{Kernel (GENERIC.ABLE)}
diff -r d3eea282c988 -r b7bc9a453364 distrib/utils/sysinst/arch/cats/msg.md.pl
--- a/distrib/utils/sysinst/arch/cats/msg.md.pl Sat Aug 06 23:40:39 2005 +0000
+++ b/distrib/utils/sysinst/arch/cats/msg.md.pl Sun Aug 07 00:21:38 2005 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: msg.md.pl,v 1.7 2003/07/07 12:30:23 dsl Exp $  */
+/*     $NetBSD: msg.md.pl,v 1.8 2005/08/07 00:21:39 chris Exp $        */
 /*     Based on english version: */
 /*     NetBSD: msg.md.en,v 1.1 2002/02/11 13:50:18 skrll Exp */
 
@@ -54,3 +54,6 @@
 
 message set_kernel_1
 {Kernel (GENERIC)}
+
+message set_kernel_2
+{Kernel (GENERIC.ABLE)}
diff -r d3eea282c988 -r b7bc9a453364 etc/etc.cats/Makefile.inc
--- a/etc/etc.cats/Makefile.inc Sat Aug 06 23:40:39 2005 +0000
+++ b/etc/etc.cats/Makefile.inc Sun Aug 07 00:21:38 2005 +0000
@@ -1,12 +1,12 @@
-#      $NetBSD: Makefile.inc,v 1.13 2003/03/22 00:13:35 chris Exp $
+#      $NetBSD: Makefile.inc,v 1.14 2005/08/07 00:21:38 chris Exp $
 #
 #      etc.cats/Makefile.inc -- cats-specific etc Makefile targets
 #
 
-KERNEL_SETS=           GENERIC
+KERNEL_SETS=           GENERIC GENERIC.ABLE
 KERNEL_SUFFIXES=       aout
 
-BUILD_KERNELS=         INSTALL
+BUILD_KERNELS=         INSTALL INSTALL.ABLE
 
 INSTALLATION_DIRS+=    installation/kernel
 



Home | Main Index | Thread Index | Old Index