)]}'
{
  "log": [
    {
      "commit": "3665b7eda217ded44a54af7161306efda60e2a59",
      "tree": "719d84c92a8701c9ed88a77811851492c60ac822",
      "parents": [
        "7fbe70043fd7ea30be85e380d7674e4757f4571e"
      ],
      "author": {
        "name": "Alex Vakulenko",
        "email": "avakulenko@google.com",
        "time": "Thu Apr 21 13:34:35 2016 -0700"
      },
      "committer": {
        "name": "Alex Vakulenko",
        "email": "avakulenko@google.com",
        "time": "Thu Apr 21 20:42:46 2016 +0000"
      },
      "message": "dragonboard: Update weaved.conf to use the new local_access_enabled setting\n\nlibweave/weaved combined local_discovery_enabled and local_pairing_enabled into\nlocal_access_enabled setting, so updating existing .conf file to include the\nnew spelling of this setting\n\nChange-Id: Id170c32b913b501760ac5257716f8c85c1ce3a01\n"
    },
    {
      "commit": "7fbe70043fd7ea30be85e380d7674e4757f4571e",
      "tree": "e49ad557a4756576436a24dbeef08c0a8b9332b2",
      "parents": [
        "b508838b79b72ed5349c1ede3394b5776d153a19"
      ],
      "author": {
        "name": "Alex Vakulenko",
        "email": "avakulenko@google.com",
        "time": "Thu Jan 07 08:30:54 2016 -0800"
      },
      "committer": {
        "name": "Alex Vakulenko",
        "email": "avakulenko@google.com",
        "time": "Thu Jan 07 08:30:54 2016 -0800"
      },
      "message": "dragonboard: Remove references to ultrasound32 and audible32\n\nThese were mentioned in comment sections of the conf file but these\npairing modes are no longer supported.\n\nBUG: 26441921\nChange-Id: I7b3dd215c7dd8124aaf8d058b6239b6aa44bb1ef\n"
    },
    {
      "commit": "b508838b79b72ed5349c1ede3394b5776d153a19",
      "tree": "0ff603ee77da8f4c61dbb32932c8c4e1c3e5bc7a",
      "parents": [
        "308cce8ae414f2fa4be9ceb71ec4bbed878672f9"
      ],
      "author": {
        "name": "Dan Shi",
        "email": "dshi@google.com",
        "time": "Thu Dec 03 17:15:34 2015 -0800"
      },
      "committer": {
        "name": "Dan Shi",
        "email": "dshi@google.com",
        "time": "Fri Dec 04 08:57:51 2015 -0800"
      },
      "message": "Modify string format in BRILLO_VENDOR_PARTITIONS to preserve path.\n\nBRILLO_VENDOR_PARTITIONS contains a list of strings in the format of\nparent_folder:file_path. Each vendor partition\u0027s full path is\nparent_folder/file_path. The directory structure in file_path will be preserved.\n\nBug: 25692226\nTEST: local run m dist, confirm dragonboard-vendor_partitions-eng.dshi.zip\ncreated in out/dist, and content is correct.\n\nChange-Id: Icff46e4fa797cb6df7a2b8a651c6879c792cb60e\n"
    },
    {
      "commit": "308cce8ae414f2fa4be9ceb71ec4bbed878672f9",
      "tree": "9f27691681c81ca0ef016a8c9ba7ca319bc8b4ea",
      "parents": [
        "704639190c919e777550593e41a9891a96c0e63e"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Dec 02 12:09:00 2015 -0500"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Dec 02 12:29:11 2015 -0500"
      },
      "message": "dragonboard: Make provision-device script usable outside tree.\n\nUpdate script to support ANDROID_PROVISION_OS_PARTITONS and\nANDROID_PROVISION_VENDOR_PARTITIONS environment variables.\n\nTo test that this work outside the tree, I ran \u0027m dist\u0027 and unzipped the\nresulting vendor_partitions.zip file in a temporary directory from a\nfresh shell:\n\n ~$ mkdir tmp \u0026\u0026 cd tmp\n ~/tmp$ unzip /ssd/android/out/dist/dragonboard-vendor_partitions-eng.zeuthen.zip\n ~/tmp$ find .\n .\n ./vendor_partitions\n ./vendor_partitions/modemst2.bin\n ./vendor_partitions/modem.bin\n ./vendor_partitions/sec.bin\n ./vendor_partitions/fsc.bin\n ./vendor_partitions/DDR.bin\n ./vendor_partitions/rpm.bin\n ./vendor_partitions/hyp.bin\n ./vendor_partitions/modemst1.bin\n ./vendor_partitions/aboot.bin\n ./vendor_partitions/sbl1.bin\n ./vendor_partitions/tz.bin\n ./vendor_partitions/fsg.bin\n ./partitions\n ./partitions/partition-tables.bin\n ./partitions/misc.bin\n ./provision-device\n ~/tmp$ PATH\u003d/ssd/android/out/host/linux-x86/bin\n ANDROID_PROVISION_OS_PARTITIONS\u003d/ssd/android/out/target/product/dragonboard\n ANDROID_PROVISION_VENDOR_PARTITIONS\u003d$(pwd) ./provision-device\n target reported max download size of 268435456 bytes\n sending \u0027partition\u0027 (33 KB)...\n OKAY [  0.008s]\n writing \u0027partition\u0027...\n OKAY [  0.331s]\n sending \u0027modem\u0027 (65536 KB)...\n OKAY [  2.557s]\n writing \u0027modem\u0027...\n OKAY [  1.781s]\n sending \u0027fsc\u0027 (1 KB)...\n\n [...]\n\n OKAY [  1.026s]\n writing \u0027userdata\u0027...\n OKAY [  1.925s]\n finished. total time: 30.983s\n ~/tmp$\n\nwhich demonstrates it works as expected. In e.g. the lab, the fastboot\ncommand would be part of the lab and ANDROID_PROVISION_OS_PARTITIONS\nwould come from e.g. target_files.zip or img.zip.\n\nI also ran the \u0027provision\u0027 command inside the build environment to check\nthat provisioing still works in the inside-tree case.\n\nBug: 25648550\nChange-Id: I6fb82f7dc36c169fd9cc5998626b93414c7f5e68\nTest: Manually tested (see above).\n"
    },
    {
      "commit": "704639190c919e777550593e41a9891a96c0e63e",
      "tree": "a8fb49739bc9bcda597573e91f76e11046b32e68",
      "parents": [
        "158d0dce47f26b93b258dfed830019fa90bd70ef"
      ],
      "author": {
        "name": "Dan Shi",
        "email": "dshi@google.com",
        "time": "Tue Nov 24 15:25:42 2015 -0800"
      },
      "committer": {
        "name": "Dan Shi",
        "email": "dshi@google.com",
        "time": "Wed Nov 25 12:30:24 2015 -0800"
      },
      "message": "Set BRILLO_VENDOR_PARTITIONS to the list of files in the vendor directory.\n\nbuilder will use BRILLO_VENDOR_PARTITIONS value to create a vendor partition\nzip file, in folder out/dist.\n\nBug: 25692226\nChange-Id: Ie135da2a897fd9d0edbeade2bbfd25033dc34949\nTest: m dist, test with cl 183905\n"
    },
    {
      "commit": "158d0dce47f26b93b258dfed830019fa90bd70ef",
      "tree": "428a586bf12790dd0abbe0c76c3b581cae729ea0",
      "parents": [
        "5875387d22513e4735f3ab0ba59bec328985bfa3"
      ],
      "author": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Mon Nov 23 15:25:44 2015 -0800"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Mon Nov 23 15:25:44 2015 -0800"
      },
      "message": "audio: Remove audio config files.\n\nMove the audio config files required for routing, policy, etc from\ndevices/qcom/dragonboard/base_product to hardware/bsp/qcom/soc/msm8916.\nAll products that use audio need these configs, not just the\nbase_product.\n\nBUG\u003d25844626\nTEST\u003dmanual test\n\nChange-Id: I49ec12938108d27764a3e608b018ce6b4c7ac6ad\n"
    },
    {
      "commit": "5875387d22513e4735f3ab0ba59bec328985bfa3",
      "tree": "6d072ccf4f8d765bdcb4c58d95a59e3b8f4f0c67",
      "parents": [
        "5cd012783065e2152a50d772fde679f90958fc37"
      ],
      "author": {
        "name": "Vitaly Buka",
        "email": "vitalybuka@google.com",
        "time": "Tue Nov 17 13:55:34 2015 -0800"
      },
      "committer": {
        "name": "Vitaly Buka",
        "email": "vitalybuka@google.com",
        "time": "Tue Nov 17 13:55:34 2015 -0800"
      },
      "message": "Remove sample keys from weaved.conf\n\nBUG:25627281\nChange-Id: I47bb2afaebaff004dea0f4fac556db86c102b5a5\n"
    },
    {
      "commit": "5cd012783065e2152a50d772fde679f90958fc37",
      "tree": "d6279f695f5abed9dfa15c823be5bac6de6aadbd",
      "parents": [
        "ef09d2605a3e5b93bde4f069a6861e4f1f15179b"
      ],
      "author": {
        "name": "Mohammed Habibulla",
        "email": "moch@google.com",
        "time": "Wed Nov 04 17:32:16 2015 -0800"
      },
      "committer": {
        "name": "Mohammed Habibulla",
        "email": "moch@google.com",
        "time": "Wed Nov 04 17:32:16 2015 -0800"
      },
      "message": "Dragonboard: Include misc.bin in provision-device\n\nBUG\u003d25472336\n\nChange-Id: I9801c2f2bf4a9abdc539da9a0e1653f1c94718a7\n"
    },
    {
      "commit": "ef09d2605a3e5b93bde4f069a6861e4f1f15179b",
      "tree": "7a2d23deb1113ec201a76d0143fcae580140b56d",
      "parents": [
        "e649dad316dc26e3da8b4ca0fab3c7221afa8a19"
      ],
      "author": {
        "name": "Mohammed Habibulla",
        "email": "moch@google.com",
        "time": "Tue Nov 03 12:53:47 2015 -0800"
      },
      "committer": {
        "name": "Mohammed Habibulla",
        "email": "moch@google.com",
        "time": "Tue Nov 03 13:15:50 2015 -0800"
      },
      "message": "Dragonboard: Use partition binaries from /vendor/bsp/qcom\n\nBUG\u003d24541705\n\nChange-Id: I567f9c4d379045f41eba90173ec87b1c6509795a\n"
    },
    {
      "commit": "e649dad316dc26e3da8b4ca0fab3c7221afa8a19",
      "tree": "1089ac7eac7e22e32bc6684ae27eead80dc78f8b",
      "parents": [
        "3de5bef3483d483b799907a7e04f3e173b3d75b2"
      ],
      "author": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Wed Oct 28 18:33:27 2015 -0700"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Thu Oct 29 01:43:37 2015 +0000"
      },
      "message": "audio: Allow playback of wav files.\n\nThe media_codecs file doesn\u0027t have support for playing raw audio. Add\nsupport for it.\n\nBUG\u003d25357564\nTEST\u003d\"slesTest_playFdPath /data/file.wav 0\" passes\n\nChange-Id: Id60244b80d3037f1ee568a570f41df63a9077b67\n"
    },
    {
      "commit": "3de5bef3483d483b799907a7e04f3e173b3d75b2",
      "tree": "6bff28a62a5cc85c31f7d4308e7d4ef953bde5f6",
      "parents": [
        "176985871756f010aa120f78c49f31dc074c687f"
      ],
      "author": {
        "name": "Sourabh Banerjee",
        "email": "sbanerje@codeaurora.org",
        "time": "Mon Oct 26 11:09:13 2015 -0700"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Mon Oct 26 19:55:21 2015 -0700"
      },
      "message": "use headset mic as default input device for dragonbord 410c\n\nModified policy configuration to make headset mic as the default input.\nThis change is needed till routing for onboard mic is provided.\n\nChange-Id: Ied855ba1792c9dd320db906e8854919086110132\n\nSigned-off-by: Anu Ramanathan \u003canur@codeaurora.org\u003e\nSigned-off-by: Sourabh Banerjee \u003csbanerje@codeaurora.org\u003e\n"
    },
    {
      "commit": "176985871756f010aa120f78c49f31dc074c687f",
      "tree": "560d15994e1e78df0c6aa178314ff744b098c294",
      "parents": [
        "7bcb4b821ae53f6f3becbf147e514687502f2ef5"
      ],
      "author": {
        "name": "Sourabh Banerjee",
        "email": "sbanerje@codeaurora.org",
        "time": "Mon Oct 26 11:42:14 2015 -0700"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Mon Oct 26 19:55:12 2015 -0700"
      },
      "message": "msm8916 media: media codecs configuration file and mk updates to include the same in system.img\n\n    cloned from\n    git://codeaurora.org/quic/la/platform/vendor/qcom/msm8916_32\n    branch: LA.BR.1.2.4_rb1.10\n\nChange-Id: Ia906061931d11e39393cdc08100e9470b4a7c220\n\nSigned-off-by: Anu Ramanathan \u003canur@codeaurora.org\u003e\nSigned-off-by: Sourabh Banerjee \u003csbanerje@codeaurora.org\u003e\n"
    },
    {
      "commit": "7bcb4b821ae53f6f3becbf147e514687502f2ef5",
      "tree": "8313f44ab73eddc17f1aab8b0720a8593a3b7677",
      "parents": [
        "4826308e2f9487aa38f5783af9d25fb465f69dc1",
        "5b9938c0654d32820dfb55ee500d04061658952d"
      ],
      "author": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Fri Oct 16 02:45:34 2015 +0000"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Fri Oct 16 02:45:34 2015 +0000"
      },
      "message": "Merge \"Remove audio config and bootctrl HAL from base product\" into mnc-brillo-dev"
    },
    {
      "commit": "5b9938c0654d32820dfb55ee500d04061658952d",
      "tree": "3a6310b5ea49e2973e4c677ab5d77ea31841e203",
      "parents": [
        "c77bb405aa0f6bf6a05e872652fcf6a3633b9ae0"
      ],
      "author": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Thu Oct 15 19:32:52 2015 -0700"
      },
      "committer": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Thu Oct 15 19:32:52 2015 -0700"
      },
      "message": "Remove audio config and bootctrl HAL from base product\n\nThey should instead be installed for all products using\ndragonboard as the underlying board.\n\nBUG: 24980129\nChange-Id: I7fe2068b2e6d36229ffa9849f5ddf51deff88cb3\n"
    },
    {
      "commit": "4826308e2f9487aa38f5783af9d25fb465f69dc1",
      "tree": "a010ac277e166cb2c8386e5d397a051d45cb8941",
      "parents": [
        "c77bb405aa0f6bf6a05e872652fcf6a3633b9ae0"
      ],
      "author": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Thu Oct 15 18:43:53 2015 -0700"
      },
      "committer": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Fri Oct 16 02:08:31 2015 +0000"
      },
      "message": "dragonboard: Add DEVICE_PACKAGES macro\n\nChange-Id: Ic7621aa8d9476312dad743cfcd0e759e27e20e28\n"
    },
    {
      "commit": "c77bb405aa0f6bf6a05e872652fcf6a3633b9ae0",
      "tree": "69199911a7cfd7d5aeb5e6ce9a18622d0f46b08c",
      "parents": [
        "e7d8cc93313416cbd375d42500d98242a12ca479"
      ],
      "author": {
        "name": "Sourabh Banerjee",
        "email": "sbanerje@codeaurora.org",
        "time": "Fri Oct 02 06:17:09 2015 -0700"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Mon Oct 12 13:18:59 2015 -0700"
      },
      "message": "enable bluetooth hal for dragonboard\n\nChange-Id: I7aa3dfa67b83d8da43562a2d21bcb0e0c055c378\nSigned-off-by: Sourabh Banerjee \u003csbanerje@codeaurora.org\u003e\n"
    },
    {
      "commit": "e7d8cc93313416cbd375d42500d98242a12ca479",
      "tree": "70691fec4b985c5dba0758234ce8a2b9e50d6ba0",
      "parents": [
        "e7a775d23560fa8c152b586d26e55fd21206276b"
      ],
      "author": {
        "name": "Sourabh Banerjee",
        "email": "sbanerje@codeaurora.org",
        "time": "Wed Sep 30 11:08:18 2015 -0700"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Mon Oct 12 13:10:50 2015 -0700"
      },
      "message": "msm8916 audio audio policy configuration and mixer files\n\ncloned from\ngit://codeaurora.org/quic/la/platform/vendor/qcom/msm8916_32\nbranch: LA.BR.1.2.4_rb1.10\nChanges made to audio_policy.conf, audio_effects.conf and mixer_paths_sbc.xml\nto address style and format issues.\n\nChange-Id: I569bd3feba4bc68c25040d4976cff75b74d3bf0a\nSigned-off-by: Sourabh Banerjee \u003csbanerje@codeaurora.org\u003e\n"
    },
    {
      "commit": "e7a775d23560fa8c152b586d26e55fd21206276b",
      "tree": "8277be014c311ece0b9d3844d48008f9c2b5a26e",
      "parents": [
        "0ac9091f553aa4e4a911354141c711310c97338a"
      ],
      "author": {
        "name": "Sourabh Banerjee",
        "email": "sbanerje@codeaurora.org",
        "time": "Tue Sep 29 23:28:05 2015 -0700"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Mon Oct 12 13:10:50 2015 -0700"
      },
      "message": "enable audio features for 410c dragonboard\n\nChange-Id: Ia98a6c159018c9365280667f3b261cfaa3393041\nSigned-off-by: Sourabh Banerjee \u003csbanerje@codeaurora.org\u003e\n"
    },
    {
      "commit": "0ac9091f553aa4e4a911354141c711310c97338a",
      "tree": "21982a65f377753cf7d2c5b9eff6e1e01ab0d8f0",
      "parents": [
        "4d5feceb299d141f8224be064d2d5801aa1639ed"
      ],
      "author": {
        "name": "Sourabh Banerjee",
        "email": "sbanerje@codeaurora.org",
        "time": "Tue Sep 29 21:13:18 2015 -0700"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Mon Oct 12 13:10:32 2015 -0700"
      },
      "message": "set TARGET_BOARD_PLATFORM for dragonboard\n\n410c dragonboard is a msm8916 variant, hence TARGET_BOARD_PLATFORM\nneeds to be set to msm8916, so that qcom vendor components can build\nthe correct flavor\n\nChange-Id: Ic913ce2741e79bdd8c6e445eee7974a8891e4e22\nSigned-off-by: Sourabh Banerjee \u003csbanerje@codeaurora.org\u003e\n"
    },
    {
      "commit": "4d5feceb299d141f8224be064d2d5801aa1639ed",
      "tree": "17c9916f4fdf1b5e2120384fbdf2c666c97981d8",
      "parents": [
        "fda9bd348ae1e98547d891c92ed72549c7739de4"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Thu Oct 08 12:33:22 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Thu Oct 08 12:33:22 2015 -0400"
      },
      "message": "dragonboard: Also label boot partition with boot_block_device.\n\nAs we\u0027re still using boot_control_copy, update_engine needs to be able\nto write to the \u0027boot\u0027 partition when copying from either \u0027boot_a\u0027 or\n\u0027boot_b\u0027. This didn\u0027t work because we had only labeled \u0027boot_a\u0027 and\n\u0027boot_b\u0027, not \u0027boot. This CL fixed that.\n\nBug: 23186405\nChange-Id: I0216562fa891e28168b08f2d4839d35bad107d19\nTest: Manually tested.\n"
    },
    {
      "commit": "fda9bd348ae1e98547d891c92ed72549c7739de4",
      "tree": "7466a4a923c71daef0a51582e0a192f2f4e5d22f",
      "parents": [
        "dab24660f716cc4257fd8d9e7306ebed6b22ed73"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Oct 07 13:53:04 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Oct 07 16:07:21 2015 -0400"
      },
      "message": "dragonboard: Add policy to label partitions used by update_engine.\n\nThis selinux policy is needed by update_engine\u0027s selinux policy, see\nhttps://android-review.googlesource.com/#/c/174530 for details.\n\nBug: 23186405\nChange-Id: I3a39c0260ae92bd3b66f6d2c47557d55cd4b363b\nTest: Manually tested with Brillo build.\n"
    },
    {
      "commit": "dab24660f716cc4257fd8d9e7306ebed6b22ed73",
      "tree": "ce7fb67a9bc4bc071ad59b478958b73786876f53",
      "parents": [
        "7f78980823b5002d12a9c4d99d58f605891baeb1"
      ],
      "author": {
        "name": "Alex Vakulenko",
        "email": "avakulenko@google.com",
        "time": "Mon Oct 05 11:10:14 2015 -0700"
      },
      "committer": {
        "name": "Alex Vakulenko",
        "email": "avakulenko@google.com",
        "time": "Mon Oct 05 12:04:17 2015 -0700"
      },
      "message": "Dragonboard: Update embedded pairing code to \u0027hello\u0027\n\nTo illustrate that embedded code is not limited to numeric digits,\nuse \u0027hello\u0027 instead of \u00270000\u0027.\n\nAlso uncommented API keys and URLs to use the value from the .conf file\ninstead of hardcoded defaults (which are going to be removed).\n\nBUG: 24536219\nChange-Id: Iadc541afca9d554b960a285d3f9850e1190604cb\n"
    },
    {
      "commit": "7f78980823b5002d12a9c4d99d58f605891baeb1",
      "tree": "8e4a1e018b0dd2b1854b8e86b74c2aa4210c07b5",
      "parents": [
        "c2b743c4ecfc240c0ce275e4cfc031f95637d745",
        "aafce087117c928dca2ea724ef92b61f3feeb1f4"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Thu Oct 01 16:40:21 2015 +0000"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Oct 01 16:40:21 2015 +0000"
      },
      "message": "Merge \"dragonboard: Move to using \u0027provision\u0027 from build/envsetup.sh\" into mnc-brillo-dev"
    },
    {
      "commit": "aafce087117c928dca2ea724ef92b61f3feeb1f4",
      "tree": "8e4a1e018b0dd2b1854b8e86b74c2aa4210c07b5",
      "parents": [
        "bc09e10c25dccde9956206b41a0c7b41c9347f83"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Tue Sep 29 14:58:58 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Thu Oct 01 12:28:48 2015 -0400"
      },
      "message": "dragonboard: Move to using \u0027provision\u0027 from build/envsetup.sh\n\nStarting with this commit, the board-neutral command\n\n $ provision\n\nshould be used in lieu of\n\n $ device/qcom/dragonboard/brillo-provision-dragonboard410c.sh\n\nto provision the device. (NOTE: you will need to re-source\nbuild/envsetup.sh before the \u0027provision\u0027 command is available.)\n\nFor now we just check the misc partition and the partition tables in as\nbinaries (generated with brillo-provision-dragonboard410c.sh). In the\nfuture we can generate these as well as the provision-device file on the\nfly from higher-level descriptions, if needed.\n\nChange-Id: I31b0656798e18c681dfb7ddb003ef6f0471a1211\n"
    },
    {
      "commit": "c2b743c4ecfc240c0ce275e4cfc031f95637d745",
      "tree": "3ba8b8ac31ee1a678e6eb252fa169e8a602143d4",
      "parents": [
        "86ce359fb7f240667525763785766dfa6cb58934"
      ],
      "author": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Thu Oct 01 01:02:02 2015 +0000"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Thu Oct 01 01:02:02 2015 +0000"
      },
      "message": "Revert \"set TARGET_BOARD_PLATFORM for dragonboard\"\n\nThis reverts commit 86ce359fb7f240667525763785766dfa6cb58934.\n\nChange-Id: Id9b6915874a04b4e172bebc5991069b5aa2de6da\n"
    },
    {
      "commit": "86ce359fb7f240667525763785766dfa6cb58934",
      "tree": "6dd368f7c703c51e5635c797ae8d6aebad46c0ed",
      "parents": [
        "bc09e10c25dccde9956206b41a0c7b41c9347f83"
      ],
      "author": {
        "name": "Sourabh Banerjee",
        "email": "sbanerje@codeaurora.org",
        "time": "Tue Sep 29 21:13:18 2015 -0700"
      },
      "committer": {
        "name": "Ralph Nathan",
        "email": "ralphnathan@google.com",
        "time": "Wed Sep 30 15:52:15 2015 -0700"
      },
      "message": "set TARGET_BOARD_PLATFORM for dragonboard\n\n410c dragonboard is a msm8916 variant, hence TARGET_BOARD_PLATFORM shouls\nbe set to msm8916 so that qcom vendor components can build the correct\nflavor\n\nChange-Id: I833b2151ba37fe8261d1d902b1c19b4b89cf85b6\nSigned-off-by: Sourabh Banerjee \u003csbanerje@codeaurora.org\u003e\n"
    },
    {
      "commit": "bc09e10c25dccde9956206b41a0c7b41c9347f83",
      "tree": "3ba8b8ac31ee1a678e6eb252fa169e8a602143d4",
      "parents": [
        "95612c4b025d1591fd817251b6c0b3c75de02cf2"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Sep 23 12:52:36 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Sep 23 12:52:36 2015 -0400"
      },
      "message": "dragonboard: Use fstab.msm8916, not fstab.device.\n\nBug: 24328060\nChange-Id: I3de0db7b72a823ff308c52fabc22dc04d2a7a422\n"
    },
    {
      "commit": "95612c4b025d1591fd817251b6c0b3c75de02cf2",
      "tree": "846a0722417fed14a0ac4c03ba393f86382d6e7d",
      "parents": [
        "a6f187e1a7f54a1ba2c20acb9da8c6730d84194e",
        "3ad45feb2c47a1dfb6711b4d3943db9435cbc7f9"
      ],
      "author": {
        "name": "Paul Stewart",
        "email": "pstew@google.com",
        "time": "Thu Sep 17 19:25:24 2015 +0000"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Sep 17 19:25:24 2015 +0000"
      },
      "message": "Merge \"device/qcom/dragonboard: Remove unused WIFI_INIT_MODULE\" into mnc-brillo-dev"
    },
    {
      "commit": "a6f187e1a7f54a1ba2c20acb9da8c6730d84194e",
      "tree": "0988b099c237b64c38a2fc9d57f67cd7fab8f0b4",
      "parents": [
        "29c7a0be926c9288eb6fca7a568dfb5154fdab76",
        "71d1e1a2bc5226c458d6926bea0aed5497fde70e"
      ],
      "author": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Thu Sep 17 17:08:04 2015 +0000"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Thu Sep 17 17:08:04 2015 +0000"
      },
      "message": "Merge \"dragonboard: Add board info file\" into mnc-brillo-dev"
    },
    {
      "commit": "29c7a0be926c9288eb6fca7a568dfb5154fdab76",
      "tree": "535b929e2c4616e27542df5cb5584f362577ccaf",
      "parents": [
        "19ec0baab5311fc3498ced1fb5e9b4a6cead2864"
      ],
      "author": {
        "name": "Gilad Arnold",
        "email": "garnold@google.com",
        "time": "Thu Sep 17 09:14:03 2015 -0700"
      },
      "committer": {
        "name": "Gilad Arnold",
        "email": "garnold@google.com",
        "time": "Thu Sep 17 09:15:51 2015 -0700"
      },
      "message": "Don\u0027t install bootctl, only boot_control implementation.\n\nThe former is installed as part of Brillo.\n\nAlso, change continuation line indent so it matches the prevailing\nconvention.\n\nBug: 24157039\nChange-Id: Id2d8d82cd6ca7c90bb768f5cb06b6747f01f7939\n"
    },
    {
      "commit": "71d1e1a2bc5226c458d6926bea0aed5497fde70e",
      "tree": "6f7d52c9487f9137014911e5431f1edd622a0a67",
      "parents": [
        "19ec0baab5311fc3498ced1fb5e9b4a6cead2864"
      ],
      "author": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Tue Sep 15 18:48:19 2015 -0700"
      },
      "committer": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Tue Sep 15 19:02:40 2015 -0700"
      },
      "message": "dragonboard: Add board info file\n\nThe board name is used by fastboot flashall as\na sanity check to ensure we are flashing the right\ndevice.\n\nBUG: 24112915\nChange-Id: Id6e527a4cd55cf7ffea03cff7358209576870b32\n"
    },
    {
      "commit": "19ec0baab5311fc3498ced1fb5e9b4a6cead2864",
      "tree": "0e5a19ebdf24e77562e2c7d0f7b0b8e1b026925f",
      "parents": [
        "5faedb2da3b29845535eefbc2cea2272c910100a"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Sep 09 19:01:27 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Fri Sep 11 14:11:30 2015 -0400"
      },
      "message": "dragonboard: Use A/B partitioning by default.\n\nWith this change, dragonboard will use two sets of partitions by default\nwhich enables update_engine to perform updates in the background.\n\nThis CL will not break existing Dragonboard devices that are not yet\nrepartitioned.\n\nChange-Id: Ie7ebc95970ae033fcb5658498605b01155996a26\n"
    },
    {
      "commit": "5faedb2da3b29845535eefbc2cea2272c910100a",
      "tree": "a1d331f9b6368d1ef26771ad8d5dd60d3b03f757",
      "parents": [
        "737f36c795014980852b1aa10b295134134640fc"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Sep 09 16:08:24 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Wed Sep 09 17:04:55 2015 -0400"
      },
      "message": "Revert \"dragonboard: Remove partition files\"\n\nAlso add license.txt from the zip-file containing the disk image these\nblobs originated from.\n\nThis reverts commit 5dc53f548735e178303ecfa9bc64458a8df60378.\n\nChange-Id: I747a27d914e0cee2b6c67261415f39bdcf67ee7a\n"
    },
    {
      "commit": "3ad45feb2c47a1dfb6711b4d3943db9435cbc7f9",
      "tree": "61377e89562a70d7c6f1b832a1187e2ad54f1179",
      "parents": [
        "737f36c795014980852b1aa10b295134134640fc"
      ],
      "author": {
        "name": "Paul Stewart",
        "email": "pstew@google.com",
        "time": "Fri Sep 04 18:39:11 2015 -0700"
      },
      "committer": {
        "name": "Paul Stewart",
        "email": "pstew@google.com",
        "time": "Sat Sep 05 07:08:11 2015 -0700"
      },
      "message": "device/qcom/dragonboard: Remove unused WIFI_INIT_MODULE\n\nThe BSP now automatically installs the HAL for the driver\nload for dragonboard.\n\nBUG: 23801071\nChange-Id: Id322c325de7ac4def713b6ecad4b46cc0a46e6ee\nTEST: Boot and ensure AP mode is running\n"
    },
    {
      "commit": "737f36c795014980852b1aa10b295134134640fc",
      "tree": "c35d8412e185813c38704aef63f058c5d289e202",
      "parents": [
        "261fb8790157cf2699eee3db240076b85d42f26f",
        "e8ffd93d6c7d51d32f549f0494d98f90c3faba71"
      ],
      "author": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Fri Sep 04 22:18:06 2015 +0000"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Fri Sep 04 22:18:06 2015 +0000"
      },
      "message": "Merge \"Revert \"dragonboard: Removing wifi support\"\" into mnc-brillo-dev"
    },
    {
      "commit": "e8ffd93d6c7d51d32f549f0494d98f90c3faba71",
      "tree": "4ce7af3e668f072d2f8e1af62fd9eb732e27a354",
      "parents": [
        "f9f33ab93af799e31dd46c0574f58e4719680f52"
      ],
      "author": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Fri Sep 04 21:07:16 2015 +0000"
      },
      "committer": {
        "name": "Gaurav Shah",
        "email": "gauravsh@google.com",
        "time": "Fri Sep 04 21:07:16 2015 +0000"
      },
      "message": "Revert \"dragonboard: Removing wifi support\"\n\nThis reverts commit f9f33ab93af799e31dd46c0574f58e4719680f52.\n\nChange-Id: I6095e91c86a64f488702bd215b7c29e0008adbc3\n"
    },
    {
      "commit": "261fb8790157cf2699eee3db240076b85d42f26f",
      "tree": "6ba2e9504be760d62c79b4f93e52e4420597fc7e",
      "parents": [
        "8c1f41f30514a3b583268975de7b5832f2cdcdc4",
        "5dc53f548735e178303ecfa9bc64458a8df60378"
      ],
      "author": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Wed Sep 02 04:57:58 2015 +0000"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Wed Sep 02 04:57:58 2015 +0000"
      },
      "message": "Merge \"dragonboard: Remove partition files\" into mnc-brillo-dev"
    },
    {
      "commit": "5dc53f548735e178303ecfa9bc64458a8df60378",
      "tree": "e38c6a85fa167b1d8d401bf5e576e995a8eb0121",
      "parents": [
        "793ebdcd999f4b60d680b7a355025882e910e8e1"
      ],
      "author": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Tue Sep 01 21:56:30 2015 -0700"
      },
      "committer": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Tue Sep 01 21:56:30 2015 -0700"
      },
      "message": "dragonboard: Remove partition files\n\nChange-Id: Idf2db525d9f2cf34abd064b1b9b3e5f0f0a69d91\n"
    },
    {
      "commit": "8c1f41f30514a3b583268975de7b5832f2cdcdc4",
      "tree": "868e653eb0fcf01e9e0f4a3391246301b0d8448a",
      "parents": [
        "9e51894c1a6204343386f8efa7c00a2ddb8d9989",
        "f9f33ab93af799e31dd46c0574f58e4719680f52"
      ],
      "author": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Tue Sep 01 20:39:03 2015 +0000"
      },
      "committer": {
        "name": "Android (Google) Code Review",
        "email": "android-gerrit@google.com",
        "time": "Tue Sep 01 20:39:03 2015 +0000"
      },
      "message": "Merge \"dragonboard: Removing wifi support\" into mnc-brillo-dev"
    },
    {
      "commit": "f9f33ab93af799e31dd46c0574f58e4719680f52",
      "tree": "0e7a4ac1b6490d683c36a8578983a29ff7172746",
      "parents": [
        "793ebdcd999f4b60d680b7a355025882e910e8e1"
      ],
      "author": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Tue Sep 01 13:35:48 2015 -0700"
      },
      "committer": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Tue Sep 01 13:35:48 2015 -0700"
      },
      "message": "dragonboard: Removing wifi support\n\nTemp changes while we move to new BSP model\n\nChange-Id: Idfacaa2abda29d1135cae27732d613be2e6bac94\n"
    },
    {
      "commit": "9e51894c1a6204343386f8efa7c00a2ddb8d9989",
      "tree": "d67d05e2da8f383251e7b941eaa90fdaca4e9030",
      "parents": [
        "638c0ac523a798a5976061849d08656e8b43b357"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 31 11:48:39 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 31 11:55:22 2015 -0400"
      },
      "message": "dragonboard: Also populate slot B.\n\nFor now, let\u0027s also populate slot B so it\u0027s easier to test A/B. The\ncost of doing this (a couple of extra seconds) is\nnegligible.\n\nChange-Id: Ie4ebc0ebb28e0f81d8ca49ffd320fd1d55feec1b\n"
    },
    {
      "commit": "638c0ac523a798a5976061849d08656e8b43b357",
      "tree": "4de8590ee9d23f9cac988f8b925931af5cf02f99",
      "parents": [
        "793ebdcd999f4b60d680b7a355025882e910e8e1"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 31 11:25:10 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 31 11:26:30 2015 -0400"
      },
      "message": "dragonboard: Add misc partition to fstab file.\n\nThis change is needed in to make fs_mgr find the right block device\nfor /misc, see comments on CL:756123 for details. Having devices in\nfstab even though they are not mounted (there\u0027s no filesystem on the\nmisc partition), is also SOP across Android - see other fstab files\nfor example.\n\nChange-Id: I8680a29907a4e6d256f959cf469ae6f690749a56\n"
    },
    {
      "commit": "793ebdcd999f4b60d680b7a355025882e910e8e1",
      "tree": "4ce7af3e668f072d2f8e1af62fd9eb732e27a354",
      "parents": [
        "0c15dd0cccd000122ba8b76b63683afb597ac333"
      ],
      "author": {
        "name": "Paul Stewart",
        "email": "pstew@google.com",
        "time": "Wed Aug 26 12:46:05 2015 -0700"
      },
      "committer": {
        "name": "Paul Stewart",
        "email": "pstew@google.com",
        "time": "Wed Aug 26 12:51:19 2015 -0700"
      },
      "message": "device/qcom/dragonboard: Setup WiFi\n\nSet the dragon board up to use the correct WiFi initialization\nroutines, even if this is not the base product.  This reverts\nCL:753795, which only applied this change to the base_product.\n\nBUG: 22957017\nChange-Id: I511648623ef50f334d3f198112019fee4902e84a\nTEST: connectivity_test connect BrilloGuest\n"
    },
    {
      "commit": "0c15dd0cccd000122ba8b76b63683afb597ac333",
      "tree": "716638cd2d6675e9e3be44497b28f2c975912274",
      "parents": [
        "f41bb69c01374eec3f9260985f675a4b2dd35f4a"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 24 21:26:36 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 24 21:26:36 2015 -0400"
      },
      "message": "dragonboard: Use existing userdata partition instead of building our own.\n\nChange-Id: I5733d60854b6af68bc3ab38b37a2ee9be809f529\n"
    },
    {
      "commit": "f41bb69c01374eec3f9260985f675a4b2dd35f4a",
      "tree": "c5606d5b47c639f08a3c4cc5090aaf26aa7c4d02",
      "parents": [
        "35df7aeee1ad100c42e50ac97b8477b293746fe9"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 24 18:29:33 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 24 18:32:33 2015 -0400"
      },
      "message": "dragonboard: Use ANDROID_PRODUCT_OUT in provisioning script.\n\nUse this instead of hard-coding out/target/product/brillo_dragon. This\nis needed for e.g. the latest name-shuffle.\n\nChange-Id: I0f1d37018781cfc5807de16f54b1e4e9bc3578d3\n"
    },
    {
      "commit": "35df7aeee1ad100c42e50ac97b8477b293746fe9",
      "tree": "ae584827c106141be1bef11cfdb015ef41e563b3",
      "parents": [
        "e89ba8109810393df06352f61d695c56e539aff0"
      ],
      "author": {
        "name": "Alex Vakulenko",
        "email": "avakulenko@google.com",
        "time": "Mon Aug 24 10:06:41 2015 -0700"
      },
      "committer": {
        "name": "Alex Vakulenko",
        "email": "avakulenko@google.com",
        "time": "Mon Aug 24 11:46:36 2015 -0700"
      },
      "message": "Add weaved.conf for dragonboard\n\nDefault weaved configuration for DragonBoard\n\nBUG: 23425137\nChange-Id: Ic4f63da7609aa9602330ee44c2da049b8a8e667b\n"
    },
    {
      "commit": "e89ba8109810393df06352f61d695c56e539aff0",
      "tree": "7d5383cc09e61ef059d336cdbe600393ed70f8ea",
      "parents": [
        "e64211ec4a5281a4e5665bd691a27107118f99af"
      ],
      "author": {
        "name": "Paul Stewart",
        "email": "pstew@google.com",
        "time": "Thu Aug 20 13:53:03 2015 -0700"
      },
      "committer": {
        "name": "Paul Stewart",
        "email": "pstew@google.com",
        "time": "Thu Aug 20 13:53:03 2015 -0700"
      },
      "message": "device/qcom/dragonboard: Setup WiFi\n\nSet the dragon board up to use the correct WiFi initialization\nroutines.\n\nBUG: 22957017\nChange-Id: I1e9ff7fd76307dafdd203a8d90bd013774a02afd\nTEST: connectivity_test connect BrilloGuest\n"
    },
    {
      "commit": "e64211ec4a5281a4e5665bd691a27107118f99af",
      "tree": "09319e030664a8a76a9c9b25f838a8787277f22f",
      "parents": [
        "f85b32ebf8600e89897f5c3c86ab1d030e948829"
      ],
      "author": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Wed Aug 19 11:19:19 2015 -0700"
      },
      "committer": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Wed Aug 19 11:19:19 2015 -0700"
      },
      "message": "dragonboard: rename lunch target to dragonboard\n\nThe old name was too long and casuing build errors\nfor users with a long username\n\nChange-Id: I9df112ff12a01daa25f64b14d298a3081971da5d\n"
    },
    {
      "commit": "f85b32ebf8600e89897f5c3c86ab1d030e948829",
      "tree": "e5b8f76c8a14a320629602cf1427a08f526843d6",
      "parents": [
        "6828ffa3619913fa6b89a6876008488900371a51"
      ],
      "author": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Tue Aug 18 16:33:34 2015 -0700"
      },
      "committer": {
        "name": "Lee Campbell",
        "email": "leecam@google.com",
        "time": "Tue Aug 18 16:43:58 2015 -0700"
      },
      "message": "dragonboard: Adding device configs\n\nBUG: 23315076\nChange-Id: Id7345defcdb91e194ce24fc3cfb106e6f40e9d3d\n"
    },
    {
      "commit": "6828ffa3619913fa6b89a6876008488900371a51",
      "tree": "e3ed0fe462f9ede2ed9511af97627123eb036c6b",
      "parents": [
        "f5d7d72a52e8df80222c5629f64006d859b1eb86"
      ],
      "author": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Mon Aug 17 13:27:44 2015 -0400"
      },
      "committer": {
        "name": "David Zeuthen",
        "email": "zeuthen@google.com",
        "time": "Tue Aug 18 11:42:58 2015 -0400"
      },
      "message": "Add provisioning script and vendor blobs for Dragonboard 410c.\n\nThe vendors blobs are from dragonboard410c_sdcard_install_android-40-66.zip\n\nChange-Id: I59ffae777a69b9d0ad01ae22d756c5804d0fa49d\n"
    },
    {
      "commit": "f5d7d72a52e8df80222c5629f64006d859b1eb86",
      "tree": "4b825dc642cb6eb9a060e54bf8d69288fbee4904",
      "parents": [],
      "author": {
        "name": "Baligh Uddin",
        "email": "baligh@google.com",
        "time": "Mon Jun 29 12:55:37 2015 -0700"
      },
      "committer": {
        "name": "Baligh Uddin",
        "email": "baligh@google.com",
        "time": "Mon Jun 29 12:55:37 2015 -0700"
      },
      "message": "Initial empty repository\n"
    }
  ]
}
