Добавлена миграция каталога iso -> linux при пересборки на флешке

Mike Khiretskiy 9 years ago
parent 5eb3d0538a
commit a217e02269

@ -52,6 +52,14 @@ class ClBuilderImageAction(Action):
{'name': 'clear_log',
'method': 'Builder.clear_log(cl_builder_id_path)',
},
{'name': 'remount_flash',
'method': 'Builder.remount_rw(cl_builder_flash_path)',
'condition': lambda Get: Get('cl_builder_rescratch_set') == 'on'
},
{'name': 'iso_linux_migrate',
'method': 'Builder.iso_migrate(cl_builder_flash_path)',
'condition': lambda Get: Get('cl_builder_rescratch_set') == 'on'
},
{'name': 'prepare_action',
'method': 'Builder.set_builder_action("prepare")',
},
@ -89,10 +97,6 @@ class ClBuilderImageAction(Action):
'method': 'Builder.remove_video_drivers(cl_builder_path)',
'condition': lambda Get: Get('cl_builder_videodrv_set') == 'off'
},
{'name': 'remount_flash',
'method': 'Builder.remount_rw(cl_builder_flash_path)',
'condition': lambda Get: Get('cl_builder_rescratch_set') == 'on'
},
{'name': 'creating_live_image',
'group': __("Creating live image"),
'tasks': [

Loading…
Cancel
Save