You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
16 lines
407 B
16 lines
407 B
#!/bin/bash
|
|
|
|
output_dir=$1
|
|
rootfs_mapping=$2
|
|
|
|
[ ! -f ${output_dir}/rootfs.img ] && \
|
|
{ echo "Error: extracted rootfs partition not found. Aborting."; exit 1; }
|
|
|
|
sudo dd if=${output_dir}/rootfs.img of=/dev/mapper/${rootfs_mapping} bs=8M
|
|
|
|
# dd sets the original label, make sure label follows Mender naming convention.
|
|
sudo e2label /dev/mapper/${rootfs_mapping} "primary"
|
|
|
|
echo -e "\nStage done."
|
|
|
|
exit 0
|
|
|