Source-Changes-HG archive
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]
[src/trunk]: src Convert MAXUSERS, take 2.
details: https://anonhg.NetBSD.org/src/rev/c7a58377f45c
branches: trunk
changeset: 340258:c7a58377f45c
user: uebayasi <uebayasi%NetBSD.org@localhost>
date: Sat Aug 29 14:07:45 2015 +0000
description:
Convert MAXUSERS, take 2.
Define MAXUSERS in opt_param.h and include it from sys/param.h, for more
accurate dependency. Don't define -DMAXUSERS and add it to ${CPPFLAGS}.
config(5)'s "maxusers" syntax doesn't change.
(The version just before revert was OK, but I had something bad in my obj
dirs.)
diffstat:
sys/conf/Makefile.kern.inc | 4 ++--
sys/conf/files | 5 +++--
sys/sys/param.h | 6 +++++-
usr.bin/config/defs.h | 4 ++--
usr.bin/config/gram.y | 12 +++++++++---
usr.bin/config/mkmakefile.c | 5 ++---
6 files changed, 23 insertions(+), 13 deletions(-)
diffs (137 lines):
diff -r 963402487b12 -r c7a58377f45c sys/conf/Makefile.kern.inc
--- a/sys/conf/Makefile.kern.inc Sat Aug 29 13:34:21 2015 +0000
+++ b/sys/conf/Makefile.kern.inc Sat Aug 29 14:07:45 2015 +0000
@@ -1,4 +1,4 @@
-# $NetBSD: Makefile.kern.inc,v 1.202 2015/08/29 07:33:18 uebayasi Exp $
+# $NetBSD: Makefile.kern.inc,v 1.203 2015/08/29 14:07:45 uebayasi Exp $
#
# This file contains common `MI' targets and definitions and it is included
# at the bottom of each `MD' ${MACHINE}/conf/Makefile.${MACHINE}.
@@ -62,7 +62,7 @@
##
INCLUDES?= -I. ${EXTRA_INCLUDES} -I${S}/../common/include -I$S/arch \
-I$S -nostdinc
-CPPFLAGS+= ${INCLUDES} ${IDENT} ${PARAM} -D_KERNEL -D_KERNEL_OPT
+CPPFLAGS+= ${INCLUDES} ${IDENT} -D_KERNEL -D_KERNEL_OPT
CPPFLAGS+= -std=gnu99
DEFCOPTS?= -O2
COPTS?= ${DEFCOPTS}
diff -r 963402487b12 -r c7a58377f45c sys/conf/files
--- a/sys/conf/files Sat Aug 29 13:34:21 2015 +0000
+++ b/sys/conf/files Sat Aug 29 14:07:45 2015 +0000
@@ -1,7 +1,7 @@
-# $NetBSD: files,v 1.1138 2015/08/29 07:33:18 uebayasi Exp $
+# $NetBSD: files,v 1.1139 2015/08/29 14:07:45 uebayasi Exp $
# @(#)files.newconf 7.5 (Berkeley) 5/10/93
-version 20150820
+version 20150830
#
# device classes
@@ -17,6 +17,7 @@
# options understood by the machine-independent part of the kernel
# (note, these are case-sensitive)
#
+defparam opt_param.h MAXUSERS
defflag INSECURE
defflag KMEMSTATS
defflag KTRACE
diff -r 963402487b12 -r c7a58377f45c sys/sys/param.h
--- a/sys/sys/param.h Sat Aug 29 13:34:21 2015 +0000
+++ b/sys/sys/param.h Sat Aug 29 14:07:45 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: param.h,v 1.485 2015/08/29 07:33:18 uebayasi Exp $ */
+/* $NetBSD: param.h,v 1.486 2015/08/29 14:07:45 uebayasi Exp $ */
/*-
* Copyright (c) 1982, 1986, 1989, 1993
@@ -39,6 +39,10 @@
#ifndef _SYS_PARAM_H_
#define _SYS_PARAM_H_
+#ifdef _KERNEL_OPT
+#include "opt_param.h"
+#endif
+
/*
* Historic BSD #defines -- probably will remain untouched for all time.
*/
diff -r 963402487b12 -r c7a58377f45c usr.bin/config/defs.h
--- a/usr.bin/config/defs.h Sat Aug 29 13:34:21 2015 +0000
+++ b/usr.bin/config/defs.h Sat Aug 29 14:07:45 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: defs.h,v 1.69 2015/08/29 07:33:18 uebayasi Exp $ */
+/* $NetBSD: defs.h,v 1.70 2015/08/29 14:07:45 uebayasi Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -107,7 +107,7 @@
* The next two lines define the current version of the config(1) binary,
* and the minimum version of the configuration files it supports.
*/
-#define CONFIG_VERSION 20150820
+#define CONFIG_VERSION 20150830
#define CONFIG_MINVERSION 0
/*
diff -r 963402487b12 -r c7a58377f45c usr.bin/config/gram.y
--- a/usr.bin/config/gram.y Sat Aug 29 13:34:21 2015 +0000
+++ b/usr.bin/config/gram.y Sat Aug 29 14:07:45 2015 +0000
@@ -1,5 +1,5 @@
%{
-/* $NetBSD: gram.y,v 1.48 2015/08/29 02:54:07 uebayasi Exp $ */
+/* $NetBSD: gram.y,v 1.49 2015/08/29 14:07:45 uebayasi Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -42,7 +42,7 @@
*/
#include <sys/cdefs.h>
-__RCSID("$NetBSD: gram.y,v 1.48 2015/08/29 02:54:07 uebayasi Exp $");
+__RCSID("$NetBSD: gram.y,v 1.49 2015/08/29 14:07:45 uebayasi Exp $");
#include <sys/types.h>
#include <sys/param.h>
@@ -760,7 +760,13 @@
;
select_maxusers:
- MAXUSERS int32 { setmaxusers($2); }
+ MAXUSERS int32 {
+ char str[32];
+
+ setmaxusers($2);
+ snprintf(str, sizeof(str), "%d", $2);
+ addoption(intern("MAXUSERS"), intern(str));
+ }
;
select_ident:
diff -r 963402487b12 -r c7a58377f45c usr.bin/config/mkmakefile.c
--- a/usr.bin/config/mkmakefile.c Sat Aug 29 13:34:21 2015 +0000
+++ b/usr.bin/config/mkmakefile.c Sat Aug 29 14:07:45 2015 +0000
@@ -1,4 +1,4 @@
-/* $NetBSD: mkmakefile.c,v 1.44 2015/08/29 07:33:18 uebayasi Exp $ */
+/* $NetBSD: mkmakefile.c,v 1.45 2015/08/29 14:07:45 uebayasi Exp $ */
/*
* Copyright (c) 1992, 1993
@@ -45,7 +45,7 @@
#endif
#include <sys/cdefs.h>
-__RCSID("$NetBSD: mkmakefile.c,v 1.44 2015/08/29 07:33:18 uebayasi Exp $");
+__RCSID("$NetBSD: mkmakefile.c,v 1.45 2015/08/29 14:07:45 uebayasi Exp $");
#include <sys/param.h>
#include <ctype.h>
@@ -276,7 +276,6 @@
s ? "\"" : "");
}
putc('\n', fp);
- fprintf(fp, "PARAM=-DMAXUSERS=%d\n", maxusers);
fprintf(fp, "MACHINE=%s\n", machine);
const char *subdir = "";
Home |
Main Index |
Thread Index |
Old Index