blob: d268b5008fa28eeebcbd5e841810dd2e0fcee494 [file] [log] [blame]
# -*- coding: utf-8 -*-
# Copyright 2019 The Chromium OS Authors. All rights reserved.
# Use of this source code is governed by a BSD-style license that can be
# found in the LICENSE file.
"""Library for handling Chrome OS partition."""
from __future__ import print_function
import os
from chromite.lib import constants
from chromite.lib import cros_build_lib
from chromite.lib import cros_logging as logging
from chromite.lib import osutils
_STATEFUL_FILE = 'stateful.tgz'
def GenerateStatefulPayload(image_path, output_directory):
"""Generates a stateful update payload given a full path to an image.
Args:
image_path: Full path to the image.
output_directory: Path to the directory to leave the resulting output.
logging: logging instance.
"""
logging.info('Generating stateful update file.')
output_gz = os.path.join(output_directory, _STATEFUL_FILE)
# Mount the image to pull out the important directories.
with osutils.TempDir() as stateful_mnt, \
osutils.MountImageContext(image_path, stateful_mnt,
(constants.PART_STATE,)) as _:
stateful_dir = os.path.join(stateful_mnt, 'dir-%s' % constants.PART_STATE)
try:
logging.info('Tarring up /usr/local and /var!')
cros_build_lib.SudoRunCommand([
'tar',
'-czf',
output_gz,
'--directory=%s' % stateful_dir,
'--hard-dereference',
'--transform=s,^dev_image,dev_image_new,',
'--transform=s,^var_overlay,var_new,',
'dev_image',
'var_overlay',
])
except:
logging.error('Failed to create stateful update file')
raise
logging.info('Successfully generated %s', output_gz)