diff options
author | Mark Asselstine <mark.asselstine@windriver.com> | 2018-05-31 17:08:04 -0400 |
---|---|---|
committer | Bruce Ashfield <bruce.ashfield@windriver.com> | 2018-06-03 23:26:51 -0400 |
commit | 0d7cfe86600b0306af97578b16ec7ca264ea1346 (patch) | |
tree | 64c2f8eb8285a75592a6c657691d113525335e44 /recipes-containers/lxc/files/logs-optionally-use-base-filenames-to-report-src-fil.patch | |
parent | 4987f02577432e518e627c2c139c378b8b6a9678 (diff) | |
download | meta-virtualization-0d7cfe86600b0306af97578b16ec7ca264ea1346.tar.gz |
lxc: uprev to v3.0.0
Update to the latest lxc release. This requires some minor patch
updates (fuzz and offset, not content) along with dropping a no longer
needed fix for gcc7 (gcc 7.3 is everywhere and is patched).
The ptests were already busted before the uprev so I was not able to
run them but I will follow up with a fix for this. I did run against
our usual usecases 'lxc-create', 'lxc-console', 'lxc-ls',
'lxc-destroy', 'lxc-start', 'lxc-execute', 'lxc-attach'... and there
were no issues (outcomes matched v2.0.8).
Signed-off-by: Mark Asselstine <mark.asselstine@windriver.com>
Signed-off-by: Bruce Ashfield <bruce.ashfield@windriver.com>
Diffstat (limited to 'recipes-containers/lxc/files/logs-optionally-use-base-filenames-to-report-src-fil.patch')
-rw-r--r-- | recipes-containers/lxc/files/logs-optionally-use-base-filenames-to-report-src-fil.patch | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/recipes-containers/lxc/files/logs-optionally-use-base-filenames-to-report-src-fil.patch b/recipes-containers/lxc/files/logs-optionally-use-base-filenames-to-report-src-fil.patch index 583b6f1c..f430601a 100644 --- a/recipes-containers/lxc/files/logs-optionally-use-base-filenames-to-report-src-fil.patch +++ b/recipes-containers/lxc/files/logs-optionally-use-base-filenames-to-report-src-fil.patch | |||
@@ -31,9 +31,9 @@ diff --git a/configure.ac b/configure.ac | |||
31 | index deba90b..c1ed67b 100644 | 31 | index deba90b..c1ed67b 100644 |
32 | --- a/configure.ac | 32 | --- a/configure.ac |
33 | +++ b/configure.ac | 33 | +++ b/configure.ac |
34 | @@ -357,6 +357,15 @@ AM_COND_IF([ENABLE_PYTHON], | 34 | @@ -356,6 +356,15 @@ AM_COND_IF([ENABLE_PYTHON], |
35 | PKG_CHECK_MODULES([PYTHONDEV], [python3 >= 3.2],[],[AC_MSG_ERROR([You must install python3-dev])]) | 35 | [], [enable_examples=yes]) |
36 | AC_DEFINE_UNQUOTED([ENABLE_PYTHON], 1, [Python3 is available])]) | 36 | AM_CONDITIONAL([ENABLE_EXAMPLES], [test "x$enable_examples" = "xyes"]) |
37 | 37 | ||
38 | +# Enable basenames in the logs for source files | 38 | +# Enable basenames in the logs for source files |
39 | +AC_ARG_ENABLE([log-src-basename], | 39 | +AC_ARG_ENABLE([log-src-basename], |
@@ -51,7 +51,7 @@ diff --git a/src/lxc/log.h b/src/lxc/log.h | |||
51 | index 76bd4df..4365977 100644 | 51 | index 76bd4df..4365977 100644 |
52 | --- a/src/lxc/log.h | 52 | --- a/src/lxc/log.h |
53 | +++ b/src/lxc/log.h | 53 | +++ b/src/lxc/log.h |
54 | @@ -74,8 +74,13 @@ struct lxc_log_locinfo { | 54 | @@ -77,8 +77,13 @@ struct lxc_log_locinfo { |
55 | int line; | 55 | int line; |
56 | }; | 56 | }; |
57 | 57 | ||