<?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 config</title>
    <description></description>
    <language>en</language>
    <copyright>Copyright 2015</copyright>
    <generator>Java</generator><item>
        <title>f757f601 - kbuild: fix argument parsing in scripts/config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#f757f601</link>
        <description>kbuild: fix argument parsing in scripts/configThe script previously assumed --file was always the first argument,which caused issues when it appeared later. This patch updates theparsing logic to scan all arguments to find --file, sets the configfile correctly, and resets the argument list with the remainingcommands.It also fixes --refresh to respect --file by passing KCONFIG_CONFIG=$FNto make oldconfig.Signed-off-by: Seyediman Seyedarab &lt;imandevel@gmail.com&gt;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Sat, 01 Mar 2025 22:21:37 +0000</pubDate>
        <dc:creator>Seyediman Seyedarab &lt;imandevel@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>d39648eb - kconfig: config script: add a little user help</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#d39648eb</link>
        <description>kconfig: config script: add a little user helpGive the user a clue about the problem along with the 35 lines ofusage/help text.Signed-off-by: Randy Dunlap &lt;rdunlap@infradead.org&gt;Cc: Andi Kleen &lt;ak@linux.intel.com&gt;Cc: Masahiro Yamada &lt;masahiroy@kernel.org&gt;Cc: linux-kbuild@vger.kernel.orgSigned-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Sat, 19 Dec 2020 17:08:05 +0000</pubDate>
        <dc:creator>Randy Dunlap &lt;rdunlap@infradead.org&gt;</dc:creator>
    </item>
<item>
        <title>c25ce589 - tweewide: Fix most Shebang lines</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#c25ce589</link>
        <description>tweewide: Fix most Shebang linesChange every shebang which does not need an argument to use /usr/bin/env.This is needed as not every distro has everything under /usr/bin,sometimes not even bash.Signed-off-by: Finn Behrens &lt;me@kloenk.de&gt;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Mon, 23 Nov 2020 14:15:33 +0000</pubDate>
        <dc:creator>Finn Behrens &lt;me@kloenk.de&gt;</dc:creator>
    </item>
