mirror of
https://github.com/qosmio/nss-packages.git
synced 2025-12-16 16:21:53 +00:00
Initial attempt at getting NSS offload working with 4g/5g based IPQ807x/50xx platforms. I don't have a unit to test this on but everything seems to compile after applying a few patches. Ensure you are using the "NSS-12.5-K6.x-wwan" branch in your `feeds.conf` ``` src-git nss_packages https://github.com/qosmio/nss-packages.git;NSS-12.5-K6.x-wwan ``` Then install all packages ``` ./scripts/feeds install -p nss_packages -a ``` Ensure you select the modules: ``` kmod-pcie_mhi kmod-qmi_wwan_q ``` Work was derived from `https://github.com/coolsnowwolf/lede` and `https://git.codelinaro.org/clo/qsdk/platform/vendor/qcom/opensource/qsdk/datarmnet` Signed-off-by: Sean Khan <datapronix@protonmail.com>
33 lines
605 B
Bash
33 lines
605 B
Bash
#!/bin/sh
|
|
# Copyright (c) 2019 Qualcomm Technologies, Inc.
|
|
# All Rights Reserved.
|
|
# Confidential and Proprietary - Qualcomm Technologies, Inc.
|
|
|
|
. /lib/functions.sh
|
|
. /lib/functions/network.sh
|
|
. ../netifd-proto.sh
|
|
|
|
init_proto "$@"
|
|
|
|
proto_rmnet_setup() {
|
|
local cfg="$1"
|
|
local iface="$2"
|
|
|
|
logger "rmnet started"
|
|
#Call rmnet management script below!!
|
|
logger "rmnet updated ${cfg} ${iface}"
|
|
/lib/netifd/rmnet.script renew $cfg $iface
|
|
}
|
|
|
|
proto_rmnet_teardown() {
|
|
local cfg="$1"
|
|
#Tear down rmnet manager script here.*/
|
|
}
|
|
|
|
proto_rmnet_init_config() {
|
|
#ddno_device=1
|
|
available=1
|
|
}
|
|
|
|
add_protocol rmnet
|