Branch: refs/heads/master
Home: https://github.com/OpenAMP/libmetal
Commit: 821fd4fc3db24cbb9b0de21ad0050048b8e70b60
https://github.com/OpenAMP/libmetal/commit/821fd4fc3db24cbb9b0de21ad0050048…
Author: Bobby Noelte <b0661n0e17e(a)gmail.com>
Date: 2020-07-31 (Fri, 31 Jul 2020)
Changed paths:
M lib/compiler/gcc/atomic.h
Log Message:
-----------
gcc: use __typeof__ instead of typeof in atomic.h
Compiling for Zephyr bails out on typeof. Use __typeof__
which is accepted by gcc regardless of the c language version.
Signed-off-by: Bobby Noelte <b0661n0e17e(a)gmail.com>
Branch: refs/heads/master
Home: https://github.com/OpenAMP/open-amp
Commit: 6a835240096a36193584b1a98c17129c8aab37b2
https://github.com/OpenAMP/open-amp/commit/6a835240096a36193584b1a98c17129c…
Author: Simon Leiner <simon(a)leiner.me>
Date: 2020-07-27 (Mon, 27 Jul 2020)
Changed paths:
M lib/include/openamp/virtqueue.h
Log Message:
-----------
Cast allocated memory to target type
Although omitting the cast to the target type is idiomatic C, the
omission is actually forbidden in ISO C++. This patch enables the header
to be used in C++ code.
Signed-off-by: Simon Leiner <simon(a)leiner.me>
Branch: refs/heads/master
Home: https://github.com/OpenAMP/open-amp
Commit: 98b3874fb227dce6f1f5bb38f535eae92db5737c
https://github.com/OpenAMP/open-amp/commit/98b3874fb227dce6f1f5bb38f535eae9…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)st.com>
Date: 2020-07-27 (Mon, 27 Jul 2020)
Changed paths:
M cmake/modules/FindLibmetal.cmake
Log Message:
-----------
cmake: fix LIBMETAL naming warning
Fix warnings spotted by cmake:
The package name passed to `find_package_handle_standard_args`(LIBMETAL) does
not match the name of the calling package(Libmetal). This can lead to problems
in calling code that expects `find_package` result variables (e.g., `_FOUND`)
to follow a certain pattern.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)st.com>
Branch: refs/heads/master
Home: https://github.com/OpenAMP/libmetal
Commit: dafc19ec8b86a4a9ae6e65d0a68a5434fb6d843d
https://github.com/OpenAMP/libmetal/commit/dafc19ec8b86a4a9ae6e65d0a68a5434…
Author: Kumar Gala <kumar.gala(a)linaro.org>
Date: 2020-07-27 (Mon, 27 Jul 2020)
Changed paths:
M lib/system/zephyr/time.c
Log Message:
-----------
zephyr: Fix metal_get_timestamp implementation
_sys_clock_tick_count has not existed for a number of zephyr releases
(last release was v1.13). Use k_uptime_ticks() instead to implement
metal_get_timestamp.
Signed-off-by: Kumar Gala <kumar.gala(a)linaro.org>
Hello,
Instead of our normal standing agenda of review etc, next week's
meeting will be 100% dedicated to the topic of device tree bindings
for remote processors.
If you need invite info for this meeting please reply to this email
directly. Note that this is not my @ti.com address. (My last day at
TI is July 30. I will still be chairing this sub-group but using this
email address instead.)
Thanks,
Bill
Branch: refs/heads/master
Home: https://github.com/OpenAMP/libmetal
Commit: f3cf921f0a1f641357edc2ef38f053b1c431de45
https://github.com/OpenAMP/libmetal/commit/f3cf921f0a1f641357edc2ef38f053b1…
Author: Arnaud Pouliquen <arnaud.pouliquen(a)st.com>
Date: 2020-07-08 (Wed, 08 Jul 2020)
Changed paths:
M cmake/modules/FindHugeTLBFS.cmake
M cmake/modules/FindLibSysFS.cmake
Log Message:
-----------
cmake: fix HUGETLBFS and LIBSYSFS naming warning
Fix warnings spotted by cmake:
The package name passed to `find_package_handle_standard_args`(HUGETLBFS)
does not match the name of the calling package(HugeTLBFS). This can lead
to problems in calling code that expects `find_package` result variables
(e.g., `_FOUND`) to follow a certain pattern.
Tested with cmake 3.5 and 3.17.
Signed-off-by: Arnaud Pouliquen <arnaud.pouliquen(a)st.com>
Branch: refs/heads/master
Home: https://github.com/OpenAMP/open-amp
Commit: 0792f92b00907c38c59aa21de5f82343955cfb0c
https://github.com/OpenAMP/open-amp/commit/0792f92b00907c38c59aa21de5f82343…
Author: Torsten Rasmussen <Torsten.Rasmussen(a)nordicsemi.no>
Date: 2020-07-08 (Wed, 08 Jul 2020)
Changed paths:
M CMakeLists.txt
Log Message:
-----------
cmake: set the policy CMP0077 to NEW
This commit introduces CMP0077 and set the policy to new behavior
and thus removes the following warning when using newer CMake versions:
```
Policy CMP0077 is not set: option() honors normal variables. Run "cmake
--help-policy CMP0077" for policy details. Use the cmake_policy command
to set the policy and suppress this warning.`
```
Both OLD and NEW behavior will use the value defined earlier in the
CMake process, however the OLD behavior will also add an entry to the
CMakeCache.txt but ignore that value on sub-sequent invocations.
As this may lead to confusion on users looking into the CMakeCache.txt,
then the best is to not get such values into the cache, and thus use NEW
behavior.
Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen(a)nordicsemi.no>
Branch: refs/heads/master
Home: https://github.com/OpenAMP/libmetal
Commit: 3454d429f3dacd8b2c3592fcbb5d3def9814a38b
https://github.com/OpenAMP/libmetal/commit/3454d429f3dacd8b2c3592fcbb5d3def…
Author: Torsten Rasmussen <Torsten.Rasmussen(a)nordicsemi.no>
Date: 2020-07-08 (Wed, 08 Jul 2020)
Changed paths:
M CMakeLists.txt
Log Message:
-----------
cmake: set the policy CMP0077 to NEW
This commit introduces CMP0077 and set the policy to new behavior
and thus removes the following warning when using newer CMake versions:
```
Policy CMP0077 is not set: option() honors normal variables. Run "cmake
--help-policy CMP0077" for policy details. Use the cmake_policy command
to set the policy and suppress this warning.`
```
Both OLD and NEW behavior will use the value defined earlier in the
CMake process, however the OLD behavior will also add an entry to the
CMakeCache.txt but ignore that value on sub-sequent invocations.
As this may lead to confusion on users looking into the CMakeCache.txt,
then the best is to not get such values into the cache, and thus use NEW
behavior.
Signed-off-by: Torsten Rasmussen <Torsten.Rasmussen(a)nordicsemi.no>