Always pass "full_radio" to vendor releasetools

The change in 6027abe72119cae42d28cfa4923622bd4b26b687 was only passing
full_radio in one instance (creation of partial OTA). The data structure
for the vendor releasetools is instantiated in three different places:
- when creating a full (block-based) OTA
- when creating a file-based OTA
- when creating a partial block-based OTA

This change fixes it by passing full_radio in all of the instances listed
above.

FPIIM-1437

Change-Id: I95eae9f4a14af475a881fdaac88add0970e4c0d5
diff --git a/tools/releasetools/ota_from_target_files.py b/tools/releasetools/ota_from_target_files.py
index 0907098..fed7302 100755
--- a/tools/releasetools/ota_from_target_files.py
+++ b/tools/releasetools/ota_from_target_files.py
@@ -528,6 +528,7 @@
       script=script,
       input_tmp=OPTIONS.input_tmp,
       metadata=metadata,
+      full_radio=OPTIONS.full_radio,
       info_dict=OPTIONS.info_dict)
 
   has_recovery_patch = HasRecoveryPatch(input_zip)
@@ -1160,6 +1161,7 @@
       output_zip=output_zip,
       script=script,
       metadata=metadata,
+      full_radio=OPTIONS.full_radio,
       info_dict=OPTIONS.source_info_dict)
 
   system_diff = FileDifference("system", source_zip, target_zip, output_zip)