32 lines
827 B
Bash
32 lines
827 B
Bash
#!/bin/bash
|
|
#
|
|
# Offers base functions for the image management
|
|
#
|
|
# shellcheck disable=SC2034 #Deactivate checking of unused variables
|
|
# shellcheck source=/dev/null # Deactivate SC1090
|
|
source "$(dirname "$(readlink -f "${0}")")/../base.sh" || (echo "Loading base.sh failed." && exit 1)
|
|
|
|
# Writes the full partition name
|
|
# @parameter $1 is device path
|
|
# @parameter $2 is the partition number
|
|
echo_partition_name(){
|
|
if [ "${1:5:1}" != "s" ]
|
|
then
|
|
echo "$1""p""$2"
|
|
else
|
|
echo "$1$2"
|
|
fi
|
|
}
|
|
|
|
# Routine to echo the full sd-card-path
|
|
set_device_path(){
|
|
info "Available devices:"
|
|
ls -lasi /dev/ | grep -E "sd|mm"
|
|
question "Please type in the name of the device: /dev/" && read -r device
|
|
device_path="/dev/$device"
|
|
if [ ! -b "$device_path" ]
|
|
then
|
|
error "$device_path is not valid device."
|
|
fi
|
|
}
|