2
0
mirror of https://github.com/lm-sensors/lm-sensors synced 2025-08-28 04:47:44 +00:00
lm-sensors/prog/mkdev/mkdev.sh
Frodo Looijaard 21fafe4241 A small program to create /dev/i2c-* nodes
git-svn-id: http://lm-sensors.org/svn/lm-sensors/trunk@162 7894878c-1315-0410-8ee3-d5d059ff63e0
1999-01-13 20:09:44 +00:00

24 lines
376 B
Bash
Executable File

#!/bin/bash
# Here you can set several defaults.
# The number of devices to create (max: 256)
NUMBER=32
# The owner and group of the devices
OUSER=root
OGROUP=root
# The mode of the devices
MODE=600
i=0;
while [ $i -lt $NUMBER ] ; do
echo /dev/i2c-$i
mknod -m 000 /dev/i2c-$i c 89 $i
chown "$OUSER:$OGROUP" /dev/i2c-$i
chmod $MODE /dev/i2c-$i
i=$[$i + 1]
done