rndis: remove

Signed-off-by: AuxXxilium <info@auxxxilium.tech>
This commit is contained in:
AuxXxilium 2024-10-04 17:50:48 +02:00
parent e57e2872e1
commit ac18f4dc41
3 changed files with 0 additions and 95 deletions

View File

@ -1,24 +0,0 @@
#!/usr/bin/env ash
#
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#
for I in $(ls -d /sys/class/net/usb* 2>/dev/null); do
NAME=${I##*/}
/sbin/ifconfig ${NAME} up || true
if [ -x /usr/syno/sbin/synonet ]; then # DSM
/usr/syno/sbin/synonet --dhcp ${NAME} || true
fi
if [ -x /sbin/udhcpc ]; then # junior
if [ -f "/etc/dhcpc/dhcpcd-${NAME}.pid" ]; then
kill -9 $(cat /etc/dhcpc/dhcpcd-${NAME}.pid)
rm -f /etc/dhcpc/dhcpcd-${NAME}.pid
fi
/sbin/udhcpc -i ${NAME} -p /etc/dhcpc/dhcpcd-${NAME}.pid -b -x hostname:$(hostname) || true
fi
done
exit 0

View File

@ -1,51 +0,0 @@
#!/usr/bin/env ash
#
# Copyright (C) 2023 AuxXxilium <https://github.com/AuxXxilium> and Ing <https://github.com/wjz304>
#
# This is free software, licensed under the MIT License.
# See /LICENSE for more information.
#
if [ "${1}" = "rcExit" ]; then
echo "Installing addon rndis - ${1}"
/usr/bin/rndis.sh
elif [ "${1}" = "late" ]; then
echo "Installing addon rndis - ${1}"
mkdir -p "/tmpRoot/usr/arc/addons/"
cp -vf "${0}" "/tmpRoot/usr/arc/addons/"
cp -vf /usr/bin/rndis.sh /tmpRoot/usr/bin/rndis.sh
mkdir -p /tmpRoot/usr/lib/udev/rules.d
echo 'SUBSYSTEMS=="net", KERNEL=="usb*", TAG+="systemd", ENV{SYSTEMD_WANTS}+="rndis.service"' >/tmpRoot/usr/lib/udev/rules.d/99-rndis.rules
chmod a+r /tmpRoot/usr/lib/udev/rules.d/99-rndis.rules
mkdir -p "/tmpRoot/usr/lib/systemd/system"
DEST="/tmpRoot/usr/lib/systemd/system/rndis.service"
cat <<EOF >${DEST}
[Unit]
Description=Android USB Network Adapter
After=multi-user.target
ConditionPathExists=/sys/class/net/usb0
[Service]
Type=simple
Restart=always
ExecStart=/usr/bin/rndis.sh
[Install]
WantedBy=multi-user.target
EOF
mkdir -vp /tmpRoot/usr/lib/systemd/system/multi-user.target.wants
ln -vsf /usr/lib/systemd/system/rndis.service /tmpRoot/usr/lib/systemd/system/multi-user.target.wants/rndis.service
elif [ "${1}" = "uninstall" ]; then
echo "Installing addon rndis - ${1}"
rm -f "/tmpRoot/usr/lib/systemd/system/multi-user.target.wants/rndis.service"
rm -f "/tmpRoot/usr/lib/systemd/system/rndis.service"
rm -f "/tmpRoot/usr/lib/udev/rules.d/99-rndis.rules"
rm -f "/tmpRoot/usr/bin/rndis.sh"
fi

View File

@ -1,20 +0,0 @@
version: 1
name: rndis
description: "Android USB Network Adapter support"
system: false
beta: true
target: system
all:
install-script: "install.sh"
copy: "all"
apollolake: true
broadwell: true
broadwellnk: true
broadwellnkv2: true
broadwellntbap: true
denverton: true
geminilake: true
purley: true
v1000: true
r1000: true
epyc7002: true