summaryrefslogtreecommitdiffstats
path: root/meta/recipes-support/numactl
AgeCommit message (Collapse)Author
2024-02-21numactl: Upgrade 2.0.17 -> 2.0.18Richard Purdie
(From OE-Core rev: 6e59ddccd728b50aa0503cd262dcefde25946ae4) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2024-02-03numactl: upgrade 2.0.16 -> 2.0.17Richard Purdie
Drop two backported patches, refresh others. (From OE-Core rev: 63c7bf399f31420374866dc050a52e9c0700cdbd) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2023-01-20numactl: skip test case when target platform doesn't have 2 CPU nodeXiangyu Chen
when current test platform doesn't have 2 or more CPU node, the test case would report FAIL, according to numa test script and numademo code, when return code=77 should be skip test, so using SKIP instead of FAIL in test script. (From OE-Core rev: fd0a82400d419bce8605a9445db9b20b8ddc01a7) Signed-off-by: Xiangyu Chen <xiangyu.chen@windriver.com> Signed-off-by: Luca Ceresoli <luca.ceresoli@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-12-22numactl: Enable largefile supportKhem Raj
(From OE-Core rev: 4ec9e05e7276bee6952669212d129549500338ec) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-10-26numactl: upgrade 2.0.15 -> 2.0.16wangmy
(From OE-Core rev: 6d9ed8d4b13c2d87dae482bbadef039de050bc9d) Signed-off-by: Wang Mingyu <wangmy@fujitsu.com> Signed-off-by: Alexandre Belloni <alexandre.belloni@bootlin.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-09-20numactl: upgrade 2.0.14 -> 2.0.15Richard Purdie
License checksum change from a typo fix. (From OE-Core rev: 8829fe6ee093acc6fb990f9ca6cad67c2c7549d5) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2022-02-20meta/meta-selftest/meta-skeleton: Update LICENSE variable to use SPDX ↵Richard Purdie
license identifiers An automated conversion using scripts/contrib/convert-spdx-licenses.py to convert to use the standard SPDX license identifiers. Two recipes in meta-selftest were not converted as they're that way specifically for testing. A change in linux-firmware was also skipped and may need a more manual tweak. (From OE-Core rev: ceda3238cdbf1beb216ae9ddb242470d5dfc25e0) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-11-21numactl: add missing Upstream-Status to a patchAlexander Kanavin
(From OE-Core rev: 33c2da75c5de1c89ea1ee423b175f8c78d674c40) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-11-03recipes: Update github.com urls to use httpsRichard Purdie
Github has announced there will be no more git:// fetching from their servers: https://github.blog/2021-09-01-improving-git-protocol-security-github/#no-more-unauthenticated-git and they're about to start having brownout periods to encourage people to update. This runs the conversion script over OE-Core to update our urls to use https instead of git. (From OE-Core rev: b37b61e9a1e448a34957db9ae39285d21352552e) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-10-30meta: Add explict branch to git SRC_URIsRichard Purdie
There is uncertainty about the default branch name in git going forward. To try and cover the different possible outcomes, add branch names to all git:// and gitsm:// SRC_URI entries. This update was made with the script added to contrib in this patch which aims to help others convert other layers. (From OE-Core rev: b51c405faf6f8c0365f7533bfaf470d79152a463) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2021-08-02Convert to new override syntaxRichard Purdie
This is the result of automated script conversion: scripts/contrib/convert-overrides.py <oe-core directory> converting the metadata to use ":" as the override character instead of "_". (From OE-Core rev: 42344347be29f0997cc2f7636d9603b1fe1875ae) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-11-08numactl: Link with libatomic on rv64/rv32Khem Raj
bring a missing commit from meta-oe Fixes riscv64-yoe-linux/10.2.0/ld: ./.libs/libnuma.so: undefined reference to `__atomic_fetch_and_1' (From OE-Core rev: ea70d7f8f78cd793242cf6804840507d2ebd2871) Signed-off-by: Khem Raj <raj.khem@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-11-03numactl: upgrade 2.0.13 -> 2.0.14Alexander Kanavin
(From OE-Core rev: a59c246be05ca284fa27df87b5db09a70f527cc2) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-10-30numactl: Skip the ptests when numa is not supportedRandy Witt
When numa is not supported, there is no reason to run the ptests since they will fail. While the best scenario would be for the upstream tests to skip themselves when numa is not supported, for now skip them in run-ptest. (From OE-Core rev: a1e498be7904bb9e961653f6d64acb6bbfe0894c) Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-10-30numactl: Remove COMPATIBLE_HOST restrictionsRandy Witt
Since there may be recipes that depend on libnuma, even though the hardware doesn't support numa, remove the COMPATIBLE_HOST restrictions. (From OE-Core rev: 1d5574645076bc4cbc8b6e7b7a0606a5c9a9f9ae) Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
2020-10-30numactl: Add the recipe for numactlRandy Witt
This is a direct copy of numactl from meta-openembedded. numactl is being moved to oe-core since the latest versions of rt-tests(which is in oe-core) require libnuma. (From OE-Core rev: dda815792b0939b2f233aa3ec7c140fc114a37d1) Signed-off-by: Randy Witt <randy.e.witt@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>