mirror of
https://github.com/kevinveenbirkenbach/linux-image-manager.git
synced 2024-11-10 01:51:03 +01:00
36 lines
683 B
Bash
36 lines
683 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
|