From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jonatan Schlag To: network@lists.ipfire.org Subject: [PATCH 2/5] device: add new function device_is_vti6 Date: Sun, 04 Mar 2018 18:24:56 +0000 Message-ID: <1520187899-5759-2-git-send-email-jonatan.schlag@ipfire.org> In-Reply-To: <1520187899-5759-1-git-send-email-jonatan.schlag@ipfire.org> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1596042096578446451==" List-Id: --===============1596042096578446451== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: 7bit This functions checks if a device is a vti6 device. Signed-off-by: Jonatan Schlag --- src/functions/functions.device | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/functions/functions.device b/src/functions/functions.device index 2de1ad9..a04111e 100644 --- a/src/functions/functions.device +++ b/src/functions/functions.device @@ -286,6 +286,14 @@ device_is_vti() { [ "${type}" = "768" ] && return ${EXIT_OK} || return ${EXIT_ERROR} } +device_is_vti6() { + local device=${1} + + local type=$(__device_get_file ${device} type) + + [ "${type}" = "769" ] && return ${EXIT_OK} || return ${EXIT_ERROR} +} + device_get_phy() { local device="${1}" -- 2.6.3 --===============1596042096578446451==--