manjaro-tools/lib/util-iso-overlayfs.sh

32 lines
1 KiB
Bash
Raw Normal View History

#!/bin/bash
#
# This program is free software; you can redistribute it and/or modify
# it under the terms of the GNU General Public License as published by
# the Free Software Foundation; version 2 of the License.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU General Public License for more details.
# $1: new branch
2016-02-25 15:51:25 +01:00
mount_image(){
msg2 "%s mount: %s" "${iso_fs}" "${1##*/}"
mkdir -p "${work_dir}/work"
mount -t overlay overlay -olowerdir="${work_dir}/root-image",upperdir="$1",workdir="${work_dir}/work" "$1"
}
2016-02-25 15:51:25 +01:00
mount_image_custom(){
msg2 "%s mount: %s" "${iso_fs}" "${1##*/}"
mkdir -p "${work_dir}/work"
2016-02-25 18:37:29 +01:00
mount -t overlay overlay -olowerdir="${work_dir}/${profile}-image":"${work_dir}/root-image",upperdir="$1",workdir="${work_dir}/work" "$1"
}
2015-06-25 09:59:35 +02:00
umount_image(){
if mountpoint -q "$1";then
2016-02-25 15:51:25 +01:00
msg2 "%s umount: %s" "${iso_fs}" "${1##*/}"
2015-06-25 09:59:35 +02:00
umount $1
rm -rf "${work_dir}/work"
fi
}