summaryrefslogtreecommitdiffstats
path: root/usr.sbin/config/config.y
diff options
context:
space:
mode:
authorobrien <obrien@FreeBSD.org>2008-07-28 17:11:57 +0000
committerobrien <obrien@FreeBSD.org>2008-07-28 17:11:57 +0000
commitffa615778870d82037421f0b90fa371af7218892 (patch)
tree8d099661592223adff18fcfb6fa2247292c91020 /usr.sbin/config/config.y
parent0c7c769464c641777d634b959d37a2f19a2ff375 (diff)
downloadFreeBSD-src-ffa615778870d82037421f0b90fa371af7218892.zip
FreeBSD-src-ffa615778870d82037421f0b90fa371af7218892.tar.gz
Allow kernel config files to include files other than those in the CWD,
using unquoted paths.
Diffstat (limited to 'usr.sbin/config/config.y')
-rw-r--r--usr.sbin/config/config.y6
1 files changed, 6 insertions, 0 deletions
diff --git a/usr.sbin/config/config.y b/usr.sbin/config/config.y
index 8eef64c..9aa89e5 100644
--- a/usr.sbin/config/config.y
+++ b/usr.sbin/config/config.y
@@ -31,6 +31,7 @@
%type <str> Save_id
%type <str> Opt_value
%type <str> Dev
+%token <str> PATH
%{
@@ -128,6 +129,11 @@ Spec:
|
Config_spec SEMICOLON
|
+ INCLUDE PATH SEMICOLON {
+ if (incignore == 0)
+ include($2, 0);
+ };
+ |
INCLUDE ID SEMICOLON {
if (incignore == 0)
include($2, 0);
OpenPOWER on IntegriCloud