am aada2269: (-s ours) am fa3d3a60: Add overlay value for apn_expand_bool to false for deb device.

* commit 'aada226935e4f4993cf218af807085c43adfdd6f':
diff --git a/fstab.deb b/fstab.deb
index e91ad31..c45e0fe 100644
--- a/fstab.deb
+++ b/fstab.deb
@@ -23,3 +23,4 @@
 /dev/block/platform/msm_sdcc.1/by-name/tzb          /tzb            emmc    defaults                                                                                            defaults
 /dev/block/platform/msm_sdcc.1/by-name/rpmb         /rpmb           emmc    defaults                                                                                            defaults
 /dev/block/platform/msm_sdcc.1/by-name/abootb       /abootb         emmc    defaults                                                                                            defaults
+/devices/platform/msm_hsusb_host/usb*               auto            auto    defaults                                                                                            voldmanaged=usb:auto
diff --git a/releasetools.py b/releasetools.py
index ffb1baf..1714eaa 100644
--- a/releasetools.py
+++ b/releasetools.py
@@ -36,6 +36,13 @@
         len(target_radio_img), common.sha1(target_radio_img).hexdigest()))
 
 
+def IncrementalOTA_InstallBegin(info):
+  # Reduce the space taken by the journal.
+  info.script.Unmount("/system")
+  info.script.TunePartition("/system", "-O", "^has_journal")
+  info.script.Mount("/system")
+
+
 def IncrementalOTA_InstallEnd(info):
   try:
     target_bootloader_img = info.target_zip.read("RADIO/bootloader.img")