From 596feda554be877e7cd3338cf8e4879061e9b1b7 Mon Sep 17 00:00:00 2001 From: Peter Wemm Date: Fri, 25 Aug 2000 19:30:03 +0000 Subject: If a ${KERNEL}.hints file exists, and no hints are specified explicitly, then include the hints with a marker indicating that it is a fallback. The kernel side of this is to come shortly. --- sys/conf/Makefile.alpha | 2 +- sys/conf/Makefile.i386 | 2 +- sys/conf/Makefile.pc98 | 2 +- sys/conf/Makefile.powerpc | 2 +- usr.sbin/config/config.h | 1 + usr.sbin/config/config.y | 6 +++++- usr.sbin/config/configvers.h | 2 +- usr.sbin/config/mkmakefile.c | 7 +++++++ 8 files changed, 18 insertions(+), 6 deletions(-) diff --git a/sys/conf/Makefile.alpha b/sys/conf/Makefile.alpha index 87559cee5ff6..1798e889cc2e 100644 --- a/sys/conf/Makefile.alpha +++ b/sys/conf/Makefile.alpha @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500002 +%VERSREQ= 500003 # Can be overridden by makeoptions or /etc/make.conf KERNEL?= kernel diff --git a/sys/conf/Makefile.i386 b/sys/conf/Makefile.i386 index 8bbb953659f6..acf5001199e8 100644 --- a/sys/conf/Makefile.i386 +++ b/sys/conf/Makefile.i386 @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500002 +%VERSREQ= 500003 # Can be overridden by makeoptions or /etc/make.conf KERNEL?= kernel diff --git a/sys/conf/Makefile.pc98 b/sys/conf/Makefile.pc98 index 2f52ccb0ef44..7eab4e69def2 100644 --- a/sys/conf/Makefile.pc98 +++ b/sys/conf/Makefile.pc98 @@ -19,7 +19,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500002 +%VERSREQ= 500003 # Can be overridden by makeoptions or /etc/make.conf KERNEL?= kernel diff --git a/sys/conf/Makefile.powerpc b/sys/conf/Makefile.powerpc index 8bbb953659f6..acf5001199e8 100644 --- a/sys/conf/Makefile.powerpc +++ b/sys/conf/Makefile.powerpc @@ -17,7 +17,7 @@ # # Which version of config(8) is required. -%VERSREQ= 500002 +%VERSREQ= 500003 # Can be overridden by makeoptions or /etc/make.conf KERNEL?= kernel diff --git a/usr.sbin/config/config.h b/usr.sbin/config/config.h index 1779dc5a37b1..3964211bdfc0 100644 --- a/usr.sbin/config/config.h +++ b/usr.sbin/config/config.h @@ -131,6 +131,7 @@ struct opt_list { extern char *ident; extern char *hints; extern int do_trace; +extern int hintmode; char *get_word(FILE *); char *get_quoted_word(FILE *); diff --git a/usr.sbin/config/config.y b/usr.sbin/config/config.y index 0de3e913aa20..5d12b9debf39 100644 --- a/usr.sbin/config/config.y +++ b/usr.sbin/config/config.y @@ -75,6 +75,7 @@ static struct device *curp = 0; struct device *dtab; char *ident; char *hints; +int hintmode; int yyline; struct file_list *ftab; char errbuf[80]; @@ -142,7 +143,10 @@ Config_spec: MAXUSERS NUMBER = { maxusers = $2; } | HINTS ID - = { hints = $2; }; + = { + hints = $2; + hintmode = 1; + }; System_spec: CONFIG System_id System_parameter_list diff --git a/usr.sbin/config/configvers.h b/usr.sbin/config/configvers.h index 7a398f5c712f..a797e64d5dc1 100644 --- a/usr.sbin/config/configvers.h +++ b/usr.sbin/config/configvers.h @@ -8,4 +8,4 @@ * * $FreeBSD$ */ -#define CONFIGVERS 500002 +#define CONFIGVERS 500003 diff --git a/usr.sbin/config/mkmakefile.c b/usr.sbin/config/mkmakefile.c index 282378082ce2..bd110ecc2687 100644 --- a/usr.sbin/config/mkmakefile.c +++ b/usr.sbin/config/mkmakefile.c @@ -225,6 +225,13 @@ makefile(void) ofp = fopen(path("hints.c.new"), "w"); if (ofp == NULL) err(1, "%s", path("hints.c.new")); + if (hintmode == 0) { + snprintf(line, sizeof(line), "%s.hints", PREFIX); + ifp = fopen(line, "r"); + if (ifp) + hintmode = 2; + } + fprintf(ofp, "int hintmode = %d;\n", hintmode); fprintf(ofp, "char static_hints[] = {\n"); if (ifp) { while (fgets(line, BUFSIZ, ifp) != 0) { -- cgit v1.2.3