X-Git-Url: http://git.harvie.cz/?p=svn%2FPrometheus-QoS%2F.git;a=blobdiff_plain;f=check-kernel-qos;fp=check-kernel-qos;h=0000000000000000000000000000000000000000;hp=e2ac020feb032045beb4fab3a7d1434155a61d22;hb=af37be1dccdd5c9b86113a6e02ed794da3102ec4;hpb=e2107a5e5a89245332653d3ac2274b131ab66c60 diff --git a/check-kernel-qos b/check-kernel-qos deleted file mode 100755 index e2ac020..0000000 --- a/check-kernel-qos +++ /dev/null @@ -1,24 +0,0 @@ -#!/bin/bash - -echo -n "Checking for HTB support (2.6.x Linux kernel series only) ..." -HTB=`cat /proc/config.gz |gunzip|grep CONFIG_NET_SCH_HTB` -if [ "$HTB" = "CONFIG_NET_SCH_HTB=y" ] || [ "$HTB" = "CONFIG_NET_SCH_HTB=m" ] -then - echo " ok." -else - echo " failed!" - echo "** Missing /proc/config.gz, missing gunzip, or missing HTB support in kernel.. **" - echo "** You are likely to get RTNETLINK error messages when running Prometheus QoS. **" -fi - -echo -n "Checking for SFQ support (2.6.x Linux kernel series only) ..." -SFQ=`cat /proc/config.gz |gunzip|grep CONFIG_NET_SCH_SFQ` -if [ "$SFQ" = "CONFIG_NET_SCH_SFQ=y" ] || [ "$SFQ" = "CONFIG_NET_SCH_SFQ=m" ] -then - echo " ok." -else - echo " failed!" - echo "** Missing /proc/config.gz, missing gunzip, or missing SFQ support in kernel.. **" - echo "** You are likely to get RTNETLINK error messages when running Prometheus QoS. **" -fi -