Home | History | Annotate | Download | only in shamu

Lines Matching refs:blacklist

5 # the partition table, so blacklist it.
172 # blacklist any partitions that match the source image
173 blacklist = DEFAULT_BOOTLOADER_OTA_BLACKLIST
175 if ti not in blacklist:
181 blacklist.append(ti.name)
184 whitelist = [ i.name for i in tm.unpacked_images if i.name not in blacklist ]
187 WriteBootloader(info, target_imagefile.data, blacklist)
215 blacklist = []
217 blacklist.append('modem')
218 WriteMotobootPartitionImages(info, target_radio_img, blacklist)
240 def WriteMotobootPartitionImages(info, motoboot_image, blacklist = []):
241 WriteGroupedImages(info, motoboot_image.name, motoboot_image.unpacked_images, blacklist)
243 def WriteGroupedImages(info, group_name, images, blacklist = []):
250 if i.name not in blacklist:
270 def WriteBootloader(info, bootloader, blacklist = DEFAULT_BOOTLOADER_OTA_BLACKLIST):
290 WriteMotobootPartitionImages(info, motoboot_image, blacklist)