23 lines
411 B
Text
23 lines
411 B
Text
|
#!/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
|
||
|
|