merge in jb-release history after reset to master
diff --git a/src/source/index.md b/src/source/index.md
index f160dc41..2ea2562 100644
--- a/src/source/index.md
+++ b/src/source/index.md
@@ -48,4 +48,6 @@
 
 You can get started with Android by learning about the [Life of a Patch](life-of-a-patch.html), 
 and by learning about `git`, `repo`, and other tools using the links to the left. 
+You can also view the activity on all contributions on our
+[Gerrit server](https://android-review.googlesource.com/).
 If you need help along the way, you can join our [discussion groups](/community/index.html).
diff --git a/src/source/initializing.md b/src/source/initializing.md
index 442aa03..8893929 100644
--- a/src/source/initializing.md
+++ b/src/source/initializing.md
@@ -101,14 +101,6 @@
       g++-multilib mingw32 openjdk-6-jdk tofrodos python-markdown \
       libxml2-utils xsltproc zlib1g-dev:i386
 
-You may also need to fix a compilation issue in a kernel header:
-
-    $ sudo vim /usr/include/linux/usb/ch9.h  # line 592
-
-    # return le16_to_cpu(epd->wMaxPacketSize);
-    return __le16_to_cpu(epd->wMaxPacketSize);
-
-
 ## Configuring USB Access ##
 
 Under GNU/linux systems (and specifically under Ubuntu systems),
diff --git a/src/source/life-of-a-patch.md b/src/source/life-of-a-patch.md
index f0fbc40..f84ceac 100644
--- a/src/source/life-of-a-patch.md
+++ b/src/source/life-of-a-patch.md
@@ -17,7 +17,8 @@
 # Life of a Patch #
 
 The Android Open Source Project (AOSP) uses a web-based code review tool
-known as Gerrit. The image below is a flowchart that details what happens to
+known as [Gerrit](https://android-review.googlesource.com/).
+The image below is a flowchart that details what happens to
 a patch, once it's been written. Though it may appear complex, the majority of
 the steps below are performed in the web application.
 
diff --git a/src/source/sidebar.md b/src/source/sidebar.md
index 45189a2..5818d91 100644
--- a/src/source/sidebar.md
+++ b/src/source/sidebar.md
@@ -17,6 +17,7 @@
 
 - [Life of a Patch](life-of-a-patch.html)
 - [Submitting Patches](submit-patches.html)
+- [View Patches](https://android-review.googlesource.com/)
 - [Life of a Bug](life-of-a-bug.html)
 - [Reporting Bugs](report-bugs.html)
 
diff --git a/src/source/submit-patches.md b/src/source/submit-patches.md
index 07bcbe6..b6e4657 100644
--- a/src/source/submit-patches.md
+++ b/src/source/submit-patches.md
@@ -16,7 +16,8 @@
 
 # Submitting Patches #
 
-This page describes the full process of submitting a patch to the AOSP, including reviewing and tracking changes with Gerrit.
+This page describes the full process of submitting a patch to the AOSP, including
+reviewing and tracking changes with [Gerrit](https://android-review.googlesource.com/).
 
 ## Prerequisites ##