linux-image-manager/scripts/image/chroot.sh

36 lines
682 B
Bash

#!/bin/bash
# shellcheck source=/dev/null # Deactivate SC1090
# shellcheck disable=SC2015 # Deactivating bool hint
# shellcheck disable=SC2154 # Deactivate not referenced link
source "$(dirname "$(readlink -f "${0}")")/base.sh" || (echo "Loading base.sh failed." && exit 1)
destructor(){
info "Unmount everything" &&
umount "$root_mount_path"{dev/pts,dev,sys,proc,boot,} $boot_mount_path||
warning "Failed."
}
info "Starting chroot..."
set_device_path
make_working_folder
make_mount_folders
set_partition_paths
mount_partitions
mount_chroot_binds
copy_qemu
copy_resolve_conf
info "Bash shell starts..." &&
chroot "$root_mount_path" /bin/bash ||
error
destructor