common: releasetools: Do not distinguish between nand and emmc devices
Code cleanup. We no longer support nand based devices on mainline. Change-Id: Ie2291f82fc6b0fc1972fccd825ce9b1686d1d3cb
This commit is contained in:
parent
403c50bbc0
commit
f183b36c08
|
@ -226,9 +226,8 @@ def IncrementalOTA_Assertions(info):
|
||||||
|
|
||||||
|
|
||||||
def IncrementalOTA_VerifyEnd(info):
|
def IncrementalOTA_VerifyEnd(info):
|
||||||
if info.type == 'MMC':
|
OTA_VerifyEnd(info, info.target_version, info.target_zip, info.source_zip)
|
||||||
OTA_VerifyEnd(info, info.target_version, info.target_zip, info.source_zip)
|
return
|
||||||
return
|
|
||||||
|
|
||||||
|
|
||||||
# This function handles only non-HLOS whole partition images
|
# This function handles only non-HLOS whole partition images
|
||||||
|
@ -346,13 +345,9 @@ def FullOTA_InstallEnd_MTD(info):
|
||||||
|
|
||||||
|
|
||||||
def FullOTA_InstallEnd(info):
|
def FullOTA_InstallEnd(info):
|
||||||
if info.type == 'MMC':
|
FullOTA_InstallEnd_MMC(info)
|
||||||
FullOTA_InstallEnd_MMC(info)
|
|
||||||
elif info.type == 'MTD':
|
|
||||||
FullOTA_InstallEnd_MTD(info)
|
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
def IncrementalOTA_InstallEnd_MMC(info):
|
def IncrementalOTA_InstallEnd_MMC(info):
|
||||||
OTA_InstallEnd(info)
|
OTA_InstallEnd(info)
|
||||||
return
|
return
|
||||||
|
@ -362,10 +357,6 @@ def IncrementalOTA_InstallEnd_MTD(info):
|
||||||
print "warning radio-update: radio update for NAND devices not supported"
|
print "warning radio-update: radio update for NAND devices not supported"
|
||||||
return
|
return
|
||||||
|
|
||||||
|
|
||||||
def IncrementalOTA_InstallEnd(info):
|
def IncrementalOTA_InstallEnd(info):
|
||||||
if info.type == 'MMC':
|
IncrementalOTA_InstallEnd_MMC(info)
|
||||||
IncrementalOTA_InstallEnd_MMC(info)
|
|
||||||
elif info.type == 'MTD':
|
|
||||||
IncrementalOTA_InstallEnd_MTD(info)
|
|
||||||
return
|
return
|
||||||
|
|
Loading…
Reference in New Issue