)]}'
{
  "log": [
    {
      "commit": "0f1d884d3aad334dc603303b7cc2a79aae9b2057",
      "tree": "cf2a33b1efe33bbf57e5c57fc4afdd9d1471df3d",
      "parents": [
        "d78ffa0dcc2584b0ec35bdb6e585d092359ee74f"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Tue Oct 09 15:52:06 2007 +0900"
      },
      "committer": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Tue Oct 09 15:52:06 2007 +0900"
      },
      "message": "sh64: Set KBUILD_IMAGE to make the rpm target happy.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\n"
    },
    {
      "commit": "d00677255077c3b085a32c1a104fc42a64d17e6f",
      "tree": "a02f2c2c7da7cfbb7b8dc917470ce83f05aa52eb",
      "parents": [
        "4e99b0b8d2e5a72b0fd27136fb3c0f08fc1da395"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Oct 01 16:20:41 2007 +0900"
      },
      "committer": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Mon Oct 01 16:20:41 2007 +0900"
      },
      "message": "sh64: Kill off dead ROM-RAM and generic boards.\n\nThe generic board stubs were never added, and the ROM-RAM boards\nnever made it in to the wild. Neither one has any users, and both\nare utterly broken in-tree (likely since 2.4). Kill them both off.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\n"
    },
    {
      "commit": "ccdfc526a92c5ebb549a7de06adca3fd54f03c7e",
      "tree": "81125623328b30bc8a80b9b5736f748947eed5f9",
      "parents": [
        "05ff0e291af086f4325bac76abad250690bbbd63"
      ],
      "author": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Tue Sep 12 14:21:25 2006 +0900"
      },
      "committer": {
        "name": "Paul Mundt",
        "email": "lethal@linux-sh.org",
        "time": "Tue Sep 12 14:21:25 2006 +0900"
      },
      "message": "sh64: Drop deprecated ISA tuning for legacy toolchains.\n\nThe original sh64 toolchains required that we tune the ISA\nlevel accordingly to not have head.S/entry.S blow up. With\ncurrent toolchains, this is no longer the case, and the\nsyntax magically changed as well, causing all current\ntoolchains to die a horrible death.\n\nIncidentally, code generation in other parts of the kernel\nis now significantly complex enough that none of the older\ntoolchains make it very far these days, so there\u0027s not\neven any point in preserving legacy compatability via\nas-option.\n\nThis fixes a long-standing issue, as noted here:\n\n\thttp://lkml.org/lkml/2005/1/5/223\n\nThough at the time the current toolchains were too broken\nto make adjusting the tuning worthwhile.\n\nSigned-off-by: Paul Mundt \u003clethal@linux-sh.org\u003e\n"
    },
    {
      "commit": "5bb78269000cf326bfdfa19f79449c02a9158020",
      "tree": "f01e30e8d8f015cb0418331da55a459ddcfc9569",
      "parents": [
        "9fe66dfd8846706ff11ed7990d06c92644973bd8"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@mars.ravnborg.org",
        "time": "Sun Sep 11 22:30:22 2005 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@mars.ravnborg.org",
        "time": "Sun Sep 11 22:30:22 2005 +0200"
      },
      "message": "kbuild: rename prepare to archprepare to fix dependency chain\n\nWhen introducing the generic asm-offsets.h support the dependency\nchain for the prepare targets was changed. All build scripts expecting\ninclude/asm/asm-offsets.h to be made when using the prepare target would broke.\nWith the limited number of prepare targets left in arch Makefiles\nthe trivial solution was to introduce a new arch specific target: archprepare\n\nThe dependency chain looks like this now:\n\nprepare\n  |\n  +--\u003e prepare0\n         |\n         +--\u003e archprepare\n                |\n\t\t+--\u003e scripts_basic\n                +--\u003e prepare1\n                       |\n                       +---\u003e prepare2\n                               |\n                               +--\u003e prepare3\n\nSo prepare 3 is processed before prepare2 etc.\nThis guaantees that the asm symlink, version.h, scripts_basic\nare all updated before archprepare is processed.\n\nprepare0 which build the asm-offsets.h file will need the\nactions performed by archprepare.\n\nThe head target is now named prepare, because users scripts will most\nlikely use that target, but prepare-all has been kept for compatibility.\nUpdated Documentation/kbuild/makefiles.txt.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "cca6e6f5f473ec63e85c87dfc77279ce1ca114e6",
      "tree": "93fb15884d526cd5de8b3b726a893d6b6ca8eea4",
      "parents": [
        "86feeaa8120bb1b0ab21efed49e9754039395ef1"
      ],
      "author": {
        "name": "Sam Ravnborg",
        "email": "sam@mars.(none)",
        "time": "Fri Sep 09 20:28:49 2005 +0200"
      },
      "committer": {
        "name": "Sam Ravnborg",
        "email": "sam@mars.(none)",
        "time": "Fri Sep 09 20:28:49 2005 +0200"
      },
      "message": "kbuild: h8300,m68knommu,sh,sh64 use generic asm-offsets.h support\n\nh8300, m68knommu, sh and sh64 all used the name asm-offsets.h so minimal\nchanges required.\n\nSigned-off-by: Sam Ravnborg \u003csam@ravnborg.org\u003e\n"
    },
    {
      "commit": "1da177e4c3f41524e886b7f1b8a0c1fc7321cac2",
      "tree": "0bba044c4ce775e45a88a51686b5d9f90697ea9d",
      "parents": [],
      "author": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "committer": {
        "name": "Linus Torvalds",
        "email": "torvalds@ppc970.osdl.org",
        "time": "Sat Apr 16 15:20:36 2005 -0700"
      },
      "message": "Linux-2.6.12-rc2\n\nInitial git repository build. I\u0027m not bothering with the full history,\neven though we have it. We can create a separate \"historical\" git\narchive of that later if we want to, and in the meantime it\u0027s about\n3.2GB when imported into git - space that would just make the early\ngit days unnecessarily complicated, when we don\u0027t have a lot of good\ninfrastructure for it.\n\nLet it rip!\n"
    }
  ]
}
