diff options
| author | Richard Purdie <richard@openedhand.com> | 2005-09-22 22:02:48 +0000 |
|---|---|---|
| committer | Richard Purdie <richard@openedhand.com> | 2005-09-22 22:02:48 +0000 |
| commit | 26a96fc12fb2df9e965087589da2ed6a3e39b5e4 (patch) | |
| tree | aa162fa89439bae50782e2528b02ed2a407c3131 /openembedded/packages/udev/files/devfs-udev.rules | |
| parent | d18457f094de8532eb8921991303032cdb345fe9 (diff) | |
| download | poky-26a96fc12fb2df9e965087589da2ed6a3e39b5e4.tar.gz | |
Updates against mainline OE to fix various issues and make builds work again as a couple of poky changes got lost
git-svn-id: https://svn.o-hand.com/repos/poky@29 311d38ba-8fff-0310-9ca6-ca027cbcb966
Diffstat (limited to 'openembedded/packages/udev/files/devfs-udev.rules')
| -rw-r--r-- | openembedded/packages/udev/files/devfs-udev.rules | 108 |
1 files changed, 108 insertions, 0 deletions
diff --git a/openembedded/packages/udev/files/devfs-udev.rules b/openembedded/packages/udev/files/devfs-udev.rules new file mode 100644 index 0000000000..0ba1ad4e7f --- /dev/null +++ b/openembedded/packages/udev/files/devfs-udev.rules | |||
| @@ -0,0 +1,108 @@ | |||
| 1 | # The use of these rules is not recommended or supported. | ||
| 2 | # In a world where devices can come and go at any time, the devfs scheme | ||
| 3 | # of simple device enumeration does not help _anything_. Just forget about | ||
| 4 | # it. Use custom rules to name your device or look at the persistent device | ||
| 5 | # naming scheme, which is implemented for disks and add your subsystem. | ||
| 6 | |||
| 7 | # ide block devices | ||
| 8 | BUS="ide", KERNEL="hd*", PROGRAM="/etc/udev/ide-devfs.sh %k %b %n", NAME="%k", SYMLINK="%c{1} %c{2}" | ||
| 9 | |||
| 10 | # md block devices | ||
| 11 | KERNEL="md[0-9]*", NAME="md/%n" | ||
| 12 | |||
| 13 | # floppy devices | ||
| 14 | KERNEL="fd[0-9]*", NAME="floppy/%n" | ||
| 15 | |||
| 16 | # tty devices | ||
| 17 | KERNEL="tty[0-9]*", NAME="vc/%n", SYMLINK="%k" | ||
| 18 | KERNEL="ttyS[0-9]*", NAME="tts/%n", SYMLINK="%k" | ||
| 19 | KERNEL="ttyUSB[0-9]*", NAME="tts/USB%n" | ||
| 20 | |||
| 21 | # vc devices | ||
| 22 | KERNEL="vcs", NAME="vcc/0" | ||
| 23 | KERNEL="vcs[0-9]*", NAME="vcc/%n" | ||
| 24 | KERNEL="vcsa", NAME="vcc/a0" | ||
| 25 | KERNEL="vcsa[0-9]*", NAME="vcc/a%n" | ||
| 26 | |||
| 27 | # v4l devices | ||
| 28 | KERNEL="video[0-9]*", NAME="v4l/video%n" | ||
| 29 | KERNEL="radio[0-9]*", NAME="v4l/radio%n" | ||
| 30 | KERNEL="vbi[0-9]*", NAME="v4l/vbi%n" | ||
| 31 | KERNEL="vtx[0-9]*", NAME="v4l/vtx%n" | ||
| 32 | |||
| 33 | # dm devices (ignore them) | ||
| 34 | KERNEL="dm-[0-9]*", NAME="" | ||
| 35 | |||
| 36 | # i2c devices | ||
| 37 | KERNEL="i2c-[0-9]*", NAME="i2c/%n", SYMLINK="%k" | ||
| 38 | |||
| 39 | # loop devices | ||
| 40 | KERNEL="loop[0-9]*", NAME="loop/%n", SYMLINK="%k" | ||
| 41 | |||
| 42 | # ramdisks | ||
| 43 | KERNEL="ram[0-9]*", NAME="rd/%n", SYMLINK="%k" | ||
| 44 | |||
| 45 | # framebuffer devices | ||
| 46 | KERNEL="fb[0-9]*", NAME="fb/%n", SYMLINK="%k" | ||
| 47 | |||
| 48 | # misc | ||
| 49 | KERNEL="rtc", NAME="misc/%k", SYMLINK="%k" | ||
| 50 | KERNEL="psaux", NAME="misc/%k", SYMLINK="%k" | ||
| 51 | KERNEL="agpgart", NAME="misc/%k", SYMLINK="%k" | ||
| 52 | KERNEL="rtc", NAME="misc/%k", SYMLINK="%k" | ||
| 53 | KERNEL="psaux", NAME="misc/%k", SYMLINK="%k" | ||
| 54 | KERNEL="uinput", NAME="misc/%k", SYMLINK="%k" | ||
| 55 | |||
| 56 | # alsa devices | ||
| 57 | KERNEL="controlC[0-9]*", NAME="snd/%k" | ||
| 58 | KERNEL="hw[CD0-9]*", NAME="snd/%k" | ||
| 59 | KERNEL="pcm[CD0-9cp]*", NAME="snd/%k" | ||
| 60 | KERNEL="midi[CD0-9]*", NAME="snd/%k" | ||
| 61 | KERNEL="timer", NAME="snd/%k" | ||
| 62 | KERNEL="seq", NAME="snd/%k" | ||
| 63 | |||
| 64 | # oss devices | ||
| 65 | KERNEL="audio*", NAME="sound/%k", SYMLINK="%k" | ||
| 66 | KERNEL="dmmidi", NAME="sound/%k", SYMLINK="%k" | ||
| 67 | KERNEL="dsp*", NAME="sound/%k", SYMLINK="%k" | ||
| 68 | KERNEL="midi*", NAME="sound/%k", SYMLINK="%k" | ||
| 69 | KERNEL="mixer*", NAME="sound/%k", SYMLINK="%k" | ||
| 70 | KERNEL="sequencer*", NAME="sound/%k", SYMLINK="%k" | ||
| 71 | |||
| 72 | # input devices | ||
| 73 | KERNEL="mice", NAME="input/%k" | ||
| 74 | KERNEL="mouse*", NAME="input/%k" | ||
| 75 | KERNEL="event*", NAME="input/%k" | ||
| 76 | KERNEL="js*", NAME="input/%k" | ||
| 77 | KERNEL="ts*", NAME="input/%k" | ||
| 78 | |||
| 79 | # USB devices | ||
| 80 | KERNEL="hiddev*", NAME="usb/%k" | ||
| 81 | KERNEL="auer*", NAME="usb/%k" | ||
| 82 | KERNEL="legousbtower*", NAME="usb/%k" | ||
| 83 | KERNEL="dabusb*", NAME="usb/%k" | ||
| 84 | BUS="usb", KERNEL="lp[0-9]*", NAME="usb/%k" | ||
| 85 | |||
| 86 | # netlink devices | ||
| 87 | KERNEL="route", NAME="netlink/%k" | ||
| 88 | KERNEL="skip", NAME="netlink/%k" | ||
| 89 | KERNEL="usersock", NAME="netlink/%k" | ||
| 90 | KERNEL="fwmonitor", NAME="netlink/%k" | ||
| 91 | KERNEL="tcpdiag", NAME="netlink/%k" | ||
| 92 | KERNEL="nflog", NAME="netlink/%k" | ||
| 93 | KERNEL="xfrm", NAME="netlink/%k" | ||
| 94 | KERNEL="arpd", NAME="netlink/%k" | ||
| 95 | KERNEL="route6", NAME="netlink/%k" | ||
| 96 | KERNEL="ip6_fw", NAME="netlink/%k" | ||
| 97 | KERNEL="dnrtmsg", NAME="netlink/%k" | ||
| 98 | KERNEL="tap*", NAME="netlink/%k" | ||
| 99 | |||
| 100 | # CAPI devices | ||
| 101 | KERNEL="capi", NAME="capi20", SYMLINK="isdn/capi20" | ||
| 102 | KERNEL="capi*", NAME="capi/%n" | ||
| 103 | |||
| 104 | # Network devices | ||
| 105 | KERNEL="tun", NAME="net/%k" | ||
| 106 | |||
| 107 | # raw devices | ||
| 108 | KERNEL="raw[0-9]*", NAME="raw/%k" | ||
