You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
24 lines
587 B
24 lines
587 B
8 years ago
|
#!/bin/sh
|
||
|
/bin/echo "running $0"
|
||
|
# <name ><type> <mode> <uid> <gid> <major> <minor> <start> <inc> <count>
|
||
|
|
||
|
makedevs /dev << EOF
|
||
|
watchdog c 644 0 0 10 130
|
||
|
cnxt d 755 0 0
|
||
|
cnxt/cnxt_gen_drv c 644 0 0 102 0
|
||
|
notifyq c 644 0 0 102 1
|
||
|
user_kal c 644 0 0 102 2
|
||
|
display c 644 0 0 238 0
|
||
|
cs_control c 644 0 0 249 0
|
||
|
input d 755 0 0
|
||
|
input/nevis_ir c 644 0 0 240 0
|
||
|
input/event0_uinput c 644 0 0 10 223
|
||
|
input/mouse c 644 0 0 13 32 0 1 4
|
||
|
input/event2 c 644 0 0 13 66
|
||
|
input/event3 c 644 0 0 13 67
|
||
|
EOF
|
||
|
ln -sf nevis_ir /dev/input/event0
|
||
|
ln -sf nevis_ir /dev/input/input0
|
||
|
|
||
|
/bin/echo "done $0"
|