22 lines
411 B
Bash
Executable file
22 lines
411 B
Bash
Executable file
#!/bin/bash
|
|
# SPDX-License-Identifier: Apache-2.0
|
|
# Copyright (C) 2021-present Fewtarius (https://github.com/fewtarius)
|
|
|
|
. /etc/profile
|
|
|
|
if [ -z "${DEVICE_INTERNAL_WIFI}" ] || [ "${DEVICE_INTERNAL_WIFI}" = false ]
|
|
then
|
|
exit 0
|
|
fi
|
|
|
|
case $1 in
|
|
disable)
|
|
rmmod ${DEVICE_WIFI_MODULE}
|
|
set_setting internal.wifi=0
|
|
;;
|
|
enable)
|
|
modprobe ${DEVICE_WIFI_MODULE}
|
|
set_setting internal.wifi=1
|
|
;;
|
|
esac
|
|
|