# There are a number of modifiers that are allowed to be used in some # of the different fields. They provide the following subsitutions: # # %n the "kernel number" of the device. # For example, 'sda3' has a "kernel number" of '3' # %e the smallest number for that name which does not matches an existing node # %k the kernel name for the device # %M the kernel major number for the device # %m the kernel minor number for the device # %b the bus id for the device # %c the string returned by the PROGRAM # %s{filename} the content of a sysfs attribute # %% the '%' char itself # The first rtc device is symlinked to /dev/rtc KERNEL=="rtc0", SYMLINK+="rtc" # Legacy paths for dbox devices KERNEL=="oled0", SYMLINK+="dbox/oled0" KERNEL=="fp0", SYMLINK+="dbox/fp0" KERNEL=="lcd0", SYMLINK+="dbox/lcd0" KERNEL=="vtuner0", SYMLINK+="misc/vtuner0" KERNEL=="vtuner1", SYMLINK+="misc/vtuner1" KERNEL=="vtuner2", SYMLINK+="misc/vtuner2" KERNEL=="vtuner3", SYMLINK+="misc/vtuner3" KERNEL=="vtuner4", SYMLINK+="misc/vtuner4" KERNEL=="vtuner5", SYMLINK+="misc/vtuner5" KERNEL=="vtuner6", SYMLINK+="misc/vtuner6" KERNEL=="vtuner7", SYMLINK+="misc/vtuner7" KERNEL=="vtuner8", SYMLINK+="misc/vtuner8" KERNEL=="vtuner9", SYMLINK+="misc/vtuner9" KERNEL=="vtuner10", SYMLINK+="misc/vtuner10" KERNEL=="vtuner11", SYMLINK+="misc/vtuner11" KERNEL=="pvr", SYMLINK+="misc/pvr" KERNEL=="i2c-[0-9]*", SYMLINK+="i2c/%n" # The first framebuffer is symlinked to /dev/fb KERNEL=="fb0", SYMLINK+="fb/0" # Make all input devices read-write to the input group SUBSYSTEM=="input", GROUP="input", MODE="660"AFAIK all of these are already in, so I don't see what makes the difference?
The current localextra.rules only allows for 4 vtuners, and the Edision MIO can do a lot more than that.
https://github.com/O...ocalextra.rules
Still I don't think that explains why your additional tuner doesn't work. First of all, a "normal" (DVB4Linux API compatible) tuner does NOT take up a vtuner. Some, notably SUNDTEK, tuners have their support in userspace, so they do need a vtuner, one of them. The only other use of vtuners I can think of is SAT>IP.
There is an easy way to check by creating the symlinks to the device nodes yourself, it doesn't NEED to be done by udev, it's just more convenient that way.