<item>
        <title>e461bc9f - scripts/config: allow colons in option strings for sed</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#e461bc9f</link>
        <description>scripts/config: allow colons in option strings for sedSed broke on some strings as it used colon as a separator.I made it more robust by using \001, which is legit POSIX AFAIK.E.g. ./config --set-str CONFIG_USBNET_DEVADDR &quot;de:ad:be:ef:00:01&quot;failed with: sed: -e expression #1, char 55: unknown option to `s&apos;Signed-off-by: Jeremie Francois (on alpha) &lt;jeremie.francois@gmail.com&gt;Signed-off-by: Masahiro Yamada &lt;masahiroy@kernel.org&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Fri, 10 Apr 2020 16:57:40 +0000</pubDate>
        <dc:creator>Jeremie Francois (on alpha) &lt;jeremie.francois@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>b2441318 - License cleanup: add SPDX GPL-2.0 license identifier to files with no license</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#b2441318</link>
        <description>License cleanup: add SPDX GPL-2.0 license identifier to files with no licenseMany source files in the tree are missing licensing information, whichmakes it harder for compliance tools to determine the correct license.By default all files without license information are under the defaultlicense of the kernel, which is GPL version 2.Update the files which contain no license information with the &apos;GPL-2.0&apos;SPDX license identifier.  The SPDX identifier is a legally bindingshorthand, which can be used instead of the full boiler plate text.This patch is based on work done by Thomas Gleixner and Kate Stewart andPhilippe Ombredanne.How this work was done:Patches were generated and checked against linux-4.14-rc6 for a subset ofthe use cases: - file had no licensing information it it. - file was a */uapi/* one with no licensing information in it, - file was a */uapi/* one with existing licensing information,Further patches will be generated in subsequent months to fix up caseswhere non-standard license headers were used, and references to licensehad to be inferred by heuristics based on keywords.The analysis to determine which SPDX License Identifier to be applied toa file was done in a spreadsheet of side by side results from of theoutput of two independent scanners (ScanCode &amp; Windriver) producing SPDXtag:value files created by Philippe Ombredanne.  Philippe prepared thebase worksheet, and did an initial spot review of a few 1000 files.The 4.13 kernel was the starting point of the analysis with 60,537 filesassessed.  Kate Stewart did a file by file comparison of the scannerresults in the spreadsheet to determine which SPDX license identifier(s)to be applied to the file. She confirmed any determination that was notimmediately clear with lawyers working with the Linux Foundation.Criteria used to select files for SPDX license identifier tagging was: - Files considered eligible had to be source code files. - Make and config files were included as candidates if they contained &gt;5   lines of source - File already had some variant of a license header in it (even if &lt;5   lines).All documentation files were explicitly excluded.The following heuristics were used to determine which SPDX licenseidentifiers to apply. - when both scanners couldn&apos;t find any license traces, file was   considered to have no license information in it, and the top level   COPYING file license applied.   For non */uapi/* files that summary was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0                                              11139   and resulted in the first patch in this series.   If that file was a */uapi/* path one, it was &quot;GPL-2.0 WITH   Linux-syscall-note&quot; otherwise it was &quot;GPL-2.0&quot;.  Results of that was:   SPDX license identifier                            # files   ---------------------------------------------------|-------   GPL-2.0 WITH Linux-syscall-note                        930   and resulted in the second patch in this series. - if a file had some form of licensing information in it, and was one   of the */uapi/* ones, it was denoted with the Linux-syscall-note if   any GPL family license was found in the file or had no licensing in   it (per prior point).  Results summary:   SPDX license identifier                            # files   ---------------------------------------------------|------   GPL-2.0 WITH Linux-syscall-note                       270   GPL-2.0+ WITH Linux-syscall-note                      169   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-2-Clause)    21   ((GPL-2.0 WITH Linux-syscall-note) OR BSD-3-Clause)    17   LGPL-2.1+ WITH Linux-syscall-note                      15   GPL-1.0+ WITH Linux-syscall-note                       14   ((GPL-2.0+ WITH Linux-syscall-note) OR BSD-3-Clause)    5   LGPL-2.0+ WITH Linux-syscall-note                       4   LGPL-2.1 WITH Linux-syscall-note                        3   ((GPL-2.0 WITH Linux-syscall-note) OR MIT)              3   ((GPL-2.0 WITH Linux-syscall-note) AND MIT)             1   and that resulted in the third patch in this series. - when the two scanners agreed on the detected license(s), that became   the concluded license(s). - when there was disagreement between the two scanners (one detected a   license but the other didn&apos;t, or they both detected different   licenses) a manual inspection of the file occurred. - In most cases a manual inspection of the information in the file   resulted in a clear resolution of the license that should apply (and   which scanner probably needed to revisit its heuristics). - When it was not immediately clear, the license identifier was   confirmed with lawyers working with the Linux Foundation. - If there was any question as to the appropriate license identifier,   the file was flagged for further research and to be revisited later   in time.In total, over 70 hours of logged manual review was done on thespreadsheet to determine the SPDX license identifiers to apply to thesource files by Kate, Philippe, Thomas and, in some cases, confirmationby lawyers working with the Linux Foundation.Kate also obtained a third independent scan of the 4.13 code base fromFOSSology, and compared selected files where the other two scannersdisagreed against that SPDX file, to see if there was new insights.  TheWindriver scanner is based on an older version of FOSSology in part, sothey are related.Thomas did random spot checks in about 500 files from the spreadsheetsfor the uapi headers and agreed with SPDX license identifier in thefiles he inspected. For the non-uapi files Thomas did random spot checksin about 15000 files.In initial set of patches against 4.14-rc6, 3 files were found to havecopy/paste license identifier errors, and have been fixed to reflect thecorrect identifier.Additionally Philippe spent 10 hours this week doing a detailed manualinspection and review of the 12,461 patched files from the initial patchversion early this week with: - a full scancode scan run, collecting the matched texts, detected   license ids and scores - reviewing anything where there was a license detected (about 500+   files) to ensure that the applied SPDX license was correct - reviewing anything where there was no detection but the patch license   was not GPL-2.0 WITH Linux-syscall-note to ensure that the applied   SPDX license was correctThis produced a worksheet with 20 files needing minor correction.  Thisworksheet was then exported into 3 different .csv files for thedifferent types of files to be modified.These .csv files were then reviewed by Greg.  Thomas wrote a script toparse the csv files and add the proper SPDX tag to the file, in theformat that the file expected.  This script was further refined by Gregbased on the output to detect more types of files automatically and todistinguish between header and source .c files (which need differentcomment types.)  Finally Greg ran the script using the .csv files togenerate the patches.Reviewed-by: Kate Stewart &lt;kstewart@linuxfoundation.org&gt;Reviewed-by: Philippe Ombredanne &lt;pombredanne@nexb.com&gt;Reviewed-by: Thomas Gleixner &lt;tglx@linutronix.de&gt;Signed-off-by: Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Wed, 01 Nov 2017 14:07:57 +0000</pubDate>
        <dc:creator>Greg Kroah-Hartman &lt;gregkh@linuxfoundation.org&gt;</dc:creator>
    </item>
<item>
        <title>7eb6e340 - kbuild: trivial - remove trailing empty lines</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#7eb6e340</link>
        <description>kbuild: trivial - remove trailing empty linesSigned-off-by: Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Thu, 29 May 2014 05:12:29 +0000</pubDate>
        <dc:creator>Masahiro Yamada &lt;yamada.m@jp.panasonic.com&gt;</dc:creator>
    </item>
<item>
        <title>86eb7818 - scripts/config: fix variable substitution command</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#86eb7818</link>
        <description>scripts/config: fix variable substitution commandCommit 229455bc02b87f7128f190c4491b4ceffff38648 accidentally changed theseparator between sed `s&apos; command and its parameters from &apos;:&apos; to &apos;/&apos;.Revert this change.Reported-and-tested-by: Linus Walleij &lt;linus.walleij@linaro.org&gt;Signed-off-by: Clement Chauplannaz &lt;chauplac@gmail.com&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Fri, 13 Sep 2013 08:45:13 +0000</pubDate>
        <dc:creator>Clement Chauplannaz &lt;chauplac@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>83e8b90e - scripts/config: use sed&apos;s POSIX interface</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#83e8b90e</link>
        <description>scripts/config: use sed&apos;s POSIX interfaceScript `config&apos; relies on extensions of `GNU sed&apos;, and is thus notworking on all Unixes:  - in-place edition of files (-i), which can be replaced with    a temporary file;  - extended-regexps (-r), which can be split into basic regexps;  - single-line calls to `a&apos; command, while some implementations    require a leading newline before the parameter.Rewrite calls to `sed&apos; to comply with POSIX interface, and move themto helper functions.Signed-off-by: Clement Chauplannaz &lt;chauplac@gmail.com&gt;Tested-by: &quot;Yann E. MORIN&quot; &lt;yann.morin.1998@free.fr&gt;Reviewed-by: &quot;Yann E. MORIN&quot; &lt;yann.morin.1998@free.fr&gt;Signed-off-by: Yann E. MORIN &lt;yann.morin.1998@free.fr&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Sat, 13 Jul 2013 14:36:56 +0000</pubDate>
        <dc:creator>Clement Chauplannaz &lt;chauplac@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>73877785 - scripts/config: replace hard-coded script name by a dynamic value</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#73877785</link>
        <description>scripts/config: replace hard-coded script name by a dynamic valueThe script `config&apos; prints its name in usage() function. It is currentlyhard-coded to value `config&apos;. However, the script may be reused undera different name in contexts other than the Linux Kernel.Replace the hard-coded value `config&apos; by the name of the script at runtime.Signed-off-by: Clement Chauplannaz &lt;chauplac@gmail.com&gt;Acked-by: Andi Kleen &lt;ak@linux.intel.com&gt;Signed-off-by: Yann E. MORIN &lt;yann.morin.1998@free.fr&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Sun, 12 May 2013 19:08:51 +0000</pubDate>
        <dc:creator>Clement Chauplannaz &lt;chauplac@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>57a9c760 - scripts/config: fix assignment of parameters for short version of --*-after options</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#57a9c760</link>
        <description>scripts/config: fix assignment of parameters for short version of --*-after optionsWhen --*-after options are used, two parameters are parsed from thecommand-line before the adequate function is called:  - the `before&apos; option, after which the new option will be inserted,  - the name of the option to enable/disable/modularise.With the short version of --*-after options (namely -E, -D, -M), theparsing step is not performed which leads to processing unset variables.Add options -E, -D, -M to the test that triggers assignment of parametersfor --*-after options.Signed-off-by: Clement Chauplannaz &lt;chauplac@gmail.com&gt;Acked-by: Andi Kleen &lt;ak@linux.intel.com&gt;Signed-off-by: Yann E. MORIN &lt;yann.morin.1998@free.fr&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Sun, 12 May 2013 19:08:52 +0000</pubDate>
        <dc:creator>Clement Chauplannaz &lt;chauplac@gmail.com&gt;</dc:creator>
    </item>
<item>
        <title>c6ba8d06 - scripts/config: Fix wrong &quot;shift&quot; for --keep-case</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#c6ba8d06</link>
        <description>scripts/config: Fix wrong &quot;shift&quot; for --keep-caseRemove wrong &quot;shift&quot; for --keep-case. There is always &quot;shift&quot; atbeginning of while-loop. No need &quot;shift&quot; at --keep-case just before&quot;continue&quot; to process next argument.Now the following works as expected:./scripts/config -e aAa -k -e bBb -e cCc &amp;&amp; tail -3 .configCONFIG_AAA=yCONFIG_bBb=yCONFIG_cCc=ySigned-off-by: Hiroshi Doyu &lt;hdoyu@nvidia.com&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Fri, 14 Dec 2012 06:47:59 +0000</pubDate>
        <dc:creator>Hiroshi Doyu &lt;hdoyu@nvidia.com&gt;</dc:creator>
    </item>
<item>
        <title>1925a276 - scripts/config: fix double-quotes un-escaping</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#1925a276</link>
        <description>scripts/config: fix double-quotes un-escapingWhen reporting a string value, only the first double-quote wasun-escaped. We need to un-escape all escaped double-quotes.Signed-off-by: &quot;Yann E. MORIN&quot; &lt;yann.morin.1998@free.fr&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Sun, 15 Jul 2012 20:37:35 +0000</pubDate>
        <dc:creator>Yann E. MORIN &lt;yann.morin.1998@free.fr&gt;</dc:creator>
    </item>
<item>
        <title>d5bfb6b3 - scripts/config: add option to undef a symbol</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#d5bfb6b3</link>
        <description>scripts/config: add option to undef a symbolIt is currently possible to enable, disable or modularisea symbol. Also, an undefined symbol is reported as such.Add a new command to undefine a symbol, by removing thecorresponding line from the .config file.Signed-off-by: &quot;Yann E. MORIN&quot; &lt;yann.morin.1998@free.fr&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Thu, 07 Jun 2012 23:48:57 +0000</pubDate>
        <dc:creator>Yann E. MORIN &lt;yann.morin.1998@free.fr&gt;</dc:creator>
    </item>
<item>
        <title>f5ef2f7b - scripts/config: allow alternate prefix to config option symbol</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#f5ef2f7b</link>
        <description>scripts/config: allow alternate prefix to config option symbolWhile the Linux kernel uses &apos;CONFIG_&apos; as a prefix to the config optionssymbols, many projects that use kconfig may use different prefixes, oreven none at all.If the CONFIG_ environment variable is set, use it as the prefix (emptyis a valid prefix). Otherwise, use the default prefix &apos;CONFIG_&apos;.This matches the support for alternate prefixes in scripts/kconfig/lkc.h,which uses the same logic (albeit with a C define instead of an environmentvariable).Signed-off-by: &quot;Yann E. MORIN&quot; &lt;yann.morin.1998@free.fr&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Thu, 07 Jun 2012 23:48:56 +0000</pubDate>
        <dc:creator>Yann E. MORIN &lt;yann.morin.1998@free.fr&gt;</dc:creator>
    </item>
<item>
        <title>4edc7e32 - scripts/config: add option to not upper-case symbols</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#4edc7e32</link>
        <description>scripts/config: add option to not upper-case symbolsCurrently, scripts/config mangles the config option symbols to alwaysbe upper-case.While the Linux kernel almost exclusively uses upper-case symbols, thereare still a few symbols with lower-case which this script can not handle:  $ grep -r -E &apos;^[[:space:]]*config[[:space:]]+[^[:space:]]*[[:lower:]][^[:space:]=.]*$&apos; . |wc -l  173(that&apos;s roughly 1.3% of the symbols in 3.5-rc1)Eg.:  ./arch/arm/Kconfig:config VFPv3  ./arch/powerpc/platforms/Kconfig.cputype:config 40x  ./arch/x86/Kconfig:config SCx200HR_TIMER  ./drivers/video/console/Kconfig:config FONT_8x8  ./drivers/video/Kconfig:config NTSC_640x480Also, other projects that use kconfig may allow for lower- or mixed-casesymbols, and may find easier to reuse this script than implement eachtheir own (potentially flawed) logic. For such a use-case, see:    http://marc.info/?l=linux-kbuild&amp;m=133409932115848&amp;w=2This patch adds a new option to keep the given case, and keep the currentdefault to upper-case the symbols.Signed-off-by: &quot;Yann E. MORIN&quot; &lt;yann.morin.1998@free.fr&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Thu, 07 Jun 2012 23:48:55 +0000</pubDate>
        <dc:creator>Yann E. MORIN &lt;yann.morin.1998@free.fr&gt;</dc:creator>
    </item>
<item>
        <title>d6686da8 - scripts/config: properly report and set string options</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#d6686da8</link>
        <description>scripts/config: properly report and set string optionsCurrently, scripts/config removes the leading double-quote fromstring options, but leaves the trailing double-quote.Also, double-quotes in a string are escaped, but scripts/configdoes not unescape those when printingFinally, scripts/config does not escape double-quotes when settingstring options.Eg. the current behavior:    $ grep -E &apos;^CONFIG_FOO=&apos; .config    CONFIG_FOO=&quot;Bar \&quot;Buz\&quot; Meh&quot;    $ ./scripts/config -s FOO    Bar \&quot;Buz\&quot; Meh&quot;    $ ./scripts/config --set-str FOO &apos;Alpha &quot;Bravo&quot; Charlie&apos;    $ grep -E &apos;^CONFIG_FOO=&apos; .config    CONFIG_FOO=&quot;Alpha &quot;Bravo&quot; Charlie&quot;Fix those three, giving this new behavior:    $ grep -E &apos;^CONFIG_FOO=&apos; .config    CONFIG_FOO=&quot;Bar \&quot;Buz\&quot; Meh&quot;    $ ./scripts/config -s FOO    Bar &quot;Buz&quot; Meh    $ ./scripts/config --set-str FOO &apos;Alpha &quot;Bravo&quot; Charlie&apos;    $ grep -E &apos;^CONFIG_FOO=&apos; .config    CONFIG_FOO=&quot;Alpha \&quot;Bravo\&quot; Charlie&quot;Signed-off-by: &quot;Yann E. MORIN&quot; &lt;yann.morin.1998@free.fr&gt;Acked-by: Andi Kleen &lt;andi@firstfloor.org&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Mon, 09 Apr 2012 12:49:10 +0000</pubDate>
        <dc:creator>Yann E. MORIN &lt;yann.morin.1998@free.fr&gt;</dc:creator>
    </item>
<item>
        <title>f0a6332c - kbuild: add numeric --set-val option to scripts/config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#f0a6332c</link>
        <description>kbuild: add numeric --set-val option to scripts/configAdd new option to scripts/config for changing .config numeric valuesAcked-by: Linus Walleij &lt;linus.walleij@stericsson.com&gt;Signed-off-by: Jonas Aaberg &lt;jonas.aberg@stericsson.com&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Wed, 15 Dec 2010 07:37:00 +0000</pubDate>
        <dc:creator>Jonas Aaberg &lt;jonas.aberg@stericsson.com&gt;</dc:creator>
    </item>
<item>
        <title>45f53cc9 - Kconfig: fix single letter command in scripts/config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#45f53cc9</link>
        <description>Kconfig: fix single letter command in scripts/configThe one letter commands in scripts/config didn&apos;t work and alwaysprinted usage. Fix this here.Cc: erick@openchill.orgReported-by: erick@openchill.orgSigned-off-by: Andi Kleen &lt;ak@linux.intel.com&gt;Signed-off-by: Michal Marek &lt;mmarek@suse.cz&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Fri, 05 Nov 2010 11:06:05 +0000</pubDate>
        <dc:creator>Andi Kleen &lt;ak@linux.intel.com&gt;</dc:creator>
    </item>
<item>
        <title>1f990cf9 - kbuild: add generic --set-str option to scripts/config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#1f990cf9</link>
        <description>kbuild: add generic --set-str option to scripts/configSigned-off-by: Michal Marek &lt;mmarek@suse.cz&gt;Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Mon, 25 May 2009 14:43:27 +0000</pubDate>
        <dc:creator>Michal Marek &lt;mmarek@suse.cz&gt;</dc:creator>
    </item>
<item>
        <title>47312d2c - kbuild: simplify argument loop in scripts/config</title>
        <link>http://172.16.0.5:8080/history/linux-6.15/scripts/config#47312d2c</link>
        <description>kbuild: simplify argument loop in scripts/configSigned-off-by: Michal Marek &lt;mmarek@suse.cz&gt;Signed-off-by: Sam Ravnborg &lt;sam@ravnborg.org&gt;

            List of files:
            /linux-6.15/scripts/config</description>
        <pubDate>Mon, 25 May 2009 14:43:25 +0000</pubDate>
        <dc:creator>Michal Marek &lt;mmarek@suse.cz&gt;</dc:creator>
    </item>
</channel>
</rss>
