Update beta.sh
Add missing functions
This commit is contained in:
10
beta.sh
10
beta.sh
@@ -82,6 +82,16 @@ send_at_commands() {
|
||||
fi
|
||||
}
|
||||
|
||||
# Function to remount file system as read-write
|
||||
remount_rw() {
|
||||
mount -o remount,rw /
|
||||
}
|
||||
|
||||
# Function to remount file system as read-only
|
||||
remount_ro() {
|
||||
mount -o remount,ro /
|
||||
}
|
||||
|
||||
# Check if AT Telnet Daemon is installed
|
||||
is_at_telnet_installed() {
|
||||
[ -d "$MICROPYTHON_DIR" ] && return 0 || return 1
|
||||
|
||||
Reference in New Issue
Block a user