xref: /openwifi/user_space/tx_prio_queue_show.sh (revision 10cc847f81fbd92fdabe9ecb292e1e6395743558)
1#!/bin/bash
2
3home_dir=$(pwd)
4
5if test -d "/sys/devices/platform/fpga-axi@0/fpga-axi@0:sdr"; then
6  cd /sys/devices/platform/fpga-axi@0/fpga-axi@0:sdr
7else
8  cd /sys/devices/soc0/fpga-axi\@0/fpga-axi\@0\:sdr
9fi
10
11set -x
12# show
13cat tx_prio_queue
14
15# clear
16if [[ -n $1 ]]; then
17  echo 0 > tx_prio_queue
18fi
19set +x
20
21cd $home_dir
22
23