diff options
Diffstat (limited to 'recipes/powervr-drivers/bc-cat-omap3-module/rc.bccat')
-rw-r--r-- | recipes/powervr-drivers/bc-cat-omap3-module/rc.bccat | 22 |
1 files changed, 0 insertions, 22 deletions
diff --git a/recipes/powervr-drivers/bc-cat-omap3-module/rc.bccat b/recipes/powervr-drivers/bc-cat-omap3-module/rc.bccat deleted file mode 100644 index eeb3fdc141..0000000000 --- a/recipes/powervr-drivers/bc-cat-omap3-module/rc.bccat +++ /dev/null @@ -1,22 +0,0 @@ -#!/bin/sh -# -# install bc-cat module and create device nodes -# -PATH=/sbin:/bin:/usr/sbin:/usr/bin - -case "$1" in - start) echo -n "install bc-cat kernel module... " - modprobe -f bc-cat - rm -rf /dev/bc_cat - mknod /dev/bc_cat c `awk "\\$2==\"bc_cat\" {print \\$1}" /proc/devices` 0 - echo "done" - ;; - stop) echo -n "removing bc-cat kernel module... " - rmmod bc-cat - echo "done" - rm -rf /dev/bc_cat - ;; - *) echo "$0 <start/stop>" - ;; -esac - |