blob: c73e3a9c6b31d0258a5a1b51b2ae401db4ef7973 [file] [log] [blame]
Patrick Williams8b8bc412016-08-17 15:02:23 -05001#!/bin/sh
2### BEGIN INIT INFO
3# Provides: vchiq.sh
4# Required-Start: $remote_fs rmnologin
5# Required-Stop:
6# Default-Start: S
7# Default-Stop:
8# Short-Description: Create /dev/vchiq.
9# Description: Get the major number from /proc/devices and use it
10# ti create /dev/vchiq
11### END INIT INFO
12
13rm -f /dev/vchiq
14
15#Get the major number
16major=$(awk "\$2==\"vchiq\" {print \$1}" /proc/devices)
17
18if [ -z "$major" ]; then
19 echo "Error: Cannot find vchiq in /proc/devices"
20 exit 2
21else
22 mknod /dev/vchiq c "$major" 0
23 chmod a+w /dev/vchiq
24fi