)]}'
{
  "log": [
    {
      "commit": "e981b060767b3c4ac9393ad8d2558d648e35dfcb",
      "tree": "9c05eaec3072be3645dda61d35085d152b9d5954",
      "parents": [
        "3c955b407a084810f57260d61548cc92c14bc627",
        "da5cabf80e2433131bf0ed8993abc0f7ea618c73"
      ],
      "author": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Fri Aug 20 13:53:08 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Fri Aug 20 13:53:08 2010 +0200"
      },
      "message": "Merge commit \u0027v2.6.36-rc1\u0027 into kbuild/rc-fixes\n"
    },
    {
      "commit": "3643f849d7da5c12da589beb03c12303fe79b841",
      "tree": "60cfbd4ee780bbcde2d7013a2ed8c1dc6ace42c0",
      "parents": [
        "84062dd3a6a045395a43de1d9adc9b8eb2d1426e"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Aug 14 14:40:00 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Sun Aug 15 00:32:13 2010 +0200"
      },
      "message": "kconfig: fix segfault when detecting recursive dependency\n\nFollowing sample Kconfig generated a segfault:\n\nconfig FOO\n        bool\n        select PERF_EVENTS if HAVE_HW_BREAKPOINT\n\nconfig PERF_EVENTS\n        bool\n\nconfig HAVE_HW_BREAKPOINT\n        bool\n        depends on PERF_EVENTS\n\nFix by reverting back to a valid property if there was no\nproperty on the stack of symbols.\n\nThe above pattern were seen in sh Kconfig.\nA fix for the Kconfig file has been sent to the sh folks.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "84062dd3a6a045395a43de1d9adc9b8eb2d1426e",
      "tree": "708038ff4d462f87fe6d3a26a99266172d9afd90",
      "parents": [
        "4418a2b904805814bbd14b555d6add6a175f49f3"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Aug 14 23:22:16 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Sun Aug 15 00:32:12 2010 +0200"
      },
      "message": "kconfig: fix savedefconfig with choice marked optional\n\nsavedefconfig failed to save the correct minimal config\nwhen it encountered a choice marked optional.\n\nConsider following minimal configuration:\n$cat Kconfig\nchoice\n\tprompt \"choice\"\n\toptional\n\nconfig A\n\tbool \"a\"\n\nconfig B\n\tbool \"b\"\n\nendchoice\n\n$cat .config | grep -v ^#\nCONFIG_A\u003dy\n\n$conf --savedefconfig\u003ddefconfig Kconfig\n\nwould before this fix result in an empty file, because\nkconfig would assume that CONFIG_A\u003dy is a default value.\nBut because the choice is optional the default is that\nboth A and B are \u003dn.\n\nFix so we handle optional choices correct.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "090b710e8a0b7fe6f4752c5a439261f955075ebc",
      "tree": "c85856f2955c3b0795db2c30ef0b334c0614e326",
      "parents": [
        "10041d2d14688e207d0d829095147aa82c1f211b",
        "4418a2b904805814bbd14b555d6add6a175f49f3"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Aug 13 17:56:27 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Aug 13 17:56:27 2010 -0700"
      },
      "message": "Merge branch \u0027kconfig\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6\n\n* \u0027kconfig\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6:\n  kconfig: Fix warning: ignoring return value of \u0027fgets\u0027\n  kconfig: Fix warning: ignoring return value of \u0027fwrite\u0027\n  nconfig: Fix segfault when menu is empty\n  kconfig: fix tristate choice with minimal config\n  kconfig: fix savedefconfig for tristate choices\n"
    },
    {
      "commit": "4418a2b904805814bbd14b555d6add6a175f49f3",
      "tree": "73b41b852845f4097c173eac657fd74811ca0505",
      "parents": [
        "bf5e327a300a9ac959a89440e7c67dc89f3bd804"
      ],
      "author": {
        "name": "Jean Sacren",
        "email": "sakiwit@gmail.com",
        "time": "Wed Aug 04 16:03:16 2010 -0600"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Fri Aug 13 00:40:35 2010 +0200"
      },
      "message": "kconfig: Fix warning: ignoring return value of \u0027fgets\u0027\n\nThis fix facilitates fgets() either it returns on success or on error or\nwhen end of file occurs.\n\nSigned-off-by: Jean Sacren \u003csakiwit@gmail.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "bf5e327a300a9ac959a89440e7c67dc89f3bd804",
      "tree": "c8be365e0580656dd049e23ef5814bbafe8d73f5",
      "parents": [
        "866af407dad3f2202e5d5d717ebd6156ccc33cdd"
      ],
      "author": {
        "name": "Jean Sacren",
        "email": "sakiwit@gmail.com",
        "time": "Wed Aug 04 16:01:02 2010 -0600"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Fri Aug 13 00:40:26 2010 +0200"
      },
      "message": "kconfig: Fix warning: ignoring return value of \u0027fwrite\u0027\n\nThis fix facilitates fwrite() in both confdata.c and expr.c, either it\nsucceeds in writing, or an error occurs, or the end of file is reached.\n\nSigned-off-by: Jean Sacren \u003csakiwit@gmail.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "866af407dad3f2202e5d5d717ebd6156ccc33cdd",
      "tree": "56e902d33f8e3dd814053f91bfd3c0a34aa8db6d",
      "parents": [
        "a64b44ead002ba15fdf841106a6fd344b8dd46d8"
      ],
      "author": {
        "name": "Andrej Gelenberg",
        "email": "andrej.gelenberg@udo.edu",
        "time": "Mon Aug 02 11:59:31 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Fri Aug 13 00:34:15 2010 +0200"
      },
      "message": "nconfig: Fix segfault when menu is empty\n\nnconf crush with segfault if press right arrow in empty menu.\n\nSigned-off-by: Andrej Gelenberg \u003candrej.gelenberg@udo.edu\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "a64b44ead002ba15fdf841106a6fd344b8dd46d8",
      "tree": "d5f3be005c10369a69ea1d968c790854f9d52a1a",
      "parents": [
        "801690caf1894d4f8b1277ca9f5dcf0bcf9b3f58"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Thu Aug 12 09:11:52 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Aug 12 10:55:02 2010 +0200"
      },
      "message": "kconfig: fix tristate choice with minimal config\n\nIf a minimal config did not specify the value\nof all choice values, the resulting configuration\ncould have wrong values.\n\nConsider following example:\nconfig M\n        def_bool y\n        option modules\nchoice\n        prompt \"choice list\"\nconfig A\n        tristate \"a\"\nconfig B\n\ttristate \"b\"\nendchoice\n\nWith a defconfig like this:\nCONFIG_M\u003dy\nCONFIG_A\u003dy\n\nThe resulting configuration would have\n\n    CONFIG_A\u003dm\n\nwhich was unexpected.\n\nThe problem was not not all choice values were set and thus\nkconfig calculated a wrong value.\n\nThe fix is to set all choice values when we\nread a defconfig files.\n\nconf_set_all_new_symbols() is refactored such that\nrandom choice values are now handled by a dedicated function.\nAnd new choice values are set by set_all_choice_values().\n\nThis was not the minimal fix, but the fix that resulted\nin the most readable code.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nReported-by: Arve Hjønnevåg \u003carve@android.com\u003e\nTested-by: Arve Hjønnevåg \u003carve@android.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "801690caf1894d4f8b1277ca9f5dcf0bcf9b3f58",
      "tree": "921c4d4a1b9ada1ef0822ac26c5da2dbb83bb5f3",
      "parents": [
        "7a996d3ab150bb0e1b71fa182f70199a703efdd1"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Thu Aug 12 09:11:51 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Aug 12 10:55:02 2010 +0200"
      },
      "message": "kconfig: fix savedefconfig for tristate choices\n\nsavedefconfig failed to save choice symbols equal to \u0027y\u0027\nfor tristate choices.\nThis resulted in this value being lost.\n\nIn particular is fixes an issue where\n\n\tmake ARCH\u003davr32 atngw100_defconfig\n\tmake ARCH\u003davr32 savedefconfig\n\tcp defconfig arch/avr32/configs/atngw100_defconfig\n\tmake ARCH\u003davr32 atngw100_defconfig\n\tdiff -u .config .config.old\n\nfailed to produce an identical .config.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "14828349719aa09845843477df8bad60792d18f3",
      "tree": "732774d0b5bd50ea4d2780c65aa8f0227c3ca467",
      "parents": [
        "31d1d48e199e99077fb30f6fb9a793be7bec756f"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Fri Aug 06 07:13:54 2010 +0200"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Aug 06 09:17:02 2010 -0700"
      },
      "message": "kconfig: fix make oldconfig\n\nLinus wrote:\n This seems to make \"make oldconfig\" a _lot_ more verbose than it\n used to be. In a very annoying way.\n\n I just did a quick git bisect. It\u0027s introduced by commit 4062f1a4c030\n (\"kconfig: use long options in conf\") by Sam Ravnborg. Apparently that\n thing is totally buggy, and doesn\u0027t just change the option names, but\n actively breaks them.\n\nThe old behaviour (from years ago) were reintroduced by accident.  Fix\nthis so we are back to the version that are silent if there is nothing\nto ask about.\n\nReported-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nReviewed-by: Michal Marek \u003cmmarek@suse.cz\u003e\nSigned-off-by: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\n"
    },
    {
      "commit": "f43100ae39bfeb757b75835ef61f0c2c46c99348",
      "tree": "620379bb9a2287975ee222c449cd69d31738096e",
      "parents": [
        "27b4a1a9eac8b0f8958da67e4abe025b96e1a293",
        "5e8e1cc0a1c36c8ff156ac1f04a16422bd4ed3ac"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Aug 05 14:20:14 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Thu Aug 05 14:20:14 2010 -0700"
      },
      "message": "Merge branch \u0027misc\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6\n\n* \u0027misc\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6:\n  scripts/dtc: Fix a resource leak\n  Documentation: fix ubuntu distro name\n  MAINTAINERS: Update kbuild git URLs\n  Add support for the C variable in the coccicheck script\n  Add scripts/coccinelle/deref_null.cocci\n  Add scripts/coccinelle/err_cast.cocci\n  Add scripts/coccinelle/resource_size.cocci\n  Add scripts/coccinelle/alloc/kzalloc-simple.cocci\n  Add scripts/coccinelle/alloc/drop_kmalloc_cast.cocci\n  Add Documentation/coccinelle.txt\n  Add a target to use the Coccinelle checker\n  scripts: decodecode: remove bashisms\n  Makefile: clarify a comment\n  checkkconfigsymbols.sh: Kconfig symbols sometimes have lowercase letters\n  scripts: add nconf into gitignore file\n"
    },
    {
      "commit": "7a996d3ab150bb0e1b71fa182f70199a703efdd1",
      "tree": "96a36947d90c9b96580899abd38cb3b70cd9d40b",
      "parents": [
        "7cf3d73b4360e91b14326632ab1aeda4cb26308d",
        "9fe6206f400646a2322096b56c59891d530e8d51"
      ],
      "author": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Aug 04 14:05:07 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Aug 04 14:05:07 2010 +0200"
      },
      "message": "Merge commit \u0027v2.6.35\u0027 into kbuild/kconfig\n\nConflicts:\n\tscripts/kconfig/Makefile\n"
    },
    {
      "commit": "7cf3d73b4360e91b14326632ab1aeda4cb26308d",
      "tree": "547bc52c631c9fb99ecd5c4be5ba25610505397a",
      "parents": [
        "49192f266ffa187bd7adaf5c2d881f85bd53e0ed"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Jul 31 23:35:34 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:32 2010 +0200"
      },
      "message": "kconfig: add savedefconfig\n\nsavedefconfig will save a minimal config to a file\nnamed \"defconfig\".\n\nThe config symbols are saved in the same order as\nthey appear in the menu structure so it should\nbe possible to map them to the relevant menus\nif desired.\n\nThe implementation was tested against several minimal\nconfigs for arm which was created using brute-force.\n\nThere was one regression related to default numbers\nwhich had their valid range further limited by another symbol.\n\nSample:\n\nconfig FOO\n\tint \"foo\"\n\tdefault 4\n\nconfig BAR\n\tint \"bar\"\n\trange 0 FOO\n\nIf FOO is set to 3 then BAR cannot take a value higher than 3.\nBut the current implementation will set BAR equal to 4.\n\nThis is seldomly used and the final configuration is OK,\nand the fix was non-trivial.\nSo it was documented in the code and left as is.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nAcked-by: Uwe Kleine-König \u003cu.kleine-koenig@pengutronix.de\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "49192f266ffa187bd7adaf5c2d881f85bd53e0ed",
      "tree": "c0187a389d50fd6a10e43bfd5dfb50c6393635b7",
      "parents": [
        "c252147de68cf58ba601278481e473dab432cee4"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Jul 31 23:35:33 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:32 2010 +0200"
      },
      "message": "kconfig: code refactoring in confdata.c\n\nAdd a a few local functions to avoid some code duplication\nNo functional changes.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "c252147de68cf58ba601278481e473dab432cee4",
      "tree": "d69910edf4c8fe795788aac65fb0e7d320b64c68",
      "parents": [
        "0748cb3e1fbd89c03a98c15e91ad65797981de77"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Jul 31 23:35:32 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:32 2010 +0200"
      },
      "message": "kconfig: refactor code in symbol.c\n\nMove logic to determine default for a choice to\na separate function.\nNo functional changes.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "0748cb3e1fbd89c03a98c15e91ad65797981de77",
      "tree": "89d2ad1c37d7ad9527d8a4c0ec5e7c11169fb185",
      "parents": [
        "d595cea62403db4e65b98a8bb96ff2b5205c7b82"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Jul 31 23:35:31 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:32 2010 +0200"
      },
      "message": "kconfig: add alldefconfig\n\nalldefconfig create a configuration with all values set\nto their default value (form the Kconfig files).\n\nThis may be useful when we try to use more sensible default\nvalues and may also be used in combination with\nthe minimal defconfigs.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "d595cea62403db4e65b98a8bb96ff2b5205c7b82",
      "tree": "8adee034859b15daf560ab0b72ba5816e6088885",
      "parents": [
        "59e89e3ddf8523be39a8e0a66bacbbdd6a72d069"
      ],
      "author": {
        "name": "Roman Zippel",
        "email": "zippel@linux-m68k.org",
        "time": "Sat Jul 31 23:35:30 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:31 2010 +0200"
      },
      "message": "kconfig: print more info when we see a recursive dependency\n\nConsider following kconfig file:\n\nconfig TEST1\n\tbool \"test 1\"\n\tdepends on TEST2\n\nconfig TEST2\n\tbool \"test 2\"\n\tdepends on TEST1\n\nPreviously kconfig would report:\n\nfoo:6:error: found recursive dependency: TEST2 -\u003e TEST1 -\u003e TEST2\n\nWith the following patch kconfig reports:\nfoo:5:error: recursive dependency detected!\nfoo:5:  symbol TEST2 depends on TEST1\nfoo:1:  symbol TEST1 depends on TEST2\n\nNote that we now report where the offending symbols are defined.\nThis can be a great help for complex situations involving\nseveral files.\n\nPatch is originally from Roman Zippel with a few adjustments by Sam.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "59e89e3ddf8523be39a8e0a66bacbbdd6a72d069",
      "tree": "b92301020fc8f41304e8e12ed5eb2a80846a3628",
      "parents": [
        "861b4ea4cc0eade661480f1ce197ae747f22a918"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Jul 31 23:35:29 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:31 2010 +0200"
      },
      "message": "kconfig: save location of config symbols\n\nWhen we add a new config symbol save the file/line\nso we later can refer to their location.\n\nThe information is saved as a property to a config symbol\nbecause we may have multiple definitions of the same symbol.\n\nThis has the side-effect that a symbol always has\nat least one property.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "861b4ea4cc0eade661480f1ce197ae747f22a918",
      "tree": "d74219b8e36235774cd99a7a61a0f53f4cb15c1d",
      "parents": [
        "ef61ca88c511154d6bead23c08f9a021cfdfeb01"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Jul 31 23:35:28 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:31 2010 +0200"
      },
      "message": "kconfig: change nonint_oldconfig to listnewconfig\n\nRename to a name that better match the other kconfig targets.\n\nlistnewconfig shall read as:\n\n- list new options compared to current configuration\n\nNew options are now written to stdout so one can redirect the output.\n\nDo not exit with an error code if there is new options.\n\nThese are feature changes compared to the original\nnonint_oldconfig - but as this feature has not yet been in a\nreleased kernel it should not matter.\n\nIt is still possible to do:\n\nmake listnewconfig\nlookup new config options in Kconfig*\nedit .config\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nCc: Aristeu Rozanski \u003caris@redhat.com\u003e\nAcked-by: Aristeu Rozanski \u003caris@redhat.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "ef61ca88c511154d6bead23c08f9a021cfdfeb01",
      "tree": "3fc66cf250df8eef33f015b040dc0f4d04844763",
      "parents": [
        "4062f1a4c030157216dc8932e27131975cf7253c"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Jul 31 23:35:27 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:31 2010 +0200"
      },
      "message": "kconfig: rename loose_nonint_oldconfig \u003d\u003e oldnoconfig\n\nRename target to something that fall more in line\nwith the other kconfig targets.\n\noldnoconfig shall read as:\n\n- read the old configuration and set all new options to no\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nCc: Aristeu Rozanski \u003caris@redhat.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "4062f1a4c030157216dc8932e27131975cf7253c",
      "tree": "4af07e49f6c48b20a38b5eff393c5d28dbdba833",
      "parents": [
        "ac1ffde1ba053db0266f886a15ed845a6628fcb0"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sat Jul 31 23:35:26 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Aug 03 13:49:31 2010 +0200"
      },
      "message": "kconfig: use long options in conf\n\nThe list of options supported by conf is growing\nand their abbreviation did not resemble anything usefull.\n\nSo drop the single letter options in favour of long options.\n\nThe long options are named equal to what we know from\nthe make target.\nThe internal implmentation was changed to match this,\nresulting in much more readable code.\n\nSupport for short options is dropped - no one is supposed\nto call this program direct anyway.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "ac1ffde1ba053db0266f886a15ed845a6628fcb0",
      "tree": "f5366e5c65c523c60a73b40a568bca3359a9dc69",
      "parents": [
        "1244b41d00eb60cb3d05220383bc9d15b9045fb4"
      ],
      "author": {
        "name": "Ulf Magnusson",
        "email": "ulfalizer.lkml@gmail.com",
        "time": "Tue Jul 27 21:57:43 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Jul 29 16:56:02 2010 +0200"
      },
      "message": "kconfig: fix MODULES-related bug in case of no .config\n\nThere seems to be a kconfig bug due to MODULES not always being\nevaluated if no .config is found. Take the following Kconfig as an\nexample:\n\nconfig MODULES\n\tdef_bool y\n\nconfig FOO\n\tdef_tristate m\n\nWith no .config, the following configuration is generated:\n\nCONFIG_MODULES\u003dy\nCONFIG_FOO\u003dy\n\nWith an empty .config, the following:\n\nCONFIG_MODULES\u003dy\nCONFIG_FOO\u003dm\n\nTristate choice statements can also exhibit the problem, due to having an\nimplicit rev_dep (select) containing \"m\".\n\nThe problem is that MODULES is never evaluted in conf_read_simple() unless\nthere\u0027s a .config. The following patch fixes this.\n\nSigned-off-by: Ulf Magnusson \u003culfalizer.lkml@gmail.com\u003e\nReviewed-by: WANG Cong \u003cxiyou.wangcong@gmail.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "1244b41d00eb60cb3d05220383bc9d15b9045fb4",
      "tree": "e2bbc9314704a86dd34d8043a862696d9948f3f5",
      "parents": [
        "0a28c47b8db8ff74d1bfbc5c5ad0100cea472351"
      ],
      "author": {
        "name": "Peter Korsgaard",
        "email": "jacmet@sunsite.dk",
        "time": "Thu Jul 22 14:24:57 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Mon Jul 26 15:40:52 2010 +0200"
      },
      "message": "kconfig: make randconfig fair for booleans\n\nGive boolean symbols a 50% chance of getting enabled, rather than 67%.\n\nSigned-off-by: Peter Korsgaard \u003cjacmet@sunsite.dk\u003e\nAcked-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "58f915a311c1eac464e0e1caca2f85a05b66c930",
      "tree": "b68c6b7e22b676da3d2a504a635469979d163e65",
      "parents": [
        "b003afe32f608b8d9f9a898b36514dfbf374fd3a"
      ],
      "author": {
        "name": "Stephen Boyd",
        "email": "bebarino@gmail.com",
        "time": "Fri Jul 23 00:04:14 2010 -0700"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Fri Jul 23 11:23:42 2010 +0200"
      },
      "message": "nconfig: Fix segfault when help contains special characters\n\nnconfig segfaults when help text contains the character \u0027%\u0027. For a quick\nexample, navigate to the kernel compression options and get the help for\nbzip2. Doing so triggers a call to mvwprintw() with a string containing\n\u0027%\u0027 and no extra arguments to fill in the specifier\u0027s value. Fix this\ncase by printing the literal string retrieved from the kconfig.\n\n #0  0x00002b52b6b11d83 in vfprintf () from /lib/libc.so.6\n #1  0x00002b52b6bad010 in __vsnprintf_chk () from /lib/libc.so.6\n #2  0x00002b52b623991b in _nc_printf_string () from\n /lib/libncursesw.so.5\n #3  0x00002b52b6234cff in vwprintw () from /lib/libncursesw.so.5\n #4  0x00002b52b6234db9 in mvwprintw () from /lib/libncursesw.so.5\n #5  0x00000000004151d8 in fill_window (win\u003d0x21b64c0,\n     text\u003d0x21b62b0 \"CONFIG_KERNEL_BZIP2:\\n\\nIts compression ratio and\n     speed is intermediate.\\nDecompression speed is slowest among the\n     three.  The kernel\\nsize is about 10% smaller with bzip2, in\n     comparison to gzip.\\nBzip2 us\"...)\n     at scripts/kconfig/nconf.gui.c:229\n #6  0x0000000000416335 in show_scroll_win (main_window\u003d0x21a5630,\n         title\u003d0x157fa30 \"Bzip2\",\n \t    text\u003d0x21b62b0 \"CONFIG_KERNEL_BZIP2:\\n\\nIts compression\n \t    ratio and speed is intermediate.\\nDecompression speed is\n \t    slowest among the three.  The kernel\\nsize is about 10%\n \t    smaller with bzip2, in comparison to gzip.\\nBzip2 us\"...)\n     at scripts/kconfig/nconf.gui.c:535\n #7  0x00000000004055b2 in show_help (menu\u003d0x157f9d0)\n         at scripts/kconfig/nconf.c:1257\n #8  0x0000000000405897 in conf_choice (menu\u003d0x157f130)\n \t    at scripts/kconfig/nconf.c:1321\n #9  0x0000000000405326 in conf (menu\u003d0x157d130) at\n \t    scripts/kconfig/nconf.c:1208\n #10 0x00000000004052e8 in conf (menu\u003d0xb434a0) at\n \t    scripts/kconfig/nconf.c:1203\n #11 0x0000000000406092 in main (ac\u003d2, av\u003d0x7fff96a93c38)\n\nCc: Michal Marek \u003cmmarek@suse.cz\u003e\nCc: Nir Tzachar \u003cnir.tzachar@gmail.com\u003e\nSigned-off-by: Stephen Boyd \u003cbebarino@gmail.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "0a28c47b8db8ff74d1bfbc5c5ad0100cea472351",
      "tree": "403f1aa1877d6cf74138dd7643387df65ae9220b",
      "parents": [
        "246cf9c26bf11f2bffbecea6e5bd222eee7b1df8"
      ],
      "author": {
        "name": "Jan Beulich",
        "email": "JBeulich@novell.com",
        "time": "Wed Jun 30 13:11:01 2010 +0100"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Jul 08 14:38:14 2010 +0200"
      },
      "message": "kconfig: Don\u0027t write invisible choice values\n\nThis makes it so \"make oldconfig\" really prompts for any choice where\noptions that previously weren\u0027t visible just became so. Previously one\nwould have to remember to go over all choice values and check whether\nsome that previously couldn\u0027t be selected now can be.\n\nSigned-off-by: Jan Beulich \u003cjbeulich@novell.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "246cf9c26bf11f2bffbecea6e5bd222eee7b1df8",
      "tree": "29ddd2eaa165dbad9e8760866d782f122f579118",
      "parents": [
        "60c8eca69f7fb2820677a635d921866f66727fcb"
      ],
      "author": {
        "name": "Catalin Marinas",
        "email": "catalin.marinas@arm.com",
        "time": "Tue Jun 08 17:25:57 2010 +0100"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Fri Jul 02 14:53:09 2010 +0200"
      },
      "message": "kbuild: Warn on selecting symbols with unmet direct dependencies\n\nThe \"select\" statement in Kconfig files allows the enabling of options\neven if they have unmet direct dependencies (i.e. \"depends on\" expands\nto \"no\"). Currently, the \"depends on\" clauses are used in calculating\nthe visibility but they do not affect the reverse dependencies in any\nway.\n\nThe patch introduces additional tracking of the \"depends on\" statements\nand prints a warning on selecting an option if its direct dependencies\nare not met.\n\nSigned-off-by: Catalin Marinas \u003ccatalin.marinas@arm.com\u003e\nCc: Sam Ravnborg \u003csam@ravnborg.org\u003e\nCc: Arnd Bergmann \u003carnd@arndb.de\u003e\nCc: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nCc: Linus Torvalds \u003ctorvalds@linux-foundation.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "60c8eca69f7fb2820677a635d921866f66727fcb",
      "tree": "118176c824f125ed4f36a469188cdd11b0967874",
      "parents": [
        "e7401d8321f89a3785a395ba307c720e2b390f96"
      ],
      "author": {
        "name": "Justin P. Mattock",
        "email": "justinmattock@gmail.com",
        "time": "Fri Jun 11 13:41:04 2010 -0700"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Sat Jun 12 00:07:50 2010 +0200"
      },
      "message": "scripts:conf.c Fix warning: variable \u0027type\u0027 set but not used\n\nNot sure if this is correct or not, but with\nmake menuconfig\n  HOSTCC  scripts/kconfig/conf.o\nscripts/kconfig/conf.c: In function \u0027conf_sym\u0027:\nscripts/kconfig/conf.c:159:6: warning: variable \u0027type\u0027 set but not used\nscripts/kconfig/conf.c: In function \u0027conf_choice\u0027:\nscripts/kconfig/conf.c:231:6: warning: variable \u0027type\u0027 set but not used\n  HOSTLD  scripts/kconfig/mconf\n\nI get this using gcc 4.6.0 the below change fixes this form me.\n\nSigned-off-by: Justin P. Mattock \u003cjustinmattock@gmail.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "c1518f12bab97a6d409a25aaccb02dc8895800f3",
      "tree": "3ab9b4f232588fd11feda8705cc87597a2bcb72d",
      "parents": [
        "a094c0afc3515aaf962dd0793f3b23fe67e6b192",
        "cbab05f041a4cff6ca15856bdd35238b282b64eb"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Jun 04 15:37:21 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Fri Jun 04 15:37:21 2010 -0700"
      },
      "message": "Merge branch \u0027rc-fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6\n\n* \u0027rc-fixes\u0027 of git://git.kernel.org/pub/scm/linux/kernel/git/mmarek/kbuild-2.6:\n  gconfig: fix build failure on fedora 13\n"
    },
    {
      "commit": "e7401d8321f89a3785a395ba307c720e2b390f96",
      "tree": "8ed62dbaf1415de5da9e0382fc1ac632850423b0",
      "parents": [
        "42ef223c4a0f6e34e13ccb503b423ebdc04878e1"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Thu Jun 03 15:24:57 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Jun 03 13:41:02 2010 +0200"
      },
      "message": "menuconfig: truncate list items\n\nTruncate list items to fit in a single line, otherwise those items\nwhich have long prompts will cover some other items.\n\nThis follows the behavior of menubox.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "42ef223c4a0f6e34e13ccb503b423ebdc04878e1",
      "tree": "ff7b125e5423e4e5bff00ae246aa288efae5090b",
      "parents": [
        "39a4897c1bb66e8a36043c105d7fd73d8b32b480"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Thu Jun 03 15:24:39 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Jun 03 13:41:02 2010 +0200"
      },
      "message": "menuconfig: fix to center checklist correctly in a corner case\n\nRun:\n\tmake ARCH\u003darm menuconfig\n\nAnd then select \"System Type\" -\u003e \"ARM system type\". The kconfig\n\"choice\" menu at this point looks empty.\n\nIt\u0027s because config ARCH_S3C2410 has a long prompt:\n\nconfig ARCH_S3C2410\n        bool \"Samsung S3C2410, S3C2412, S3C2413, S3C2416, S3C2440, S3C2442, S3C2443, S3C2450\"\n\t...\n\nmenuconfig centers the checklist according to this prompt without\nconsidering the width of the list, and then things get wrong.\n\nReported-by: Nobin Mathew \u003cnobin.mathew@gmail.com\u003e\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "073ed10363a89cfcc04b7c4d9a9626c5ed48852c",
      "tree": "afbb56a39ee2a7eb229b3b41aa66833c1d8f6842",
      "parents": [
        "64ffc9ff424c65adcffe7d590018cc75e2d5d42a"
      ],
      "author": {
        "name": "Américo Wang",
        "email": "xiyou.wangcong@gmail.com",
        "time": "Thu Jun 03 10:50:39 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Jun 03 10:12:40 2010 +0200"
      },
      "message": "scripts: add nconf into gitignore file\n\nscripts/kconfig/nconf is generated by \u0027make nconfig\u0027,\nadd it into .gitignore.\n\nSigned-off-by: WANG Cong \u003cxiyou.wangcong@gmail.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "cbab05f041a4cff6ca15856bdd35238b282b64eb",
      "tree": "5886895e227e41d67f4c655ecef15094e430d4f1",
      "parents": [
        "07105202bdebf6e9a4c72c634cf90398abfad870"
      ],
      "author": {
        "name": "Richard Kennedy",
        "email": "richard@rsk.demon.co.uk",
        "time": "Thu May 27 10:22:28 2010 +0100"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Jun 03 10:05:18 2010 +0200"
      },
      "message": "gconfig: fix build failure on fedora 13\n\nMaking gconfig fails on fedora 13 as the linker cannot resolve dlsym.\n\nAdding libdl to the link command fixes this.\n\nmake shows this error :-\n    /usr/bin/ld: scripts/kconfig/kconfig_load.o: undefined reference to symbol \u0027dlsym@@GLIBC_2.2.5\u0027\n    /usr/bin/ld: note: \u0027dlsym@@GLIBC_2.2.5\u0027 is defined in DSO /lib64/libdl.so.2 so try adding it to the linker command line\n    /lib64/libdl.so.2: could not read symbols: Invalid operation\n\ntested on x86_64 fedora 13.\n\nSigned-off-by: Richard Kennedy \u003crichard@rsk.demon.co.uk\u003e\nReviewed-by: WANG Cong \u003cxiyou.wangcong@gmail.com\u003e\nCc: \u003cstable@kernel.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "39a4897c1bb66e8a36043c105d7fd73d8b32b480",
      "tree": "59f1133eb708907da8a9e37cce8e4f3f0c7b93a8",
      "parents": [
        "120d63e63319aceea5d127f0de93bd7fe1cbaba1"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Mon May 10 16:33:41 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:10:33 2010 +0200"
      },
      "message": "xconfig: add support to show hidden options which have prompts\n\nThis feature has been supported in menuconfig and gconfig, so\nhere add it to xconfig.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "120d63e63319aceea5d127f0de93bd7fe1cbaba1",
      "tree": "b6acd759d3c9630ddb20c06d03cd9f7c55679814",
      "parents": [
        "c1f96f091ee146836dd73ecce531f8e0a170cfca"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri May 07 13:58:21 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:10:33 2010 +0200"
      },
      "message": "xconfig: remove unused function\n\nRemove ConfigInfoView::setSource().\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "c1f96f091ee146836dd73ecce531f8e0a170cfca",
      "tree": "99419b51a9638aebab16c03db27d9989813371ce",
      "parents": [
        "c10d03caf303d91da07c7f093a4822453c13f9b1"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri May 07 13:58:04 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:10:33 2010 +0200"
      },
      "message": "xconfig: clean up\n\n@ok is a pointer to a bool var, so we should check the value of\n*ok. But actually we don\u0027t need to check it, so just remove the\nif statement.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "c10d03caf303d91da07c7f093a4822453c13f9b1",
      "tree": "ca71ab60ab3e920f6252874dc94940197c22e7ed",
      "parents": [
        "e0bb7fe2d7e6d7cfa6135fa9ca5634343fff63b5"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri May 07 13:57:49 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:10:33 2010 +0200"
      },
      "message": "gconfig: fix null pointer warning\n\nIn gconfig if you enable \"Show all options\", you\u0027ll see some \"(null)\"\nconfig options, and clicking those options triggers a warning:\n\n(gconf:9368): Gtk-CRITICAL **: gtk_text_buffer_insert_with_tags: assertion `text !\u003d NULL\u0027 failed\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nAcked-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "e0bb7fe2d7e6d7cfa6135fa9ca5634343fff63b5",
      "tree": "7edaf84e44fc2289ee4dac78ee5432b62dce68b8",
      "parents": [
        "f9447c49390f4935e19e89c88ce4a1311c080dbc"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri May 07 13:57:35 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:10:32 2010 +0200"
      },
      "message": "gconfig: fix to tag NEW symbols correctly\n\nThe logic should be reversed.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "f9447c49390f4935e19e89c88ce4a1311c080dbc",
      "tree": "1ce4aec9b92c88487d5a50d8390350399bbc9ff7",
      "parents": [
        "3fb9acb3297f5e1170f3e45a18cc3f8b1fd1901a"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri May 07 13:57:22 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:10:32 2010 +0200"
      },
      "message": "menuconfig: improive help text a bit\n\nSuggested-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nAcked-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "3fb9acb3297f5e1170f3e45a18cc3f8b1fd1901a",
      "tree": "0adcadfbee2848722c95504c49df7e5f96c562a4",
      "parents": [
        "70ed074718a6704ac2f82d014f372ba25c42ba12"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri May 07 13:57:07 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:10:32 2010 +0200"
      },
      "message": "kconfig: fix to tag NEW symbols correctly\n\nThose configs are not new:\n\n  $ cat .config\n  ...\n  CONFIG_NAMESPACES\u003dy\n  ...\n  CONFIG_BLOCK\u003dy\n  ...\n\nBut are tagged as NEW:\n\n  $ yes \"\" | make config \u003e myconf\n  $ cat myconf | grep \u0027(NEW)\u0027\n  Namespaces support (NAMESPACES) [Y/?] (NEW) y\n  ...\n  Enable the block layer (BLOCK) [Y/?] (NEW) y\n  ...\n\nYou can also notice this bug when using gconfig/xconfig.\n\nIt\u0027s because the SYMBOL_DEF_USER bit of an invisible symbol is cleared\nwhen the config file is read:\n\nint conf_read(const char *name)\n{\n\t...\n\tfor_all_symbols(i, sym) {\n\t\tif (sym_has_value(sym) \u0026\u0026 !sym_is_choice_value(sym)) {\n\t\t\t/* Reset values of generates values, so they\u0027ll appear\n\t\t\t * as new, if they should become visible, but that\n\t\t\t * doesn\u0027t quite work if the Kconfig and the saved\n\t\t\t * configuration disagree.\n\t\t\t */\n\t\t\tif (sym-\u003evisible \u003d\u003d no \u0026\u0026 !conf_unsaved)\n\t\t\t\tsym-\u003eflags \u0026\u003d ~SYMBOL_DEF_USER;\n\t...\n}\n\nBut a menu item which represents an invisible symbol is still\nvisible, if it\u0027s sub-menu is visible, so its SYMBOL_DEF_USER\nbit should be set to indicate it\u0027s not NEW.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "70ed074718a6704ac2f82d014f372ba25c42ba12",
      "tree": "e5ece7af4dec24c16aba02bbeaf648ae2e83ec38",
      "parents": [
        "b040b44c35c251882da8488a5f038435a531312c"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri May 07 13:56:50 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:10:32 2010 +0200"
      },
      "message": "kconfig: print the range of integer/hex symbol in help text\n\nWithout this patch, one has to refer to the Kconfig file to find\nout the range of an integer/hex symbol.\n\n  │ Symbol: NR_CPUS [\u003d4]\n  │ Type  : integer\n  │ Range : [2 8]\n  │ Prompt: Maximum number of CPUs\n  │   Defined at arch/x86/Kconfig:761\n  │   Depends on: SMP [\u003dy] \u0026\u0026 !MAXSMP [\u003dn]\n  │   Location:\n  │     -\u003e Processor type and features\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "b040b44c35c251882da8488a5f038435a531312c",
      "tree": "846b65da43582c96487de538dcbcdb8ba1e2c3b1",
      "parents": [
        "f0778c8c41001783d4074e34efc7d3e632d87ee3"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri May 07 13:56:33 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 15:09:12 2010 +0200"
      },
      "message": "kconfig: print symbol type in help text\n\nRandy suggested to print out the symbol type in gconfig.\n\nNote this change does more than Randy\u0027s suggestion, that it also\naffects menuconfig and \"make config\".\n\n  │ Symbol: BLOCK [\u003dy]\n  │ Type  : boolean\n  │ Prompt: Enable the block layer\n  │   Defined at block/Kconfig:4\n  │   Depends on: EMBEDDED [\u003dn]\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nAcked-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "f0778c8c41001783d4074e34efc7d3e632d87ee3",
      "tree": "8ab973e63d7ff30e1271b8954c8b6ec3cc7ea5ba",
      "parents": [
        "64ffc9ff424c65adcffe7d590018cc75e2d5d42a"
      ],
      "author": {
        "name": "Aristeu Rozanski",
        "email": "aris@redhat.com",
        "time": "Thu May 06 12:48:34 2010 -0400"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Jun 02 14:40:09 2010 +0200"
      },
      "message": "kconfig: introduce nonint_oldconfig and loose_nonint_oldconfig\n\nThis patch has been around for a long time in Fedora and Red Hat Enterprise\nLinux kernels and it may be useful for others. The nonint_oldconfig target\nwill fail and print the unset config options while loose_nonint_oldconfig will\nsimply let the config option unset. They\u0027re useful in distro kernel packages\nwhere the config files are built using a combination of smaller config files.\n\nArjan van de Ven wrote the initial nonint_config and Roland McGrath added the\nloose_nonint_oldconfig.\n\nSigned-off-by: Arjan van de Ven \u003carjan@redhat.com\u003e [defunct email]\nWhatevered-by: Kyle McMartin \u003ckyle@redhat.com\u003e\nAcked-by: Arjan van de Ven \u003carjan@linux.intel.com\u003e\nAcked-by: Randy Dunlap \u003crandy.dunlap@oracle.com\u003e\nSigned-off-by: Aristeu Rozanski \u003caris@redhat.com\u003e\n[mmarek: whitespace fixes]\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "1f73897861b8ef0be64ff4b801f8d6f830f683b5",
      "tree": "b4bae8f12e1422113910d8cb00a19d010dc4a52f",
      "parents": [
        "b904d7131d116900524bd36ec170dcd97846bfd3",
        "64ffc9ff424c65adcffe7d590018cc75e2d5d42a"
      ],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Jun 01 08:55:52 2010 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@linux-foundation.org",
        "time": "Tue Jun 01 08:55:52 2010 -0700"
      },
      "message": "Merge branch \u0027for-35\u0027 of git://repo.or.cz/linux-kbuild\n\n* \u0027for-35\u0027 of git://repo.or.cz/linux-kbuild: (81 commits)\n  kbuild: Revert part of e8d400a to resolve a conflict\n  kbuild: Fix checking of scm-identifier variable\n  gconfig: add support to show hidden options that have prompts\n  menuconfig: add support to show hidden options which have prompts\n  gconfig: remove show_debug option\n  gconfig: remove dbg_print_ptype() and dbg_print_stype()\n  kconfig: fix zconfdump()\n  kconfig: some small fixes\n  add random binaries to .gitignore\n  kbuild: Include gen_initramfs_list.sh and the file list in the .d file\n  kconfig: recalc symbol value before showing search results\n  .gitignore: ignore *.lzo files\n  headerdep: perlcritic warning\n  scripts/Makefile.lib: Align the output of LZO\n  kbuild: Generate modules.builtin in make modules_install\n  Revert \"kbuild: specify absolute paths for cscope\"\n  kbuild: Do not unnecessarily regenerate modules.builtin\n  headers_install: use local file handles\n  headers_check: fix perl warnings\n  export_report: fix perl warnings\n  ...\n"
    },
    {
      "commit": "17431928194b36a0f88082df875e2e036da7fddf",
      "tree": "4208c361adc0448de230a5b34d12cd89c3829891",
      "parents": [
        "1d1d1feafd5d42e9e1312d42973e661582e51704"
      ],
      "author": {
        "name": "Toralf Förster",
        "email": "toralf.foerster@gmx.de",
        "time": "Wed May 26 20:22:02 2010 +0200"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Fri May 28 10:34:41 2010 -0400"
      },
      "message": "kconfig: Hide error output in find command in streamline_config.pl\n\nFinding the list of Makefiles in streamline-config should not report errors.\n\nAlso move the \"chomp\" to the @makefiles array instead of doing it in the\nfor loop. This is more efficient, and does not make it any less readable\nby C programmers.\n\nSigned-off-by: Toralf Foerster \u003ctoralf.foerster@gmx.de\u003e\nLKML-Reference: \u003c201005262022.02928.toralf.foerster@gmx.de\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "1d1d1feafd5d42e9e1312d42973e661582e51704",
      "tree": "9ea812f703359048948dd3ced9c35008f4d5cfc4",
      "parents": [
        "e5199edb9e1b17792743d76bf10601ec7d6ef513"
      ],
      "author": {
        "name": "Toralf Foerster",
        "email": "toralf.foerster@gmx.de",
        "time": "Fri May 28 10:25:52 2010 +0200"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Fri May 28 10:34:07 2010 -0400"
      },
      "message": "kconfig: Fix typo in comment in streamline_config.pl\n\nSigned-off-by: Toralf Foerster \u003ctoralf.foerster@gmx.de\u003e\nLKML-Reference: \u003c201005281025.52753.toralf.foerster@gmx.de\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "e5199edb9e1b17792743d76bf10601ec7d6ef513",
      "tree": "e379c1c0dc808c280a8d38a689d7a1f3b559437e",
      "parents": [
        "cc106eb35ed4abea675bce0d8fe40a46ff0b4a72"
      ],
      "author": {
        "name": "Toralf Foerster",
        "email": "toralf.foerster@gmx.de",
        "time": "Fri May 28 10:24:59 2010 +0200"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Fri May 28 10:31:25 2010 -0400"
      },
      "message": "kconfig: Make a variable local in streamline_config.pl\n\nProper perl requires that local variables should be declared with \u0027my\u0027,\notherwise this may produce errors.\n\nSigned-off-by: Toralf Foerster \u003ctoralf.foerster@gmx.de\u003e\nLKML-Reference: \u003c201005281025.00358.toralf.foerster@gmx.de\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "06f9a55cf72b6aa19b4206a05d6f9af6fa9648ea",
      "tree": "77b587eacf8c5cbd85b75f9bfa66f9a19c08921c",
      "parents": [
        "22c7eca61e51296643bb0a379fc726fda8f3b015"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Wed Apr 14 11:46:24 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Apr 14 15:34:19 2010 +0200"
      },
      "message": "gconfig: add support to show hidden options that have prompts\n\nThere\u0027s a button in gconfig to \"Show all options\", but I think\nnormally we are not interested in those configs which have no\nprompt and thus can\u0027t be changed, so here I add a new button to\nshow hidden options which have prompts.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "22c7eca61e51296643bb0a379fc726fda8f3b015",
      "tree": "ee313b7cf959db1aa0e4fb33174fa8c4a1c8af3b",
      "parents": [
        "7b5d87215b38359ecadf7a69575b11e140a00484"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Wed Apr 14 11:46:02 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Apr 14 15:34:19 2010 +0200"
      },
      "message": "menuconfig: add support to show hidden options which have prompts\n\nUsage:\n  Press \u003cZ\u003e to show all config symbols which have prompts.\n\nQuote Tim Bird:\n\n| I\u0027ve been bitten by this numerous times.  I most often\n| use ftrace on ARM, but when I go back to x86, I almost\n| always go through a sequence of searching for the\n| function graph tracer in the menus, then realizing it\u0027s\n| completely missing until I disable CC_OPTIMIZE_FOR_SIZE.\n|\n| Is there any way to have the menu item appear, but be\n| unsettable unless the SIZE option is disabled?  I\u0027m\n| not a Kconfig guru...\n\nI myself found this useful too. For example, I need to test\nftrace/tracing and want to be sure all the tracing features are\nenabled, so I  enter the \"Tracers\" menu, and press \u003cZ\u003e to\nsee if there is any config hidden.\n\nI also noticed gconfig and xconfig have a button \"Show all options\",\nbut that\u0027s a bit too much, and I think normally what we are not\ninterested in those configs which have no prompt thus can\u0027t be\nchanged by users.\n\nExmaple:\n\n      --- Tracers\n      -*-   Kernel Function Tracer\n      - -     Kernel Function Graph Tracer\n      [*]   Interrupts-off Latency Tracer\n      - -   Preemption-off Latency Tracer\n      [*]   Sysprof Tracer\n\nHere you can see 2 tracers are not selectable, and then can find\nout how to make them selectable.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "7b5d87215b38359ecadf7a69575b11e140a00484",
      "tree": "8efdd6c0d7b429c1ad36366b0e0db61513ef75ed",
      "parents": [
        "2944235430c37970f82ad57b8ead343ee6065004"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Wed Apr 14 11:44:51 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Apr 14 15:34:18 2010 +0200"
      },
      "message": "gconfig: remove show_debug option\n\nThis option is a no-op, so remove it.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "2944235430c37970f82ad57b8ead343ee6065004",
      "tree": "baef798ff629d958004a042c6334c3719880df83",
      "parents": [
        "c6ccc30fd7870879981de03feeec61029754b0ea"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Wed Apr 14 11:44:34 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Apr 14 15:34:18 2010 +0200"
      },
      "message": "gconfig: remove dbg_print_ptype() and dbg_print_stype()\n\nJust use sym_get_type() and prop_get_type_name().\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "c6ccc30fd7870879981de03feeec61029754b0ea",
      "tree": "0d89b1fd6a862140d9dd9e10def9e9d6687bef89",
      "parents": [
        "4280eae0990190d190dfa7dab9bca480215d5b19"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Wed Apr 14 11:44:20 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Apr 14 15:34:18 2010 +0200"
      },
      "message": "kconfig: fix zconfdump()\n\nzconfdump(), which is used for debugging, can\u0027t recognize P_SELECT,\nP_RANGE and P_MENU (if associated with a symbol, aka \"menuconfig\"),\nand output something like this:\n\nconfig X86\n  boolean\n  default y\n  unknown prop 6!\n  unknown prop 6!\n  unknown prop 6!\n  ...\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "4280eae0990190d190dfa7dab9bca480215d5b19",
      "tree": "6575632bc6efeb7163a65480a4ad3026ef6ae2a9",
      "parents": [
        "7926c09dea682be6f3b2e42f16c50d8554c6bbdc"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Wed Apr 14 11:44:05 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Apr 14 15:34:18 2010 +0200"
      },
      "message": "kconfig: some small fixes\n\n- fix a typo in documentation\n- fix a typo in a printk on error\n- fix comments in dialog_inputbox()\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "da6df879b9f88d2224174a9e4e76dc0e42e47ebc",
      "tree": "38e455e5c3e494cdadf0cb98747ffcdd98179ae7",
      "parents": [
        "52b80025ebaa992688959b4cb2cd86c7e805b70f"
      ],
      "author": {
        "name": "Li Zefan",
        "email": "lizf@cn.fujitsu.com",
        "time": "Fri Mar 19 14:57:47 2010 +0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Mar 23 12:29:07 2010 +0100"
      },
      "message": "kconfig: recalc symbol value before showing search results\n\nA symbol\u0027s value won\u0027t be recalc-ed until we save config file or\nenter the menu where the symbol sits.\n\nSo If I enable OPTIMIZE_FOR_SIZE, and search FUNCTION_GRAPH_TRACER:\n\n  Symbol: FUNCTION_GRAPH_TRACER [\u003dy]\n  Prompt: Kernel Function Graph Tracer\n    Defined at kernel/trace/Kconfig:140\n    Depends on: ... [\u003dy] \u0026\u0026 (!X86_32 [\u003dy] || !CC_OPTIMIZE_FOR_SIZE [\u003dy])\n    ...\n\nFrom the dependency it should result in FUNCTION_GRAPH_TRACER\u003dn,\nbut it still shows FUNCTION_GRAPH_TRACER\u003dy.\n\nSigned-off-by: Li Zefan \u003clizf@cn.fujitsu.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "31a2d31dbd01a7d530a748e6f708ba047c37fb90",
      "tree": "f54a12fecfba8ef9a1df2e747c9053b75a670532",
      "parents": [
        "daf9fe2ee9a203c4fc555cfe5c5f3d9f660e743c"
      ],
      "author": {
        "name": "Thomas Weber",
        "email": "weber@corscience.de",
        "time": "Fri Feb 19 12:43:44 2010 +0100"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Mon Mar 15 15:17:01 2010 +0100"
      },
      "message": "kconfig: util: Fix typo in comment\n\nsting replaced with string\n\nSigned-off-by: Thomas Weber \u003cweber@corscience.de\u003e\nSigned-off-by: Jiri Kosina \u003cjkosina@suse.cz\u003e\n"
    },
    {
      "commit": "3cebbb81c7e75321e25cc586d07a25a3d98278fc",
      "tree": "b2cb83e5fd4cb1aea374ca606f8b512a457b2138",
      "parents": [
        "615f0833aa4c4aa944ceb78895bbffa8bd1884df"
      ],
      "author": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Feb 03 17:20:14 2010 +0100"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Wed Feb 03 11:45:25 2010 -0500"
      },
      "message": "kconfig: Simplify LSMOD\u003d handling\n\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\nLKML-Reference: \u003c20100203162014.GA10956@sepie.suse.cz\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "615f0833aa4c4aa944ceb78895bbffa8bd1884df",
      "tree": "3704d95e3049290c2efaff829d7ac2c77c97a681",
      "parents": [
        "88f66ea98d7ae6a8b6a34e38b1b4fa51abc1c9ca"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Tue Feb 02 21:51:27 2010 -0500"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Feb 02 21:58:00 2010 -0500"
      },
      "message": "kconfig: Add LSMOD\u003dfile to override the lsmod for localmodconfig\n\nDoing the following:\n\n\tmake LSMOD\u003dfile localmodconfig\n\nWill make the streamline-config code use the given file instead of\nlsmod. If the file is an executable, it will execute it, otherwise\nit will read it as text.\n\n\tmake LSMOD\u003d/my/local/path/lsmod localmodconfig\n\nThe above will execute the lsmod in /my/local/path instead of the\nlsmods that may be located elsewhere.\n\n\tmake LSMOD\u003dembedded_board_lsmod localmodconfig\n\nThe above will read the \"embedded_board_lsmod\" as a text file. This\nis useful if you are doing a cross compile and need to run the\nconfig against modules that exist on an embedded device.\n\nNote, if the LSMOD\u003d file does is not a path, it will add the\npath to the object directory. That is, the above example will look\nfor \"embedded_board_lsmod\" in the directory that the binary will\nbe built in (the O\u003ddir directory).\n\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n\n On branch config/linus\n"
    },
    {
      "commit": "88f66ea98d7ae6a8b6a34e38b1b4fa51abc1c9ca",
      "tree": "f2b9edf54bb3d2eec25b4166111dcf98fde2ae3a",
      "parents": [
        "13d7e9385644d376a0816ad663ba3dfc45359f2f"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Wed Jan 06 18:49:44 2010 -0500"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Feb 02 13:01:01 2010 -0500"
      },
      "message": "kconfig: Look in both /bin and /sbin for lsmod in streamline_config.pl\n\nDistributions now have lsmod in /bin instead of /sbin. But to handle\nboth cases, we look for it in /sbin /bin /usr/bin and /usr/sbin.\nIf lsmod is not found in any of those paths, it defaults to use\njust lsmod and hopes that it lies in the path of the user.\n\nTested-by: Xavier Chantry \u003cshiningxc@gmail.com\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "e66f25d7d1be19e177cf55126a40799757efae89",
      "tree": "c60ae380f0ee00ab56dc821dcff56037980a38fd",
      "parents": [
        "62718979780720e526a411dc66e810288aaa7bf6"
      ],
      "author": {
        "name": "Andi Kleen",
        "email": "andi@firstfloor.org",
        "time": "Wed Jan 13 17:02:44 2010 +0100"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Feb 02 14:33:55 2010 +0100"
      },
      "message": "Improve kconfig symbol hashing\n\nWhile looking for something else I noticed that the symbol\nhash function used by kconfig is quite poor. It doesn\u0027t\nuse any of the standard hash techniques but simply\nadds up the string and then uses power of two masking,\nwhich is both known to perform poorly.\n\nThe current x86 kconfig has over 7000 symbols.\n\nWhen I instrumented it showed that the minimum hash chain\nlength was 16 and a significant number of them was over\n30.\n\nIt didn\u0027t help that the hash table size was only 256 buckets.\n\nThis patch increases the hash table size to a larger prime\nand switches to a FNV32 hash. I played around with a couple of hash\nfunctions, but that one seemed to perform best with reasonable\nhash table sizes.\n\nIncreasing the hash table size even further didn\u0027t\nseem like a good idea, because there are a couple of global\nwalks which walk the complete hash table.\n\nI also moved the unnamed bucket to 0. It\u0027s still the longest\nof all the buckets (44 entries), but hopefully it\u0027s not\noften hit except for the global walk which doesn\u0027t care.\n\nThe result is a much nicer distribution:\n(first column bucket length, second number of buckets with that length)\n\n1: 3505\n2: 1236\n3: 294\n4: 52\n5: 3\n47: 1\t\t\u003c--- this is the unnamed symbols bucket\n\nThere are still some 5+ buckets, but increasing the hash table\neven more would be likely not worth it.\n\nThis also cleans up the code slightly by removing hard coded\nmagic numbers.\n\nI didn\u0027t notice a big performance difference either way\non my Nehalem system, but I presume it\u0027ll help somewhat\non slower systems.\n\nSigned-off-by: Andi Kleen \u003cak@linux.intel.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "68c16edddf41044410fab59d4c179c023cb25afb",
      "tree": "4c77bc1fb69993703b6069ddc7b6713c86a3bde6",
      "parents": [
        "851190c9304154b7d65596801415229c05994e91"
      ],
      "author": {
        "name": "Nir Tzachar",
        "email": "nir.tzachar@gmail.com",
        "time": "Wed Jan 13 07:32:35 2010 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Feb 02 14:33:55 2010 +0100"
      },
      "message": "nconfig: minor fix\n\nThis patch fixes two problems reported by Jan Engelhardt:\n1) Border is now properly placed, to always be visible\n2) Long menu items are properly displayed\n\nReported-by: Jan Engelhardt \u003cjengelh@medozas.de\u003e\nSigned-off-by: Nir Tzachar \u003cnir.tzachar@gmail.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "851190c9304154b7d65596801415229c05994e91",
      "tree": "51bec33c76ca12dfaedcb45368f50f37d2a0e14f",
      "parents": [
        "692d97c380c6dce2c35a04c5dcbce4e831a42fa0"
      ],
      "author": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Thu Jan 07 13:59:57 2010 +0100"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Feb 02 14:33:55 2010 +0100"
      },
      "message": "nconfig: mark local functions as such\n\nscripts/kconfig/nconf.gui.c:23: warning: no previous prototype for \u0027set_normal_colors\u0027\nscripts/kconfig/nconf.gui.c:68: warning: no previous prototype for \u0027normal_color_theme\u0027\nscripts/kconfig/nconf.gui.c:100: warning: no previous prototype for \u0027no_colors_theme\u0027\nscripts/kconfig/nconf.c:455: warning: no previous prototype for \u0027process_special_keys\u0027\nscripts/kconfig/nconf.c:487: warning: no previous prototype for \u0027get_next_hot\u0027\nscripts/kconfig/nconf.c:506: warning: no previous prototype for \u0027canbhot\u0027\nscripts/kconfig/nconf.c:514: warning: no previous prototype for \u0027is_hot\u0027\nscripts/kconfig/nconf.c:522: warning: no previous prototype for \u0027make_hot\u0027\nscripts/kconfig/nconf.c:582: warning: no previous prototype for \u0027item_make\u0027\nscripts/kconfig/nconf.c:626: warning: no previous prototype for \u0027item_add_str\u0027\nscripts/kconfig/nconf.c:656: warning: no previous prototype for \u0027item_tag\u0027\nscripts/kconfig/nconf.c:668: warning: no previous prototype for \u0027curses_item_index\u0027\nscripts/kconfig/nconf.c:673: warning: no previous prototype for \u0027item_data\u0027\nscripts/kconfig/nconf.c:684: warning: no previous prototype for \u0027item_is_tag\u0027\nscripts/kconfig/nconf.c:691: warning: no previous prototype for \u0027set_config_filename\u0027\n\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "692d97c380c6dce2c35a04c5dcbce4e831a42fa0",
      "tree": "eff5fc88659da67cce720dd643f50137ef5b906a",
      "parents": [
        "c64152bfd0106807c8d3ddbe6d0928e14a64f7bb"
      ],
      "author": {
        "name": "nir.tzachar@gmail.com",
        "email": "nir.tzachar@gmail.com",
        "time": "Wed Nov 25 12:28:43 2009 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Feb 02 14:33:55 2010 +0100"
      },
      "message": "kconfig: new configuration interface (nconfig)\n\nThis patch was inspired by the kernel projects page, where an ncurses\nreplacement for menuconfig was mentioned (by Sam Ravnborg).\n\nBuilding on menuconfig, this patch implements a more modern look\ninterface using ncurses and ncurses\u0027 satellite libraries (menu, panel,\nform). The implementation does not depend on lxdialog, which is\ncurrently distributed with the kernel.\n\nSigned-off-by: Nir Tzachar \u003cnir.tzachar@gmail.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "da60fbbcb637b37b1d77a41886ae4e275422ca96",
      "tree": "b75965f0cc17567b1b7723094e1e9358e23c3b12",
      "parents": [
        "5358db0b0e16470337c6ec08177deb3f68ed7673"
      ],
      "author": {
        "name": "Vadim Bendebury (вб)",
        "email": "vbendeb@google.com",
        "time": "Sun Dec 20 00:29:49 2009 -0800"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Tue Feb 02 14:33:55 2010 +0100"
      },
      "message": "menuconfig: wrap long help lines\n\nHelp text for certain config options is very extensive (the text\nincludes the names of all  other options the option in question depends\non). Long lines are not wrapped, making it impossible to see the list\nwithout scrolling horizontally.\n\nThis patch adds some logic which wraps help screen lines at word\nboundaries to prevent truncating.\n\nTested by running\n\n  ARCH\u003dpowerpc make menuconfig O\u003d/tmp/build\n\nwhich shows that the long lines are now wrapped, and\n\n ARCH\u003dpowerpc make xconfig O\u003d/tmp/build\n\nto demonstrate that it still compiles and operates as expected.\n\nSigned-off-by: Vadim Bendebury \u003cvbendeb@google.com\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "13d7e9385644d376a0816ad663ba3dfc45359f2f",
      "tree": "e0455cd16c1d24338f24d23214dd41e6aaa6347d",
      "parents": [
        "17263baf958b7ab1d8c60445f412a1080362c88c"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Wed Jan 06 17:56:12 2010 -0500"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Wed Jan 06 17:56:12 2010 -0500"
      },
      "message": "kconfig: Check for if conditions in Kconfig for localmodconfig\n\nThe streamline_config.pl misses the if conditions for checking\ndependencies. For Kconfigs with the following construct:\n\n if MEDIA_SUPPORT\n\n config VIDEO_DEV\n\n [...]\n\nIf VIDEO_DEV was enabled, the script will miss the fact that MEDIA_SUPPORT\nis also needed.\n\nThis patch changes streamline_config.pl to include if conditions into\nthe dependencies of configs.\n\nReported-by: Anton Blanchard \u003canton@sambo.org\u003e\nTested-by: Anton Blanchard \u003canton@sambo.org\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "17263baf958b7ab1d8c60445f412a1080362c88c",
      "tree": "4b85df6a0a89b624698f2e723581a02ab91cc02d",
      "parents": [
        "c6f7afaeeda5b3c42ea8d7b27e197d223a04675e"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Wed Jan 06 16:43:08 2010 -0500"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Wed Jan 06 16:43:08 2010 -0500"
      },
      "message": "kconfig: Create include/generated for localmodconfig\n\nIf someone downloads a brand new kernel and runs localmodconfig or\nlocalyesconfig, the ending result will report:\n\n *** Error during update of the kernel configuration.\n\nThis is because localmodconfig and localyesconfig must create the\ninclude/generated directory to place the autoconf.h file.\n\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "bc081dd6e9f622c73334dc465359168543ccaabf",
      "tree": "c015f5eba8e1bc79b2eb3861b8e95f15ee6d047d",
      "parents": [
        "6299fee7b84ac7b4429b4e2787b99470a89cd5f5"
      ],
      "author": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Mon Dec 07 16:38:33 2009 +0100"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Sat Dec 12 13:08:16 2009 +0100"
      },
      "message": "kbuild: generate modules.builtin\n\nTo make it easier for module-init-tools and scripts like mkinitrd to\ndistinguish builtin and missing modules, install a modules.builtin file\nlisting all builtin modules. This is done by generating an additional\nconfig file (tristate.conf) with tristate options set to uppercase \u0027Y\u0027\nor \u0027M\u0027. If we source that config file, the builtin modules appear in\nobj-Y.\n\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "32197c7ffb06b1319850f8fdfa1a49d32a63b79b",
      "tree": "35179145156792698f4f68962f0c404162c85d3e",
      "parents": [
        "db1d18657c96cc675596077cb60ef50fbe1947f8"
      ],
      "author": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Wed Nov 25 15:14:49 2009 +0100"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Sat Dec 12 13:08:16 2009 +0100"
      },
      "message": "kbuild: create include/generated in silentoldconfig\n\nThe toplevel Makefile creates the directory if it runs silentoldconfig\nautomatically, but if run manually, it fails:\n\n  $ make mrproper\n  $ make defconfig \u0026\u0026 make silentoldconfig\n  *** Default configuration is based on \u0027x86_64_defconfig\u0027\n  #\n  # configuration written to .config\n  #\n  scripts/kconfig/conf -s arch/x86/Kconfig\n\n  *** Error during update of the kernel configuration.\n  ...\n\nMove the mkdir command to the silentoldconfig target to make it work.\n\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "264a26838056fc2d759f58bec2e720e01fcb1bdb",
      "tree": "afeda8542af04721a9af57c8f40823d6315db411",
      "parents": [
        "98b8788ae91694499d1995035625bea16a4db0c4"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Oct 18 00:49:24 2009 +0200"
      },
      "committer": {
        "name": "Michal Marek",
        "email": "mmarek@suse.cz",
        "time": "Sat Dec 12 13:08:15 2009 +0100"
      },
      "message": "kbuild: move autoconf.h to include/generated\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\nSigned-off-by: Michal Marek \u003cmmarek@suse.cz\u003e\n"
    },
    {
      "commit": "d014d043869cdc591f3a33243d3481fa4479c2d0",
      "tree": "63626829498e647ba058a1ce06419fe7e4d5f97d",
      "parents": [
        "6ec22f9b037fc0c2e00ddb7023fad279c365324d",
        "6070d81eb5f2d4943223c96e7609a53cdc984364"
      ],
      "author": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Mon Dec 07 18:36:35 2009 +0100"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Mon Dec 07 18:36:35 2009 +0100"
      },
      "message": "Merge branch \u0027for-next\u0027 into for-linus\n\nConflicts:\n\n\tkernel/irq/chip.c\n"
    },
    {
      "commit": "af901ca181d92aac3a7dc265144a9081a86d8f39",
      "tree": "380054af22521144fbe1364c3bcd55ad24c9bde4",
      "parents": [
        "972b94ffb90ea6d20c589d9a47215df103388ddd"
      ],
      "author": {
        "name": "André Goddard Rosa",
        "email": "andre.goddard@gmail.com",
        "time": "Sat Nov 14 13:09:05 2009 -0200"
      },
      "committer": {
        "name": "Jiri Kosina",
        "email": "jkosina@suse.cz",
        "time": "Fri Dec 04 15:39:55 2009 +0100"
      },
      "message": "tree-wide: fix assorted typos all over the place\n\nThat is \"success\", \"unknown\", \"through\", \"performance\", \"[re|un]mapping\"\n, \"access\", \"default\", \"reasonable\", \"[con]currently\", \"temperature\"\n, \"channel\", \"[un]used\", \"application\", \"example\",\"hierarchy\", \"therefore\"\n, \"[over|under]flow\", \"contiguous\", \"threshold\", \"enough\" and others.\n\nSigned-off-by: André Goddard Rosa \u003candre.goddard@gmail.com\u003e\nSigned-off-by: Jiri Kosina \u003cjkosina@suse.cz\u003e\n"
    },
    {
      "commit": "463bf9000750e08a85ee0b40da3266aae8a54ba2",
      "tree": "5fb5b03c2350c514a6516a45a0fbd63cc9a76fe4",
      "parents": [
        "648f4e3e50c4793d9dbf9a09afa193631f76fa26"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Fri Nov 20 09:21:12 2009 -0500"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Fri Nov 20 09:45:55 2009 -0500"
      },
      "message": "kconfig: Fix make O\u003d\u003cdir\u003e local{mod,yes}config\n\nWhen the output directory is something other than the kernel source,\nthe streamline_config script gets confused. This patch passes in the\nsource directory to the script so that it can find the proper files.\n\nReported-by: Peter Zijlstra \u003cpeterz@infradead.org\u003e\nTested-by: Peter Zijlstra \u003cpeterz@infradead.org\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "65166571800af0f63f21e5576d7db12d2bf73790",
      "tree": "42bae137b3966ff60c28619cd22c84cf20ec1c79",
      "parents": [
        "1456edbb1476db735715ddcc7ac306de587024eb"
      ],
      "author": {
        "name": "Josh Triplett",
        "email": "josh@joshtriplett.org",
        "time": "Thu Oct 15 12:13:36 2009 -0700"
      },
      "committer": {
        "name": "Josh Triplett",
        "email": "josh@joshtriplett.org",
        "time": "Sun Nov 15 15:00:16 2009 -0800"
      },
      "message": "kconfig: Mark various internal functions static\n\nkconfig\u0027s keyword hash, lexer, and parser define various functions used\nonly locally.  Declare these functions as static, and regenerate the\ncorresponding generated files.\n\nSigned-off-by: Josh Triplett \u003cjosh@joshtriplett.org\u003e\n"
    },
    {
      "commit": "1456edbb1476db735715ddcc7ac306de587024eb",
      "tree": "569701addf41a0e5ae68d78e1fd47e7ec6865575",
      "parents": [
        "a3ccf63ee643ef243cbf8918da8b3f9238f10029"
      ],
      "author": {
        "name": "Josh Triplett",
        "email": "josh@joshtriplett.org",
        "time": "Thu Oct 15 11:03:20 2009 -0700"
      },
      "committer": {
        "name": "Josh Triplett",
        "email": "josh@joshtriplett.org",
        "time": "Thu Oct 15 11:10:12 2009 -0700"
      },
      "message": "kconfig: Make zconf.y work with current bison\n\nzconf.y includes zconf.hash.c from the initial code section.\nzconf.hash.c references the token constants from zconf.y.  However,\ncurrent bison defines the token constants after the initial code\nsection, making zconf.hash.c fail to compile.  Move the include of\nzconf.hash.c later in zconf.y, so bison puts it after the token\nconstants.\n\nSigned-off-by: Josh Triplett \u003cjosh@joshtriplett.org\u003e\n"
    },
    {
      "commit": "4356f4890792a678936c93c9196e8f7742e04535",
      "tree": "6c64cbb77de98dfc45e4330632e6f8b27f50ef04",
      "parents": [
        "66a570623be0d96130470a41cd38bce889b7e885"
      ],
      "author": {
        "name": "Trevor Keith",
        "email": "tsrk@tsrk.net",
        "time": "Fri Sep 18 12:49:23 2009 -0700"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Sep 20 12:27:44 2009 +0200"
      },
      "message": "kbuild: add static to prototypes\n\nWarnings found via gcc -Wmissing-prototypes.\n\nSigned-off-by: Trevor Keith \u003ctsrk@tsrk.net\u003e\nAcked-by: WANG Cong \u003cxiyou.wangcong@gmail.com\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "78222caaeec01a84876f7e955d03e0c22d321287",
      "tree": "dca664618b3908b2a601a5b7b1e0bf64dc7933d6",
      "parents": [
        "c47efe5548abbf53c2f66e06dcb46183b11d6b22"
      ],
      "author": {
        "name": "Diego Elio \u0027Flameeyes\u0027 Pettenò",
        "email": "flameeyes@gmail.com",
        "time": "Fri Sep 18 12:49:33 2009 -0700"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Sep 20 12:27:43 2009 +0200"
      },
      "message": "gconfig: disable \"typeahead find\" search in treeviews\n\nWhen typeahead find is enabled, using \u0027y\u0027, \u0027n\u0027 and \u0027m\u0027 to change the status\nof the configuration items will also start up the search system, making you\njump around the configuration.\n\nDisabling the enable_search property does not mean that search is not\npossible, it only disables the typeahead; to execute a search in the\ntreeview, you can just call it up explicitly (i.e.: on most systems that\nwill be Ctrl-f).\n\nSigned-off-by: Diego Elio \u0027Flameeyes\u0027 Pettenò  \u003cflameeyes@gmail.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Andrew Morton \u003cakpm@linux-foundation.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "4779105e03cdb6639706991081839451d709230b",
      "tree": "d9c374383c9ddf575f5f6d6e8c8911793f685942",
      "parents": [
        "66c4bd808508ae99e00e979ab3e9a1c6a6a7ad45"
      ],
      "author": {
        "name": "Cheng Renquan",
        "email": "crquan@gmail.com",
        "time": "Sun Jul 12 16:11:46 2009 +0800"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Sep 20 12:27:42 2009 +0200"
      },
      "message": "kconfig: make use of menu_get_ext_help in gconfig\n\nFuthermore, gconfig interface lack the \"search a symbol\" function, do later.\n\nSigned-off-by: Cheng Renquan \u003ccrquan@gmail.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\n[sam: fix SEGV in gconfig]\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "66c4bd808508ae99e00e979ab3e9a1c6a6a7ad45",
      "tree": "5a83be02c4740bb4eb6c48bc0afdcb819eab5191",
      "parents": [
        "d74c15f3b71804472dde59355d4960ce8287dae8"
      ],
      "author": {
        "name": "Cheng Renquan",
        "email": "crquan@gmail.com",
        "time": "Sun Jul 12 16:11:48 2009 +0800"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Sep 20 12:27:42 2009 +0200"
      },
      "message": "kconfig: make use of menu_get_ext_help in \"make config\"\n\nSigned-off-by: Cheng Renquan \u003ccrquan@gmail.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "d74c15f3b71804472dde59355d4960ce8287dae8",
      "tree": "21efeb59823b303732e31722e469bf61a3bc5941",
      "parents": [
        "1d525e7c1f8c34b74ddeb317f18c2ca9e9d81884"
      ],
      "author": {
        "name": "Cheng Renquan",
        "email": "crquan@gmail.com",
        "time": "Sun Jul 12 16:11:47 2009 +0800"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Sep 20 12:27:41 2009 +0200"
      },
      "message": "kconfig: make use of menu_get_ext_help in qconfig\n\nSigned-off-by: Cheng Renquan \u003ccrquan@gmail.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "1d525e7c1f8c34b74ddeb317f18c2ca9e9d81884",
      "tree": "a0b27dea6e08990de8e89ee750490464fe3e7014",
      "parents": [
        "6bd5999d1a6166ad357f2ebf5e998ce49a407f62"
      ],
      "author": {
        "name": "Cheng Renquan",
        "email": "crquan@gmail.com",
        "time": "Sun Jul 12 16:11:45 2009 +0800"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Sep 20 12:27:41 2009 +0200"
      },
      "message": "kconfig: make use of menu_get_ext_help in menuconfig\n\nThe removed functions are moved into menu.c for sharing with\ngconfig \u0026 xconfig \u0026 config.\n\nSigned-off-by: Cheng Renquan \u003ccrquan@gmail.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "6bd5999d1a6166ad357f2ebf5e998ce49a407f62",
      "tree": "85176ca26a9d896616d73942cbfd09cc25cab880",
      "parents": [
        "544e433a9e2a8771b8281ac58acb5c794613e705"
      ],
      "author": {
        "name": "Cheng Renquan",
        "email": "crquan@gmail.com",
        "time": "Sun Jul 12 16:11:44 2009 +0800"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Sep 20 12:27:41 2009 +0200"
      },
      "message": "kconfig: add menu_get_ext_help function to display more information\n\nThe three functions are moved from mconf.c, then they can be shared in\nall menuconfig \u0026 gconfig \u0026 xconfig \u0026 config.\n\n  +void menu_get_ext_help(struct menu *menu, struct gstr *help)\n  +static void get_prompt_str(struct gstr *r, struct property *prop)\n  +void get_symbol_str(struct gstr *r, struct symbol *sym)\n\nSigned-off-by: Cheng Renquan \u003ccrquan@gmail.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "544e433a9e2a8771b8281ac58acb5c794613e705",
      "tree": "f4a42676b42ebd7b0f46b1ffc4d952840040e3b3",
      "parents": [
        "0bc9f9e63c0aa9c60ee309039d8f52708145ea4b"
      ],
      "author": {
        "name": "Cheng Renquan",
        "email": "crquan@gmail.com",
        "time": "Sun Jul 12 16:11:43 2009 +0800"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Sun Sep 20 12:27:41 2009 +0200"
      },
      "message": "kconfig: add symbol value to help find the real depend\n\nSometimes when configuring need to disable some unused item, but the item is\nselected by many other items, it\u0027s hard to find the real dependency which\nselected it, This patch add every symbol\u0027s value accompanied to make it\npossible to find the real dependency easily.\n\nAn example is CONFIG_RFKILL,\n\n  ---------------------- RF switch subsystem support ----------------------\n  | CONFIG_RFKILL:                                                        |\n  |                                                                       |\n  | Say Y here if you want to have control over RF switches               |\n  | found on many WiFi and Bluetooth cards.                               |\n  |                                                                       |\n  | To compile this driver as a module, choose M here: the                |\n  | module will be called rfkill.                                         |\n  |                                                                       |\n  | Symbol: RFKILL [\u003dm]                                                   |\n  | Prompt: RF switch subsystem support                                   |\n  |   Defined at net/rfkill/Kconfig:4                                     |\n  |   Depends on: NET [\u003dy]                                                |\n  |   Location:                                                           |\n  |     -\u003e Networking support (NET [\u003dy])                                  |\n  |   Selected by: IWLCORE [\u003dn] \u0026\u0026 NETDEVICES [\u003dy] \u0026\u0026 !S390 [\u003dS390] \u0026\u0026 PC |\n  |                                                                       |\n  ----------------------------------------------------------------( 99%)---\n\nSigned-off-by: Cheng Renquan \u003ccrquan@gmail.com\u003e\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "48586218b6515b9bd70694e3cd8c901a6a6ee69c",
      "tree": "cb5bd16dfdb55c73ba7125001996335b0980fe5e",
      "parents": [
        "a7c02602a85a0d3f34331ff34d54de7416085985"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Fri Aug 21 12:42:20 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Fri Aug 21 12:42:20 2009 -0400"
      },
      "message": "kconfig: add missing dependency of conf to localyesconfig\n\nThere\u0027s a dependency missing.\n\n$ make localyesconfig\n  HOSTCC  scripts/basic/fixdep\n  HOSTCC  scripts/basic/docproc\n  HOSTCC  scripts/basic/hash\nusing config: \u0027/boot/config-2.6.27.25-78.2.56.fc9.x86_64\u0027\n/bin/sh: line 8: scripts/kconfig/conf: No such file or directory\nmake[1]: *** [localyesconfig] Error 127\nmake: *** [localyesconfig] Error 2\n\nThus the script failed to run. But the sed command that converts the \u0027\u003dm\u0027\nto \u0027\u003dy\u0027 still ran. This gives us a distro config with all modules\nconverted to built in!\n\nThe missing dependency was for conf for localyesconfig. This\ndependency was already set for localmodconfig.\n\nReported-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "a7c02602a85a0d3f34331ff34d54de7416085985",
      "tree": "f9bbb2fe066d2b97d51f176a875c5876f34dce89",
      "parents": [
        "a9024838d029ecd9a6d1389bec798b7296278d6b"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Thu May 07 11:09:55 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 22:15:55 2009 -0400"
      },
      "message": "kconfig: test if a .config already exists\n\nIf one were to run localmodconfig or localyesconfig without having\na .config already in the file, then the end of the process would give\na warning when it tries to move the old .config to .config.old.\n\nThis patch adds a test to check if .config exists and avoid the moves\nif it does not.\n\n[ Impact: remove warning after make localmodconfig ]\n\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "a9024838d029ecd9a6d1389bec798b7296278d6b",
      "tree": "c6b4605ca82a1b3b409eb444823d46e525c9e366",
      "parents": [
        "810b2be65610af13d60f1e16c0a0f93cbc1f9d06"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Thu May 07 11:01:34 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 22:04:05 2009 -0400"
      },
      "message": "kconfig: make local .config default for streamline_config\n\nAs Andi Kleen pointed out, most people would expect that the local .config\nfile to be based for a streamline config. This patch changes the order\nof searching for a config file to consider the .config in the local\ndirectory first.\n\nReported-by: Andi Kleen \u003candi@firstfloor.org\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "810b2be65610af13d60f1e16c0a0f93cbc1f9d06",
      "tree": "f090338ba67ed5da4d7c51d88f0a4dd7302cb8c2",
      "parents": [
        "d08ca2771e3aabddc7922d800a386f187c51f8a4"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Thu Apr 30 19:30:04 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 22:03:45 2009 -0400"
      },
      "message": "kconfig: test for /boot/config-uname after /proc/config.gz in localconfig\n\nMany distros put their config in /boot/config-`uname -r`, add a check\nfor that right after /proc/config.gz\n\nReported-by: Alan Jenkins \u003csourcejedi.lkml@googlemail.com\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "d08ca2771e3aabddc7922d800a386f187c51f8a4",
      "tree": "a87a8b0417297b705a87a5ed875aeb718dd20d6d",
      "parents": [
        "cdfc47950a531199a553cebab0ac481aa7062948"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Thu Apr 30 19:24:00 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 22:02:40 2009 -0400"
      },
      "message": "kconfig: unset IKCONFIG_PROC and clean up nesting\n\nDue to cut and paste error IKCONFIG was both set and cleared.\nIt was suppose to be IKCONFIG_PROC to be cleared.\n\nAlso cleaned up if nesting.\n\nReported-by: Alan Jenkins \u003csourcejedi.lkml@googlemail.com\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "cdfc47950a531199a553cebab0ac481aa7062948",
      "tree": "23a1dfc287c61144ef3a7fcf83980a8fa50831f6",
      "parents": [
        "de481560eb0bd9d940b90311eba85711e4b1150b"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Thu Apr 30 14:39:48 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 22:02:00 2009 -0400"
      },
      "message": "kconfig: search for a config to base the local(mod|yes)config on\n\nInstead of using the .config in the local directory. This patch\nchanges streamline_config.pl to search various locations for a config.\n\nHere\u0027s the list and order of search:\n\n  /proc/config.gz\n  /boot/vmlinuz-`uname -r`\n  vmlinux  # local to the directory\n  /lib/modules/`uname -r`/kernel/kernel/configs.ko\n  kernel/configs.ko\n  kernel/configs.o\n  .config\n\nOnce it finds a file that contains a config (it checks if the binary\nobjects have configs first) it then uses it to create the .config\nwith minimum modules needed.\n\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "744ffcbe867b81e9f467503c85bc5e4f9a586294",
      "tree": "724f067dc72301a7969ba6c89bfbfa724943a439",
      "parents": [
        "ea2c1894b66301bce565471d6914d49ce91ee015"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Thu Apr 30 12:15:10 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 21:58:54 2009 -0400"
      },
      "message": "kconfig: enable CONFIG_IKCONFIG from streamline_config.pl\n\nIngo Molnar suggested that the streamline_config.pl should enable\nCONFIG_IKCONFIG to keep the current config in the kernel.\nThen we can use scripts/extract-ikconfig to find the current\nmodules.\n\nThis patch changes streamline_config.pl to check if CONFIG_IKCONFIG\nis not set, and if it is not, it enables it to be a module.\n\n[ Impact: make current config options easier to find ]\n\nReported-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "ea2c1894b66301bce565471d6914d49ce91ee015",
      "tree": "0e05173ecdf31fff1426c78cec7d549ecdb9d47a",
      "parents": [
        "74398d3224c0942c479bef76de542e95c202a478"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Thu Apr 30 10:59:08 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 21:58:41 2009 -0400"
      },
      "message": "kconfig: do not warn about modules built in\n\nThe streamline_config.pl finds all the configs that are needed to\ncompile the currently loaded modules. After it creates the .config\nfile, it tests to make sure all the configs that are needed were\nset.\n\nIt only looks at the configs that are modules, it does not look\nat the builtin configs. This causes unnecessary warnings about modules\nnot being covered.\n\nReported-by: Ingo Molnar \u003cmingo@elte.hu\u003e\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "74398d3224c0942c479bef76de542e95c202a478",
      "tree": "bb68b0efa2de3c92aaf56619fd0c96ce2ae15f07",
      "parents": [
        "281c9dadc31ffd9f3cf637553134fefe75e849da"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Thu Apr 30 10:17:51 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 21:56:31 2009 -0400"
      },
      "message": "kconfig: streamline_config.pl do not stop with no depends\n\nIf a config does not have a prompt, it must be selected.\nstreamline_config.pl keeps track of all configs that select other configs.\nIf a config that does not have a prompt needs to be set to enable a\ncurrent module, it will include all configs that select it.\nNote, streamline_config.pl does not enable modules that are not already\nenabled. It only keeps enabled those that were enabled and might be\nneeded to compile the current modules.\n\nThe code to find the selects of a config is after the code that\nadds the depends. But if a config needed selects but had no dependencies,\nit would not be set. Because the code would stop before getting to\nthe select.\n\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "281c9dadc31ffd9f3cf637553134fefe75e849da",
      "tree": "b82f99ea127089502e588959f7799b253c93704b",
      "parents": [
        "03fa25da8335a942161a8070b3298cfd4edf9b6a"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Wed Apr 29 22:52:23 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 21:55:49 2009 -0400"
      },
      "message": "kconfig: add make localyesconfig option\n\nThis adds the option localyesconfig to make. This is similar to\nlocalmodconfig, but after it removes unnecessary modules it runs\n\n  sed -i s/\u003dm/\u003dy/\n\non the .config file. It then runs \"make silentoldconfig\" to fix any\nwholes that were created by the conversion of modules to core.\n\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "03fa25da8335a942161a8070b3298cfd4edf9b6a",
      "tree": "4ea1733fbd2d87d5d0014b0e362ec650d4e2f955",
      "parents": [
        "dcc60243e726978576cb02b74c84440629c69c87"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Wed Apr 29 22:52:22 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 21:54:28 2009 -0400"
      },
      "message": "kconfig: make localmodconfig to run streamline_config.pl\n\nRunning the streamline_config.pl script manually can still be confusing\nfor some users. This patch adds the localmodconfig option. This will\nautomatically run streamline_config.pl on the current .config and\nthen run \"make silentoldconfig\" to fix any wholes that might have been\ncreated.\n\n $ make localmodconfig\n\nThis will remove any module configurations in .config that are not needed\nto compile the modules that are loaded.\n\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "dcc60243e726978576cb02b74c84440629c69c87",
      "tree": "f1a4cd4a41c942118a21c3b1cb0b4857fe2c63e1",
      "parents": [
        "dc8ed71eeb8adce08d3070f4130e12ee540baa59"
      ],
      "author": {
        "name": "Steven Rostedt",
        "email": "srostedt@redhat.com",
        "time": "Wed Apr 29 22:52:21 2009 -0400"
      },
      "committer": {
        "name": "Steven Rostedt",
        "email": "rostedt@goodmis.org",
        "time": "Tue Aug 18 21:49:43 2009 -0400"
      },
      "message": "kconfig: add streamline_config.pl to scripts\n\nstreamline_config.pl is a very powerful tool. For those that install\na kernel to a new box using the config file from the distribution know that\nit can take forever to compile the kernel.\n\nMaking a custom config file that will still boot your box, but bring\ndown the compile time of the kernel can be quit painful, and to ask\nsomeone that reported a bug to do this can be a large burdon since that\nperson may not even know how to build a kernel.\n\nThis script will perform \"lsmod\" to find all the modules loaded on the\ncurrent running system. It will read all the Makefiles to map which\nCONFIG enables a module. It will read the Kconfig files to find the\ndependencies and selects that may be needed to support a CONFIG.\nFinally, it reads the .config file and removes any module \"\u003dm\" that is\nnot needed to enable the currently loaded modules. The output goes to\nstandard out.\n\nHere\u0027s a way to run the script. From the Linux directory that holds\na distribution .config.\n\n $ scripts/kconfig/streamline_config.pl arch/x86/Kconfig \u003e config-sl\n $ mv .config config-save\n $ mv config-sl .config\n $ make oldconfig\n\nNow you have a .config that will still build all your modules, but also\ntake much less time to build the kernel.\n\nSigned-off-by: Steven Rostedt \u003crostedt@goodmis.org\u003e\n"
    },
    {
      "commit": "d0e1e09568507ac771072d97f0781af82c935b3e",
      "tree": "33638f86c9e2cc8cc45aea81c50cc15787f4d1e7",
      "parents": [
        "668cdedfdb2eb00d8efe127618bead4d46d9e942"
      ],
      "author": {
        "name": "Arnaud Lacombe",
        "email": "lacombar@gmail.com",
        "time": "Mon Jul 06 00:07:28 2009 -0400"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Fri Jul 17 23:06:08 2009 +0200"
      },
      "message": "kconfig: initialize the screen before using curses(3) functions\n\nThis is needed on non ncurses based implementation to get a properly\ninitialized `stdscr\u0027 in main().\n\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "668cdedfdb2eb00d8efe127618bead4d46d9e942",
      "tree": "a5596492965dd16ae1499b52be28857377272679",
      "parents": [
        "241ad11f2d2542723136ffa81cd5db61d590156c"
      ],
      "author": {
        "name": "Arnaud Lacombe",
        "email": "lacombar@gmail.com",
        "time": "Mon Jul 06 00:07:14 2009 -0400"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Fri Jul 17 23:05:05 2009 +0200"
      },
      "message": "kconfig: variable argument lists needs `stdarg.h\u0027\n\nFix build on non GNU based platforms.\n\nCc: Roman Zippel \u003czippel@linux-m68k.org\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "12122f62324e7c6837ee8b0fa8d257ce7ebcfc6f",
      "tree": "5f4dff0d7a3612c45a87a2fb4ba2599484eea9fd",
      "parents": [
        "284026cdfb5a899e558dcb7a36aefaf54a78c094"
      ],
      "author": {
        "name": "Markus Heidelberg",
        "email": "markus.heidelberg@web.de",
        "time": "Mon May 18 01:36:54 2009 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Tue Jun 09 22:37:51 2009 +0200"
      },
      "message": "kconfig: do not hardcode \"include/config/auto.conf\" filename\n\nRegardless of KCONFIG_AUTOCONFIG, the filename written as a Make target\ninto \"include/config/auto.conf.cmd\" was always the default one.\n\nOf course this doesn\u0027t make it work for the Kernel kbuild system, since\nthere the filename is hardcoded at several places in the Makefiles.\n\nSigned-off-by: Markus Heidelberg \u003cmarkus.heidelberg@web.de\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "284026cdfb5a899e558dcb7a36aefaf54a78c094",
      "tree": "6a03143cbf7727132494cb68a1420940dc5b7d98",
      "parents": [
        "8d90c97e46930d01e9394bceb6276c7175136bdc"
      ],
      "author": {
        "name": "Markus Heidelberg",
        "email": "markus.heidelberg@web.de",
        "time": "Mon May 18 01:36:53 2009 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Tue Jun 09 22:37:51 2009 +0200"
      },
      "message": "kconfig: do not hardcode \".config\" filename\n\nRather than hardcoding \".config\" use conf_get_configname(), which also\nrespects the environment variable KCONFIG_CONFIG.\n\nThis fixes \"make silentoldconfig\" when KCONFIG_CONFIG is used and also\nsuggests the given filename for \"Load\" and \"Save as\" in qconf.\n\nSigned-off-by: Markus Heidelberg \u003cmarkus.heidelberg@web.de\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "8d90c97e46930d01e9394bceb6276c7175136bdc",
      "tree": "21046d46070559b34c81d8ad07f29604d1bc8a46",
      "parents": [
        "fbb86374445d97072dd994f1a4adf023bfd1e86e"
      ],
      "author": {
        "name": "Markus Heidelberg",
        "email": "markus.heidelberg@web.de",
        "time": "Mon May 18 01:36:52 2009 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Tue Jun 09 22:37:50 2009 +0200"
      },
      "message": "kconfig qconf: fix the type of the desktop widget\n\nQApplication::desktop() returns a pointer to QDesktopWidget, not to\nQWidget.\n\nFixes the following compiler error after a quick conversion with \u0027qt3to4\u0027,\nwhich occured with g++ 3.4.6 and 4.1.2, but not anymore with 4.3.2.\n\nscripts/kconfig/qconf.cc: In constructor \u0027ConfigMainWindow::ConfigMainWindow()\u0027:\nscripts/kconfig/qconf.cc:1289: error: cannot convert \u0027QDesktopWidget*\u0027 to \u0027QWidget*\u0027 in initialization\n\nSigned-off-by: Markus Heidelberg \u003cmarkus.heidelberg@web.de\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "fbb86374445d97072dd994f1a4adf023bfd1e86e",
      "tree": "f9ba36643b5a2a2d5fa3f44cd95e78b32a5c9e38",
      "parents": [
        "7298b936017859fce4906e38f485c131520fe857"
      ],
      "author": {
        "name": "Markus Heidelberg",
        "email": "markus.heidelberg@web.de",
        "time": "Mon May 18 01:36:51 2009 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Tue Jun 09 22:37:50 2009 +0200"
      },
      "message": "kconfig qconf: add namespace for use of Key_ enum values\n\nThey are defined in the \u0027Qt\u0027 namespace.\n\nFixes the following compiler errors after a quick conversion with \u0027qt3to4\u0027,\nwhich occured with g++ 3.4.6 and 4.1.2, but not anymore with 4.3.2.\n\nscripts/kconfig/qconf.cc: In member function \u0027virtual void ConfigLineEdit::keyPressEvent(QKeyEvent*)\u0027:\nscripts/kconfig/qconf.cc:311: error: \u0027Key_Escape\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:313: error: \u0027Key_Return\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:314: error: \u0027Key_Enter\u0027 was not declared in this scope\n\nscripts/kconfig/qconf.cc: In member function \u0027virtual void ConfigList::keyPressEvent(QKeyEvent*)\u0027:\nscripts/kconfig/qconf.cc:653: error: \u0027Key_Escape\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:666: error: \u0027Key_Return\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:667: error: \u0027Key_Enter\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:681: error: \u0027Key_Space\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:684: error: \u0027Key_N\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:687: error: \u0027Key_M\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:690: error: \u0027Key_Y\u0027 was not declared in this scope\n\nscripts/kconfig/qconf.cc: In constructor \u0027ConfigMainWindow::ConfigMainWindow()\u0027:\nscripts/kconfig/qconf.cc:1329: error: \u0027CTRL\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:1329: error: \u0027Key_Q\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:1331: error: \u0027Key_L\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:1333: error: \u0027Key_S\u0027 was not declared in this scope\nscripts/kconfig/qconf.cc:1340: error: \u0027Key_F\u0027 was not declared in this scope\n\nSigned-off-by: Markus Heidelberg \u003cmarkus.heidelberg@web.de\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "7298b936017859fce4906e38f485c131520fe857",
      "tree": "718c57096a4109e43afcafc593e8ec967c017186",
      "parents": [
        "98403a91389d11edd954e8f89dcffc3db525657f"
      ],
      "author": {
        "name": "Markus Heidelberg",
        "email": "markus.heidelberg@web.de",
        "time": "Mon May 18 01:36:50 2009 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Tue Jun 09 22:37:49 2009 +0200"
      },
      "message": "kconfig qconf: fix namespace for Horizontal and Vertical enum values\n\nThey were used as QSplitter::Horizontal resp. QSplitter::Vertical, but\nare defined in the \u0027Qt\u0027 namespace.\n\nFixes the following compiler errors after a quick conversion with \u0027qt3to4\u0027,\nwhich occured with g++ 3.4.6 and 4.1.2, but not anymore with 4.3.2.\n\nscripts/kconfig/qconf.cc: In constructor \u0027ConfigSearchWindow::ConfigSearchWindow(ConfigMainWindow*, const char*)\u0027:\nscripts/kconfig/qconf.cc:1213: error: \u0027Vertical\u0027 is not a member of \u0027QSplitter\u0027\n\nscripts/kconfig/qconf.cc: In constructor \u0027ConfigMainWindow::ConfigMainWindow()\u0027:\nscripts/kconfig/qconf.cc:1304: error: \u0027Horizontal\u0027 is not a member of \u0027QSplitter\u0027\nscripts/kconfig/qconf.cc:1311: error: \u0027Vertical\u0027 is not a member of \u0027QSplitter\u0027\n\nSigned-off-by: Markus Heidelberg \u003cmarkus.heidelberg@web.de\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "98403a91389d11edd954e8f89dcffc3db525657f",
      "tree": "bbfb429f1aed44ab7bc04c9d973889f7d1f648b6",
      "parents": [
        "c26dd719a5b9d94d12211f2d101bd7dffb7f9f1f"
      ],
      "author": {
        "name": "Markus Heidelberg",
        "email": "markus.heidelberg@web.de",
        "time": "Mon May 18 01:36:49 2009 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@ravnborg.org",
        "time": "Tue Jun 09 22:37:48 2009 +0200"
      },
      "message": "kconfig qconf: fix -Wall compiler warnings\n\nThese compiler warnings occure when adding -Wall to HOSTCXXFLAGS in\n/Makefile\n\nscripts/kconfig/qconf.h: In constructor ‘ConfigInfoView::ConfigInfoView(QWidget*, const char*)’:\nscripts/kconfig/qconf.h:274: warning: ‘ConfigInfoView::menu’ will be initialized after\nscripts/kconfig/qconf.h:273: warning:   ‘symbol* ConfigInfoView::sym’\nscripts/kconfig/qconf.cc:922: warning:   when initialized here\n\nscripts/kconfig/qconf.cc: In member function ‘void ConfigMainWindow::setMenuLink(menu*)’:\nscripts/kconfig/qconf.cc:1498: warning: enumeration value ‘menuMode’ not handled in switch\nscripts/kconfig/qconf.cc:1498: warning: enumeration value ‘listMode’ not handled in switch\n\nscripts/kconfig/qconf.cc: In member function ‘void ConfigMainWindow::saveSettings()’:\nscripts/kconfig/qconf.cc:1664: warning: enumeration value ‘menuMode’ not handled in switch\nscripts/kconfig/qconf.cc:1664: warning: enumeration value ‘listMode’ not handled in switch\n\nSigned-off-by: Markus Heidelberg \u003cmarkus.heidelberg@web.de\u003e\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    }
  ],
  "next": "c26dd719a5b9d94d12211f2d101bd7dffb7f9f1f"
}
