<?xml version="1.0"?>
<?xml-stylesheet type="text/xsl" href="/source/rss.xsl.xml"?>
<rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/">
<channel>
    <title>Changes in Makefile</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>aae23170c8b5ac320dbf9c5f6cec05bea0b4b62f - libutil: Move cpuset(1) domain policy parsing code into libutil</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/bin/cpuset/Makefile#aae23170c8b5ac320dbf9c5f6cec05bea0b4b62f</link>
        <description>libutil: Move cpuset(1) domain policy parsing code into libutilcpuset(1) implements a domainset(9) policy parser that is used totranslate a &lt;policy&gt;:&lt;domain_list&gt; string into a domainset_t maskand a valid domainset policy. This change moves the domainset parsingcode into a new cpuset.c function - &apos;domainset_parselist&apos;.The existing cpuset.c code was refactored into a generalized listparsing function which is now used to parse both CPU sets and domainsets. This is the same approach used in cpuset(1).Reviewed by:	markj, ziaee (manpages)Differential Revision:	https://reviews.freebsd.org/D46607

            List of files:
            /freebsd/bin/cpuset/Makefile</description>
        <pubDate>Sun, 08 Sep 2024 17:51:46 +0200</pubDate>
        <dc:creator>Bojan Novkovi&#263; &lt;bnovkov@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e9ac41698b2f322d55ccf9da50a3596edb2c1800 - Remove residual blank line at start of Makefile</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/bin/cpuset/Makefile#e9ac41698b2f322d55ccf9da50a3596edb2c1800</link>
        <description>Remove residual blank line at start of MakefileThis is a residual of the $FreeBSD$ removal.MFC After: 3 days (though I&apos;ll just run the command on the branches)Sponsored by: Netflix

            List of files:
            /freebsd/bin/cpuset/Makefile</description>
        <pubDate>Mon, 15 Jul 2024 06:46:32 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>22dc8901a73fcb30ff434ddf5aada43ab10021ae - Use proper convention for relative path linking</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/bin/cpuset/Makefile#22dc8901a73fcb30ff434ddf5aada43ab10021ae</link>
        <description>Use proper convention for relative path linkingThe change made in e835ee68e13361b841c983fa4a49dd6c19dcdec4 did notfollow the convention for relative path symlinks. Per the convention,paths be prefixed with `${BINDIR}`, not `/bin/`. `${BINDIR}` can bemodified from the Makefile, on the command line, or in theenvironment. This convention is the canonically correct way to dothings.This follows the convention used in `bin/pkill/Makefile`,`bin/timeout/Makefile`, etc.MFC after:	1 weekMFC with:	f05948d4e98d3abd0965a2994e9e42add6908ff3MFC with:	e835ee68e13361b841c983fa4a49dd6c19dcdec4Requested by:	jrtc27, kevans

            List of files:
            /freebsd/bin/cpuset/Makefile</description>
        <pubDate>Fri, 18 Aug 2023 13:13:06 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf - Remove $FreeBSD$: one-line sh pattern</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/bin/cpuset/Makefile#d0b2dbfa0ecf2bbc9709efc5e20baf8e4b44bbbf</link>
        <description>Remove $FreeBSD$: one-line sh patternRemove /^\s*#[#!]?\s*\$FreeBSD\$.*$\n/

            List of files:
            /freebsd/bin/cpuset/Makefile</description>
        <pubDate>Wed, 16 Aug 2023 19:55:03 +0200</pubDate>
        <dc:creator>Warner Losh &lt;imp@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>e835ee68e13361b841c983fa4a49dd6c19dcdec4 - Link /usr/bin/cpuset to a relative path</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/bin/cpuset/Makefile#e835ee68e13361b841c983fa4a49dd6c19dcdec4</link>
        <description>Link /usr/bin/cpuset to a relative pathThis creates an appropriate symlink instead of a potentially incorrectpath pointing to the absolute path for cpuset(8) on the host.MFC after:	2 weeksMFC with:	f05948d4e98d3abd0965aRequested by:	impReviewed by:	kevansDifferential Revision:	https://reviews.freebsd.org/D41419

            List of files:
            /freebsd/bin/cpuset/Makefile</description>
        <pubDate>Fri, 11 Aug 2023 10:11:57 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
<item>
        <title>f05948d4e98d3abd0965a2994e9e42add6908ff3 - cpuset(8): move to /bin/</title>
        <link>http://kernelsources.org:8080/source/history/freebsd/bin/cpuset/Makefile#f05948d4e98d3abd0965a2994e9e42add6908ff3</link>
        <description>cpuset(8): move to /bin/Summary:This change moves /usr/bin/cpuset to /bin/cpuset so it is more readilyavailable on hosts where the /usr partition might not be mounted at thetime / has been mounted.Remove some complexity from rc.subr(8) since /bin is assumed to alwaysbe present if/when / is mounted.MFC after:	2 weeksMFC with:	0661f93892a2, 271d552379afTest Plan:- Test out rc.subr change.- Confirm that the installation logic does what&apos;s needed.Relnotes:	yes (moving cpuset may impact strict file permissions/mode checking)Reviewers:	kevansSubscribers:	impDifferential Revision: https://reviews.freebsd.org/D40057

            List of files:
            /freebsd/bin/cpuset/Makefile</description>
        <pubDate>Thu, 11 May 2023 07:54:51 +0200</pubDate>
        <dc:creator>Enji Cooper &lt;ngie@FreeBSD.org&gt;</dc:creator>
    </item>
</channel>
</rss>
