Welcome to 9.0_RC1

This commit is contained in:
martin 2019-11-27 14:34:31 +00:00
parent ef772775f4
commit bf05779dd5
3 changed files with 14 additions and 6 deletions

View File

@ -1,4 +1,4 @@
# $NetBSD: CHANGES-9.0,v 1.1.2.124 2019/11/27 14:06:12 martin Exp $
# $NetBSD: CHANGES-9.0,v 1.1.2.125 2019/11/27 14:34:31 martin Exp $
A complete list of changes from the initial NetBSD 9.0 branch on 2019-07-30
until the 9.0 release:
@ -6615,3 +6615,11 @@ sys/dev/pci/esm.c 1.64
add missing break.
[msaitoh, ticket #493]
istrib/notes/common/main (edited manually)
Note sysinst changes.
external/gpl2/groff/tmac/mdoc.local (edited manually)
sys/sys/param.h (edited manually)
Welcome to 9.0_RC1 !

View File

@ -1,4 +1,4 @@
.\" $NetBSD: mdoc.local,v 1.5.6.1 2019/07/30 16:52:10 martin Exp $
.\" $NetBSD: mdoc.local,v 1.5.6.2 2019/11/27 14:34:31 martin Exp $
.\"
.\" Copyright (c) 2003, 2004 The NetBSD Foundation, Inc.
.\" All rights reserved.
@ -44,9 +44,9 @@
.as doc-str-St--ieee1275-94 " (\*[Lq]\*[doc-Tn-font-size]Open Firmware\*[doc-str-St]\*[Rq])
.
.\" Default .Os value
.ds doc-operating-system NetBSD\~9.0_BETA
.ds doc-operating-system NetBSD\~9.0_RC1
.\" Default footer operating system value
.ds doc-default-operating-system NetBSD\~9.0_BETA
.ds doc-default-operating-system NetBSD\~9.0_RC1
.\" Other known versions, not yet in groff distribution
.ds doc-operating-system-NetBSD-1.3.3 1.3.3
.ds doc-operating-system-NetBSD-1.6.3 1.6.3

View File

@ -1,4 +1,4 @@
/* $NetBSD: param.h,v 1.599.2.1 2019/07/30 16:52:10 martin Exp $ */
/* $NetBSD: param.h,v 1.599.2.2 2019/11/27 14:34:31 martin Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@ -67,7 +67,7 @@
* 2.99.9 (299000900)
*/
#define __NetBSD_Version__ 900000000 /* NetBSD 9.0_BETA */
#define __NetBSD_Version__ 900000000 /* NetBSD 9.0_RC1 */
#define __NetBSD_Prereq__(M,m,p) (((((M) * 100000000) + \
(m) * 1000000) + (p) * 100) <= __NetBSD_Version__)