)]}'
{
  "log": [
    {
      "commit": "6e5c99643b199e064f1e8090d963671965ced1d7",
      "tree": "c5079b4d7de61ed810e5241021b5005d35990ba7",
      "parents": [
        "92b99ee435ebafa5e503b19dce753079ad35218d"
      ],
      "author": {
        "name": "Soby Mathew",
        "email": "soby.mathew@arm.com",
        "time": "Fri Oct 06 16:38:13 2023 +0100"
      },
      "committer": {
        "name": "Shruti Gupta",
        "email": "shruti.gupta@arm.com",
        "time": "Tue Oct 10 14:31:18 2023 +0100"
      },
      "message": "fix(rme): append realm.bin at end of tftf.bin\n\nCurrently realm.bin is appended to tftf.bin at offset of 10 MB.\nThis patch removes this dependency by reserving empty sections\nfor realm image and dependencies, in tftf binary after\nall loadable sections (end of binary),\nand append realm.bin at end of tftf.bin later in build process.\n\nThe patch removes the need for TFTF to map memory corresponding\nto Realm payload dynamically at runtime.\n\nChange-Id: Iead2dc62ff2965cf7bb03e61c93e76df218da973\nSigned-off-by: Shruti Gupta \u003cshruti.gupta@arm.com\u003e\n"
    },
    {
      "commit": "f667cda23a83e293b0a81cc4fba94d6a005313a0",
      "tree": "e379d0c4466931f1f10e7e2de2491ea6f1650549",
      "parents": [
        "d2a6364cbe2281bcdfbadccceea995db7b63e3b9"
      ],
      "author": {
        "name": "Jayanth Dodderi Chidanand",
        "email": "jayanthdodderi.chidanand@arm.com",
        "time": "Tue Jun 27 15:01:52 2023 +0100"
      },
      "committer": {
        "name": "Jayanth Dodderi Chidanand",
        "email": "jayanthdodderi.chidanand@arm.com",
        "time": "Thu Aug 17 14:26:21 2023 +0100"
      },
      "message": "docs: add note on building TFA-Tests using clang\n\nSigned-off-by: Jayanth Dodderi Chidanand \u003cjayanthdodderi.chidanand@arm.com\u003e\nChange-Id: I1e9bb7df2a7eb4977901f4ad67f9fa5f292963f6\n"
    },
    {
      "commit": "c973b2a60d860775d945b1186b8ca0dfaf29286a",
      "tree": "630753887c069f9f5d1eac2539153f84911eb648",
      "parents": [
        "9d0cfe88aedc34f1b61a51ff18013743c56e2fbc"
      ],
      "author": {
        "name": "Shruti Gupta",
        "email": "shruti.gupta@arm.com",
        "time": "Wed Jul 12 12:10:54 2023 +0100"
      },
      "committer": {
        "name": "Soby Mathew",
        "email": "soby.mathew@arm.com",
        "time": "Wed Aug 02 11:17:52 2023 +0100"
      },
      "message": "feat(rme) : introduce new build flag for RME stack\n\n* Introduce new build flag ENABLE_REALM_PAYLOAD_TESTS to build\n  Realm Payload Tests and pack realm image to tftf.bin.\n* Also enable PAuth for TFTF and Realm Payload by default\n  for RME stack.\n* This commit deprecates the use of `pack_realm` build target.\n* The patch also modifies the user guide instructions to build\n  and pack realm payload tests.\n\nNOTE: The `pack_realm` build target, even though deprecated,\nis still available for compatibility reasons. It will be\nremoved in a future commit.\n\nSigned-off-by: Shruti Gupta \u003cshruti.gupta@arm.com\u003e\nChange-Id: Iaa83651c2f41152a5a2bf4d0b9caa550f302da6b\n"
    },
    {
      "commit": "0199b6aa571686cc5d2473c64c94214fbbe63896",
      "tree": "d3fb20a81e2b42cccab1aa507d167965f7a5098c",
      "parents": [
        "e29164adb371ac6431cd25998c89cc8f93d9bc89"
      ],
      "author": {
        "name": "Harrison Mutai",
        "email": "harrison.mutai@arm.com",
        "time": "Mon Jul 03 11:24:41 2023 +0100"
      },
      "committer": {
        "name": "Harrison Mutai",
        "email": "harrison.mutai@arm.com",
        "time": "Mon Jul 03 17:52:49 2023 +0100"
      },
      "message": "fix(docs): make generate_test_list backward compatible\n\nThe recently introduced script generate_test_list.py [1] relies on\nfeatures from Python 3.9. This breaks the build for users using earlier\npython versions e.g.  python 3.8 deployed in Ubuntu 20.04 LTS. Bump the\nminimum version requirements and make the script backward compatible\nwith older versions of Python.\n\n[1] https://review.trustedfirmware.org/c/TF-A/tf-a-tests/+/21135\n\nChange-Id: I07fd47af0309787b08cd0f77aaeb7d50b9cae144\nSigned-off-by: Harrison Mutai \u003charrison.mutai@arm.com\u003e\n"
    },
    {
      "commit": "7ba27bf9b56fe5981317b4434525633a678329b8",
      "tree": "7081d09eb082edf72601449154f9162ff0b8fd54",
      "parents": [
        "677c2b895f41b5cbe8a3b14c149871ce07381476"
      ],
      "author": {
        "name": "Jim Ray",
        "email": "jimray@google.com",
        "time": "Thu May 25 14:11:51 2023 -0700"
      },
      "committer": {
        "name": "Jim Ray",
        "email": "jimray@google.com",
        "time": "Thu Jun 29 23:47:34 2023 -0700"
      },
      "message": "refactor(build): python generate_test_list script\n\nThis change introduces generate_test_list.py which is exactly like\ngenerate_test_list.pl except written in python. This helps remove a\ndependency on perl as well as a dependency on perl\u0027s libxml bindings.\nThe only required dependency is python3 and its standard library.\n\nTested by generating tests_list.c/h for each xml file and each platform\nand comparing it against the output from the original script.\n\nSigned-off-by: Jim Ray \u003cjimray@google.com\u003e\nChange-Id: If0fa8d0e45bf58ce35081aaeb7a9320dfcefdbf9\n"
    },
    {
      "commit": "5eceaa38c11f77c20f2a8c3e784512a41a2c4905",
      "tree": "4e18407b2b2676f0ccddfc3aec4397981484c6ed",
      "parents": [
        "8b2e34659a9c44a24c116a30c379aa93a007dff6"
      ],
      "author": {
        "name": "Govindraj Raja",
        "email": "govindraj.raja@arm.com",
        "time": "Fri May 12 15:03:02 2023 -0500"
      },
      "committer": {
        "name": "Govindraj Raja",
        "email": "govindraj.raja@arm.com",
        "time": "Mon May 15 21:22:15 2023 +0100"
      },
      "message": "docs: update ubuntu version used\n\nIn CI we have moved to jammy docker images based out of ubuntu 22.04,\nupdating docs to reflect that.\n\nSigned-off-by: Govindraj Raja \u003cgovindraj.raja@arm.com\u003e\nChange-Id: I9fc2eeb29ca6d677f640cbe1c4caa09842e12aa4\n"
    },
    {
      "commit": "968c95f4e9e33e2504db42c41670ab021bd5bdb0",
      "tree": "54641aa242b54b74ad5bd2ceca3debc93b65b632",
      "parents": [
        "03b60a805e64023c0bccc8ce1105261f1d4aa644"
      ],
      "author": {
        "name": "Jayanth Dodderi Chidanand",
        "email": "jayanthdodderi.chidanand@arm.com",
        "time": "Tue Apr 18 10:46:21 2023 +0100"
      },
      "committer": {
        "name": "Jayanth Dodderi Chidanand",
        "email": "jayanthdodderi.chidanand@arm.com",
        "time": "Tue May 02 14:50:53 2023 +0100"
      },
      "message": "docs: update toolchain requirements documentation\n\nSigned-off-by: Jayanth Dodderi Chidanand \u003cjayanthdodderi.chidanand@arm.com\u003e\nChange-Id: I71c26e77e45a94f9e7d15e7ef5e1ea29eb9567c6\n"
    },
    {
      "commit": "40777f82efb1854ab815f501059ac58430cba888",
      "tree": "349cef469973eb41ef7a58e914baeb57a67d5284",
      "parents": [
        "f7b3be91ab954c495912fc7bc48383cd83bfec2d"
      ],
      "author": {
        "name": "Olivier Deprez",
        "email": "olivier.deprez@arm.com",
        "time": "Wed Nov 09 10:15:28 2022 +0100"
      },
      "committer": {
        "name": "Olivier Deprez",
        "email": "olivier.deprez@arm.com",
        "time": "Tue Nov 22 13:36:28 2022 +0100"
      },
      "message": "refactor: remove deprecated spm libs and test code\n\nRemove references to former SPCI/SPRT implementation pre-dating now\nreleased FF-A specification.\nRemove the sample quark partition image based on those deprecated\nspecifications.\n\nSigned-off-by: Olivier Deprez \u003colivier.deprez@arm.com\u003e\nChange-Id: I5b4e51457307c4ff5befd46132fd26d4ef21cdfa\n"
    },
    {
      "commit": "2a5b1502b85dc1a8c6ca1190002fbaddc4636d04",
      "tree": "4401efb720ab5f0ad8c7de7844399c300c87e271",
      "parents": [
        "6941bdf96b402704e5234a43da5099972dcce946"
      ],
      "author": {
        "name": "Soby Mathew",
        "email": "soby.mathew@arm.com",
        "time": "Wed Nov 02 04:29:07 2022 +0000"
      },
      "committer": {
        "name": "Soby Mathew",
        "email": "soby.mathew@arm.com",
        "time": "Thu Nov 10 12:28:16 2022 +0100"
      },
      "message": "docs: add userguide for realm payload testing\n\nSigned-off-by: Soby Mathew \u003csoby.mathew@arm.com\u003e\nChange-Id: Iac306f74d4e3a818bee3609f1f6dfd96661d7343\n"
    },
    {
      "commit": "25ecf4bc2b67a6715632a4645c99827d6c87318e",
      "tree": "17bb521d449f93150e456774f128932ceccccc49",
      "parents": [
        "48bdf4c5f570e4dc7383d725bea26a731b50d725"
      ],
      "author": {
        "name": "Jayanth Dodderi Chidanand",
        "email": "jayanthdodderi.chidanand@arm.com",
        "time": "Wed Sep 21 14:10:59 2022 +0100"
      },
      "committer": {
        "name": "Jayanth Dodderi Chidanand",
        "email": "jayanthdodderi.chidanand@arm.com",
        "time": "Wed Sep 21 14:10:59 2022 +0100"
      },
      "message": "docs: update toolchain requirements documentation\n\nSigned-off-by: Jayanth Dodderi Chidanand \u003cjayanthdodderi.chidanand@arm.com\u003e\nChange-Id: I5dea3081ca2d0587ce71aa160d9dfaccf84ba2a7\n"
    },
    {
      "commit": "cc8740b4040ce39a13bc8ab2b5f52d8ad0274726",
      "tree": "c1645f8253f4529384393e8e8accc79b90adfccf",
      "parents": [
        "76c458a1fd6318f9d8fd7ab142985389d6b7db78"
      ],
      "author": {
        "name": "Daniel Boulby",
        "email": "daniel.boulby@arm.com",
        "time": "Fri May 20 10:21:55 2022 +0100"
      },
      "committer": {
        "name": "Daniel Boulby",
        "email": "daniel.boulby@arm.com",
        "time": "Fri May 20 10:23:55 2022 +0100"
      },
      "message": "docs: update requirements documentation\n\nSigned-off-by: Daniel Boulby \u003cdaniel.boulby@arm.com\u003e\nChange-Id: I7f0037e772d009b9c00ed81c850a9859abeeaa54\n"
    },
    {
      "commit": "a757366f7aab57ab8288364241feb9780c5f20d5",
      "tree": "09c04aef952cd52713a886deafcfb87658beb0b0",
      "parents": [
        "5173bc2016355759ec34ba229c1c8a4e695ddff4"
      ],
      "author": {
        "name": "Olivier Deprez",
        "email": "olivier.deprez@arm.com",
        "time": "Fri May 07 18:58:03 2021 +0200"
      },
      "committer": {
        "name": "Olivier Deprez",
        "email": "olivier.deprez@arm.com",
        "time": "Wed May 12 10:24:08 2021 +0200"
      },
      "message": "docs: refreshed spm tests section\n\nChange-Id: I2fb8d3f390c861333d47ac14a6043751ed2cdbb3\nSigned-off-by: Olivier Deprez \u003colivier.deprez@arm.com\u003e\n"
    },
    {
      "commit": "d92f4cef8c544ea1b3c8d48908ac1118930ed51c",
      "tree": "27a7b8e578b1639ba96bc4ca19bc2175e41ccc95",
      "parents": [
        "23e031b4822ad96753e8bae8f8586f034e38a5ab"
      ],
      "author": {
        "name": "Alexei Fedorov",
        "email": "Alexei.Fedorov@arm.com",
        "time": "Mon Dec 07 18:13:28 2020 +0000"
      },
      "committer": {
        "name": "Alexei Fedorov",
        "email": "Alexei.Fedorov@arm.com",
        "time": "Thu Dec 10 08:56:45 2020 +0000"
      },
      "message": "TFTF: Add build option for Arm Feature Modifiers\n\nThis patch adds a new ARM_ARCH_FEATURE build option\nto add support for compiler\u0027s feature modifiers.\nIt has the form \u0027[no]feature+...\u0027 and defaults to\n\u0027none\u0027. This option translates into compiler option\n\u0027-march\u003darmvX[.Y]-a+[no]feature+...\u0027.\n\nSigned-off-by: Alexei Fedorov \u003cAlexei.Fedorov@arm.com\u003e\nChange-Id: I115a921c777b7932523d2dff8e8e03377d87bb78\n"
    },
    {
      "commit": "6ca80a23bb906db4e0ff51d398877937e8972d38",
      "tree": "5a6bf18169c0170670a1bfced989f47441aa8ead",
      "parents": [
        "8c65f72e903377d42b78239eefc6e0d78166e8c1"
      ],
      "author": {
        "name": "Leonardo Sandoval",
        "email": "leonardo.sandoval@linaro.org",
        "time": "Thu Oct 15 12:15:55 2020 -0500"
      },
      "committer": {
        "name": "Leonardo Sandoval",
        "email": "leonardo.sandoval@linaro.org",
        "time": "Thu Oct 15 12:18:09 2020 -0500"
      },
      "message": "requirements.rst: remove make as package dependency\n\nThe package make is part of build-essential, which is previously\ninstalled, thus there is no need to install it explicitly.\n\nSigned-off-by: Leonardo Sandoval \u003cleonardo.sandoval@linaro.org\u003e\nChange-Id: Ie95f2f87057ef144123578fd4e28668164eed3a3\n"
    },
    {
      "commit": "953ec59b3ed74380c690e550c85eefe19b07716f",
      "tree": "2293a7fcfa63ed11dd88b4bb65e1249f9052c79b",
      "parents": [
        "56c3942b4eaa2ad85749b11d5895fad6bfb5b61c",
        "7fac162cd9439783ef60aaf266d22ad454445ace"
      ],
      "author": {
        "name": "Olivier Deprez",
        "email": "olivier.deprez@arm.com",
        "time": "Tue Aug 18 14:55:16 2020 +0000"
      },
      "committer": {
        "name": "TrustedFirmware Code Review",
        "email": "review@review.trustedfirmware.org",
        "time": "Tue Aug 18 14:55:16 2020 +0000"
      },
      "message": "Merge changes from topic \"af/add_branch_protection_makefiles\"\n\n* changes:\n  TFTF: Add ARMv8.5 BTI support in makefiles\n  TFTF: Add ARMv8.5 BTI support in xlat_tables_v2 library\n  TFTF: Add ARMv8.5 BTI support in assembler files\n  TFTF: Add ARMv8.5 BTI-related definitions\n"
    },
    {
      "commit": "7fac162cd9439783ef60aaf266d22ad454445ace",
      "tree": "0696ee3d15d1e4fcdfe3f1172f0c2c3dddc06ada",
      "parents": [
        "d6fdb6b10147038d99643a7547821c3cff76ce76"
      ],
      "author": {
        "name": "Alexei Fedorov",
        "email": "Alexei.Fedorov@arm.com",
        "time": "Fri Jun 19 14:25:43 2020 +0100"
      },
      "committer": {
        "name": "Alexei Fedorov",
        "email": "Alexei.Fedorov@arm.com",
        "time": "Tue Aug 18 14:52:49 2020 +0000"
      },
      "message": "TFTF: Add ARMv8.5 BTI support in makefiles\n\nThis patch adds \u0027BRANCH_PROTECTION\u0027 build option in\nTFTF makefiles which corresponds to that in TF-A.\nThe option values are documented in \u0027build-options.rst\u0027\n\nSigned-off-by: Alexei Fedorov \u003cAlexei.Fedorov@arm.com\u003e\nChange-Id: Iad5083aee339cec574acf5e7ab1fd8142877a122\n"
    },
    {
      "commit": "5b5bc209f4fa16ff9efdb3ae2fe97d810463aab3",
      "tree": "2bf110dfeb2b735daa08c18f1ff6cb65af9bd344",
      "parents": [
        "8499afc44a1642b50fce554d4fdc9356d07d53a0"
      ],
      "author": {
        "name": "Leonardo Sandoval",
        "email": "leonardo.sandoval@linaro.org",
        "time": "Tue Jul 14 10:05:23 2020 -0500"
      },
      "committer": {
        "name": "Leonardo Sandoval",
        "email": "leonardo.sandoval@linaro.org",
        "time": "Fri Jul 17 09:49:21 2020 -0500"
      },
      "message": "doc: use docker to build documentation\n\ndocker (container) is another way to build the documentation and fortunately\nthere is already a docker image (sphinxdoc/sphinx) with sphinx so we can use\nit to generate the documentation.\n\nChange-Id: I33fba6c5e4810e20546559c80a8f2eecabd4c123\nSigned-off-by: Leonardo Sandoval \u003cleonardo.sandoval@linaro.org\u003e\n"
    },
    {
      "commit": "da6ac4e88966d81ec8bef22714ac1c0e787f176a",
      "tree": "6ad204bf24455fd657ab45432b9905d5c8a469a4",
      "parents": [
        "424e11b5224a5f474a657ccb6057a0ffa43c2d60",
        "abf254fdd443ba98f23bf0fd8c51991533cd50a7"
      ],
      "author": {
        "name": "Lauren Wehrmeister",
        "email": "lauren.wehrmeister@arm.com",
        "time": "Wed Jul 01 17:04:23 2020 +0000"
      },
      "committer": {
        "name": "TrustedFirmware Code Review",
        "email": "review@review.trustedfirmware.org",
        "time": "Wed Jul 01 17:04:23 2020 +0000"
      },
      "message": "Merge \"include \u0027path/to\u0027 prefix when specifying tftf.bin on make fip cmd\""
    },
    {
      "commit": "abf254fdd443ba98f23bf0fd8c51991533cd50a7",
      "tree": "d0b4c4b1db776b3f97203147e394f566db13b0b2",
      "parents": [
        "a117303c1eeab7599588eab35f220eaeca282a24"
      ],
      "author": {
        "name": "Leonardo Sandoval",
        "email": "leonardo.sandoval@linaro.org",
        "time": "Mon Jun 29 17:46:28 2020 -0500"
      },
      "committer": {
        "name": "Leonardo Sandoval",
        "email": "leonardo.sandoval@linaro.org",
        "time": "Mon Jun 29 17:51:28 2020 -0500"
      },
      "message": "include \u0027path/to\u0027 prefix when specifying tftf.bin on make fip cmd\n\nSigned-off-by: Leonardo Sandoval \u003cleonardo.sandoval@linaro.org\u003e\nChange-Id: I7c316acd486346332403c758f632147ab71c48f2\n"
    },
    {
      "commit": "7cc2587da605299e175444350c064c589ad09803",
      "tree": "e41b02ff4ba15df29582eaddb8f8e688a6ec4a8f",
      "parents": [
        "9060e3e68241a3fc1ad8588c20a97218c34c6c68"
      ],
      "author": {
        "name": "Alexei Fedorov",
        "email": "Alexei.Fedorov@arm.com",
        "time": "Tue Jun 02 16:35:36 2020 +0100"
      },
      "committer": {
        "name": "Alexei Fedorov",
        "email": "Alexei.Fedorov@arm.com",
        "time": "Thu Jun 04 13:30:22 2020 +0000"
      },
      "message": "TFTF: get FVP platform\u0027s topology from build options\n\nThis patch extends passing FVP topology parameters with\nFVP_CLUSTER_COUNT and FVP_MAX_CPUS_PER_CLUSTER build\noptions to match TF-A. The change adds more test options,\nmake FVP platform configuration more flexible and eliminates\ntest errors when the platform is configured with number\nof CPUs less than default values in the makefile.\nThese build options are documented in \u0027Arm FVP Platform\nSpecific Build Options\u0027 section of \u0027build-options.rst\u0027\ndocument.\n\nSigned-off-by: Alexei Fedorov \u003cAlexei.Fedorov@arm.com\u003e\nChange-Id: I01c6437d468885755a5415804b3688e4c878170d\n"
    },
    {
      "commit": "353183426943a33244a3384b6ebb5b743d5c501a",
      "tree": "bdfd2527ede0fe8f9d5959351d4921caa7a36379",
      "parents": [
        "5652c4be41a02395869a444e43f0595b37f06299"
      ],
      "author": {
        "name": "Sandrine Bailleux",
        "email": "sandrine.bailleux@arm.com",
        "time": "Wed Apr 22 11:05:19 2020 +0200"
      },
      "committer": {
        "name": "Sandrine Bailleux",
        "email": "sandrine.bailleux@arm.com",
        "time": "Tue Apr 28 08:49:28 2020 +0000"
      },
      "message": "doc: Explain how to locally build the documentation\n\nAdd a document that provides instructions on how to build a rendered\nversion of the documentation using the Sphinx tool.\n\nChange-Id: I57159ec867a3ba7e003e7c7cd6ac53fb190356f2\nSigned-off-by: Sandrine Bailleux \u003csandrine.bailleux@arm.com\u003e\n"
    },
    {
      "commit": "4844dc90e9148c950c65eca85d859f41e78ecd5e",
      "tree": "4c2b329ca8c3adcacb2c9f714b9b14dcd527a745",
      "parents": [
        "ff08d3e42cb896e9b47abe116e35325eececb7ba"
      ],
      "author": {
        "name": "Jimmy Brisson",
        "email": "jimmy.brisson@arm.com",
        "time": "Thu Apr 02 15:19:34 2020 -0500"
      },
      "committer": {
        "name": "Jimmy Brisson",
        "email": "jimmy.brisson@arm.com",
        "time": "Mon Apr 20 10:04:20 2020 -0500"
      },
      "message": "doc: Update link formats\n\nUse docutils/Sphinx-type linking with the :ref: keyword where\npossible, instead of direct links to files.\n\nAs part of this patch some external links have been updated too,\nespecially those that point to the TF-A docs. Some link targets\nare no longer valid but can be restored after the TF-A User Guide\nis split up.\n\nChange-Id: I328d5141cf9b32471bf669bfc0191e8f6f883a48\nSigned-off-by: Paul Beesley \u003cpaul.beesley@arm.com\u003e\nSigned-off-by: Jimmy Brisson \u003cjimmy.brisson@arm.com\u003e\n"
    },
    {
      "commit": "ff08d3e42cb896e9b47abe116e35325eececb7ba",
      "tree": "a947d3fa8c76f57bec6b2e256d406fb4df1e58dd",
      "parents": [
        "6fcd961325227ec0cb54e8b8ab2c9dc9a52a4739"
      ],
      "author": {
        "name": "Jimmy Brisson",
        "email": "jimmy.brisson@arm.com",
        "time": "Thu Apr 02 15:19:27 2020 -0500"
      },
      "committer": {
        "name": "Jimmy Brisson",
        "email": "jimmy.brisson@arm.com",
        "time": "Mon Apr 20 10:04:20 2020 -0500"
      },
      "message": "doc: Update page content after re-arrangement\n\nThis patch modifies the content of existing documents now that\nit has been moved around. Some of the content requires updating\nto make sense in its new location, for example. Other content may\nsimply be out of date.\n\nChange-Id: I8dfa527e1d1f1520cefd21066802451352b573d2\nSigned-off-by: Paul Beesley \u003cpaul.beesley@arm.com\u003e\nSigned-off-by: Jimmy Brisson \u003cjimmy.brisson@arm.com\u003e\n"
    },
    {
      "commit": "0862f0152af1f4f9a2661ba993ce3f3c021aa387",
      "tree": "23ba46f0ad464e0e21f752045e054e421ae5033c",
      "parents": [
        "ca6bd89c13342cdcf8ad7a1fc71c8bf8646f1f41"
      ],
      "author": {
        "name": "Jimmy Brisson",
        "email": "jimmy.brisson@arm.com",
        "time": "Thu Apr 02 15:19:12 2020 -0500"
      },
      "committer": {
        "name": "Jimmy Brisson",
        "email": "jimmy.brisson@arm.com",
        "time": "Mon Apr 20 10:04:20 2020 -0500"
      },
      "message": "doc: Migrate content from User Guide and update it\n\nThe User Guide document holds many different bits of\ninformation that are not always related to each other. These\nare moved out into files where information is grouped tightly\ntogether.\n\nThis also updates build instructions and environment variable\ninstructions to link to the relevent parts of the TF-A user guide\nand use more recent versions of compiler, respetively.\n\nChange-Id: Iace851f93c7dea8f154ae52a2665dd599f2e5d72\nSigned-off-by: Paul Beesley \u003cpaul.beesley@arm.com\u003e\nSigned-off-by: Jimmy Brisson \u003cjimmy.brisson@arm.com\u003e\n"
    },
    {
      "commit": "ca6bd89c13342cdcf8ad7a1fc71c8bf8646f1f41",
      "tree": "2461e5b6e09a8c88d31d51b3ac2fc447f0c47728",
      "parents": [
        "0ea83cf3d834b2c5da24ee416988e9c1697f63f6"
      ],
      "author": {
        "name": "Jimmy Brisson",
        "email": "jimmy.brisson@arm.com",
        "time": "Thu Apr 02 15:19:08 2020 -0500"
      },
      "committer": {
        "name": "Jimmy Brisson",
        "email": "jimmy.brisson@arm.com",
        "time": "Mon Apr 20 10:04:20 2020 -0500"
      },
      "message": "doc: Move tools info to Getting Started chapter\n\nThe Getting Started chapter will hold information on\nrequirements and on performing initial set-up and build\nactivities.\n\nChange-Id: Iacf14a049b20f59c84aeaefa1271255ed60a8a5b\nSigned-off-by: Paul Beesley \u003cpaul.beesley@arm.com\u003e\nSigned-off-by: Jimmy Brisson \u003cjimmy.brisson@arm.com\u003e\n"
    }
  ]
}
