mirror of
https://github.com/flatcar/scripts.git
synced 2025-09-24 07:01:13 +02:00
AU: Provide an option for forcing full or delta kernel update.
BUG=7705 TEST=tried generating updates with and without the option Change-Id: I45fccece0aa37c92e63427ea8f86e208f24253eb Review URL: http://codereview.chromium.org/3782005
This commit is contained in:
parent
74eee7ad20
commit
9bdd04b730
@ -124,6 +124,8 @@ with the patch from the stateful partition (default: false)"
|
|||||||
DEFINE_string private_key "" "Path to private key in .pem format."
|
DEFINE_string private_key "" "Path to private key in .pem format."
|
||||||
DEFINE_boolean extract "$FLAGS_FALSE" "If set, extract old/new kernel/rootfs \
|
DEFINE_boolean extract "$FLAGS_FALSE" "If set, extract old/new kernel/rootfs \
|
||||||
to [old|new]_[kern|root].dat. Useful for debugging (default: false)"
|
to [old|new]_[kern|root].dat. Useful for debugging (default: false)"
|
||||||
|
DEFINE_boolean full_kernel "$FLAGS_FALSE" "Generate a full kernel update even \
|
||||||
|
if generating a delta update (default: false)"
|
||||||
|
|
||||||
# Parse command line
|
# Parse command line
|
||||||
FLAGS "$@" || exit 1
|
FLAGS "$@" || exit 1
|
||||||
@ -171,14 +173,18 @@ if [ "$DELTA" -eq "$FLAGS_TRUE" -o "$FLAGS_old_style" -eq "$FLAGS_FALSE" ]; then
|
|||||||
|
|
||||||
trap cleanup INT TERM EXIT
|
trap cleanup INT TERM EXIT
|
||||||
if [ "$DELTA" -eq "$FLAGS_TRUE" ]; then
|
if [ "$DELTA" -eq "$FLAGS_TRUE" ]; then
|
||||||
SRC_KERNEL=$(extract_partition_to_temp_file "$FLAGS_src_image" 2)
|
if [ "$FLAGS_full_kernel" -eq "$FLAGS_FALSE" ]; then
|
||||||
if [ "$FLAGS_patch_kernel" -eq "$FLAGS_TRUE" ]; then
|
SRC_KERNEL=$(extract_partition_to_temp_file "$FLAGS_src_image" 2)
|
||||||
patch_kernel "$FLAGS_src_image" "$SRC_KERNEL"
|
if [ "$FLAGS_patch_kernel" -eq "$FLAGS_TRUE" ]; then
|
||||||
|
patch_kernel "$FLAGS_src_image" "$SRC_KERNEL"
|
||||||
|
fi
|
||||||
|
echo md5sum of src kernel:
|
||||||
|
md5sum "$SRC_KERNEL"
|
||||||
|
else
|
||||||
|
echo "Generating a full kernel update."
|
||||||
fi
|
fi
|
||||||
SRC_ROOT=$(extract_partition_to_temp_file "$FLAGS_src_image" 3)
|
SRC_ROOT=$(extract_partition_to_temp_file "$FLAGS_src_image" 3)
|
||||||
|
|
||||||
echo md5sum of src kernel:
|
|
||||||
md5sum "$SRC_KERNEL"
|
|
||||||
echo md5sum of src root:
|
echo md5sum of src root:
|
||||||
md5sum "$SRC_ROOT"
|
md5sum "$SRC_ROOT"
|
||||||
fi
|
fi
|
||||||
|
Loading…
x
Reference in New Issue
Block a user