#! /pkg/bin/ksh
# ----------------------------------------------------------------------
# show_tech_ofa_pd -- OFA show tech-support script for DNX platform
#
# Copyright (c) 2019 by cisco Systems, Inc.
# All rights reserved.
#-----------------------------------------------------------------------
plat=`get_platform_type`
if [ "$plat" == FRETTA ]; then
    if [ -e /pkg/bin/show_tech_dnx_driver_util ]; then    
        . /pkg/bin/show_tech_dnx_driver_util
    else
        echo "/pkg/bin/show_tech_dnx_driver_util  not found"
    fi
fi

display_ofa_pd ()
{
   if [ "$__cardtype" != "SYS" ]; then
       case "$__cardtype" in

       "LC")
           ;;
       "RP")
            display_dnx_driver_rp
           ;;
       esac
   fi
}
