<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Kconfig</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>793f55b2 - kunit: fix Kconfig for build-in tests USB4 and Nitro Enclaves</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/virt/nitro_enclaves/Kconfig#793f55b2</link>
        <description>kunit: fix Kconfig for build-in tests USB4 and Nitro EnclavesBoth the USB4 and Nitro Enclaves KUNIT tests are now able to be compiledif KUNIT is compiled as a module. This leads to issues if KUNIT is beingpackaged separately from the core kernel and when KUNIT is run baremetalwithout the required driver compiled into the kernel.Fixes: 635dcd16844b (&quot;thunderbolt: test: Use kunit_test_suite() macro&quot;)Fixes: fe5be808fa6c (&quot;nitro_enclaves: test: Use kunit_test_suite() macro&quot;)Signed-off-by: Nico Pache &lt;npache@redhat.com&gt;Reviewed-by: David Gow &lt;davidgow@google.com&gt;Reviewed-by: Andra Paraschiv &lt;andraprs@amazon.com&gt;Acked-by: Brendan Higgins &lt;brendanhiggins@google.com&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/virt/nitro_enclaves/Kconfig</description>
        <pubDate>Wed, 10 Aug 2022 23:40:56 +0000</pubDate>
        <dc:creator>Nico Pache &lt;npache@redhat.com&gt;</dc:creator>
    </item>
<item>
        <title>fe5be808 - nitro_enclaves: test: Use kunit_test_suite() macro</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/virt/nitro_enclaves/Kconfig#fe5be808</link>
        <description>nitro_enclaves: test: Use kunit_test_suite() macroThe kunit_test_suite() macro previously conflicted with module_init,making it unsuitable for use in the nitro_enclaves test. Now that it&apos;sfixed, we can use it instead of a custom call into internal KUnitfunctions to run the test.As a side-effect, this means that the test results are properly includedwith other suites when built-in. To celebrate, enable the test bydefault when KUNIT_ALL_TESTS is set (and NITRO_ENCLAVES enabled).The nitro_enclave tests can now be run via kunit_tool with:	./tools/testing/kunit/kunit.py run --arch=x86_64 \	--kconfig_add CONFIG_PCI=y --kconfig_add CONFIG_SMP=y \	--kconfig_add CONFIG_HOTPLUG_CPU=y \	--kconfig_add CONFIG_VIRT_DRIVERS=y \	--kconfig_add CONFIG_NITRO_ENCLAVES=y \	&apos;ne_misc_dev_test&apos;(This is a pretty long command, so it may be worth adding a .kunitconfigfile at some point, instead.)Reviewed-by: Andra Paraschiv &lt;andraprs@amazon.com&gt;Acked-by: Brendan Higgins &lt;brendanhiggins@google.com&gt;Signed-off-by: David Gow &lt;davidgow@google.com&gt;Signed-off-by: Shuah Khan &lt;skhan@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/virt/nitro_enclaves/Kconfig</description>
        <pubDate>Sat, 09 Jul 2022 03:20:00 +0000</pubDate>
        <dc:creator>David Gow &lt;davidgow@google.com&gt;</dc:creator>
    </item>
<item>
        <title>07503b3c - nitro_enclaves: Add KUnit tests setup for the misc device functionality</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/virt/nitro_enclaves/Kconfig#07503b3c</link>
        <description>nitro_enclaves: Add KUnit tests setup for the misc device functionalityAdd the initial setup for the KUnit tests that will target the NitroEnclaves misc device functionality.Reviewed-by: Andra Paraschiv &lt;andraprs@amazon.com&gt;Signed-off-by: Longpeng &lt;longpeng2@huawei.com&gt;Link: https://lore.kernel.org/r/20211107140918.2106-4-longpeng2@huawei.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/virt/nitro_enclaves/Kconfig</description>
        <pubDate>Sun, 07 Nov 2021 14:09:16 +0000</pubDate>
        <dc:creator>Longpeng &lt;longpeng2@huawei.com&gt;</dc:creator>
    </item>
<item>
        <title>f7e55f05 - nitro_enclaves: Enable Arm64 support</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/virt/nitro_enclaves/Kconfig#f7e55f05</link>
        <description>nitro_enclaves: Enable Arm64 supportUpdate the kernel config to enable the Nitro Enclaves kernel driver forArm64 support.Reviewed-by: George-Aurelian Popescu &lt;popegeo@amazon.com&gt;Acked-by: Stefano Garzarella &lt;sgarzare@redhat.com&gt;Signed-off-by: Andra Paraschiv &lt;andraprs@amazon.com&gt;Link: https://lore.kernel.org/r/20210827154930.40608-2-andraprs@amazon.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/virt/nitro_enclaves/Kconfig</description>
        <pubDate>Fri, 27 Aug 2021 15:49:24 +0000</pubDate>
        <dc:creator>Andra Paraschiv &lt;andraprs@amazon.com&gt;</dc:creator>
    </item>
<item>
        <title>07499cc6 - nitro_enclaves: Add Kconfig for the Nitro Enclaves driver</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/drivers/virt/nitro_enclaves/Kconfig#07499cc6</link>
        <description>nitro_enclaves: Add Kconfig for the Nitro Enclaves driverAdd kernel config entry for Nitro Enclaves, including dependencies.Changelogv9 -&gt; v10* Update commit message to include the changelog before the SoB tag(s).v8 -&gt; v9* No changes.v7 -&gt; v8* No changes.v6 -&gt; v7* Remove, for now, the dependency on ARM64 arch. x86 is currently  supported, with Arm to come afterwards. The NE kernel driver can be  built for aarch64 arch.v5 -&gt; v6* No changes.v4 -&gt; v5* Add arch dependency for Arm / x86.v3 -&gt; v4* Add PCI and SMP dependencies.v2 -&gt; v3* Remove the GPL additional wording as SPDX-License-Identifier is  already in place.v1 -&gt; v2* Update path to Kconfig to match the drivers/virt/nitro_enclaves  directory.* Update help in Kconfig.Reviewed-by: Alexander Graf &lt;graf@amazon.com&gt;Signed-off-by: Andra Paraschiv &lt;andraprs@amazon.com&gt;Link: https://lore.kernel.org/r/20200921121732.44291-15-andraprs@amazon.comSigned-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/drivers/virt/nitro_enclaves/Kconfig</description>
        <pubDate>Mon, 21 Sep 2020 12:17:28 +0000</pubDate>
        <dc:creator>Andra Paraschiv &lt;andraprs@amazon.com&gt;</dc:creator>
    </item>
</channel>
</rss>
