From 21e5d8e2c682b39d94929a5055016db13356cc8b Mon Sep 17 00:00:00 2001 From: Scott Rifenbark Date: Wed, 24 Oct 2018 16:26:11 -0700 Subject: ref-manual: Updates to variable wildcard support Fixes [YOCTO #12390] Updated three variables: BB_ALLOWED_NETWORKS, BBMASK, and BBFILES. Fixed some linking to be sure to use Python3 links instead of Python 2. Fixed a note to clarify use of the "*" wildcard restrictions in the BB_ALLOWED_NETWORKS variable. (From yocto-docs rev: 6f880d10d0830d80cc2d4d1d5b7ea141dad6d4af) Signed-off-by: Scott Rifenbark Signed-off-by: Richard Purdie --- documentation/ref-manual/ref-variables.xml | 17 ++++++++++++----- 1 file changed, 12 insertions(+), 5 deletions(-) (limited to 'documentation') diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index 178692a21e..595f2db8b0 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml @@ -680,11 +680,18 @@ BB_ALLOWED_NETWORKS = "*.gnu.org" Important - The use of the "*" + The use of the "*" character only works at the beginning of - a host name. + a host name and it must be isolated from + the remainder of the host name. You cannot use the wildcard character in any - other location of the name. + other location of the name or combined with + the front part of the name. + + For example, + *.foo.bar is supported, + while *aa.foo.bar is not. + @@ -1152,7 +1159,7 @@ When specifying recipe files, you can pattern match using Python's - glob + glob syntax. For details on the syntax, see the documentation by following the previous link. @@ -1296,7 +1303,7 @@ the files. For complete syntax information, see Python's documentation at - . + . -- cgit v1.2.3-54-g00ecf