The minor number is used by the kernel to determine exactly which device is being referred to.
The above explanation is just two abstract, can someone illustrate?
The above explanation is just two abstract, can someone illustrate?
| |||
|
feedback
|
|
The major number identifies the device driver to use, the minor number indicates which device. If you have multiple partitions, for instance, each gets its own minor:
Minor 0 in this case is the raw drive, minor 1 is partition 1, minor 2 is partition 2, etc. Not all devices use 0 as a special case, however. The serial devices start their numbering at 0, where
In either event, when the device file is opened the kernel will use the major number to determine which module will handle the file and passes the minor to the | |||||||
feedback
|
|
as in the language C ,counting starts from 0 ...it could be a sort of convention followed by driver writers ...after all everything in Linux is based upon C or to some extent C++.Its just a numbering scheme ..You can also start naming your devices from any number between 0 and 255,but please be carefull do not cross the 255 mark for minor numbers else you may overwrite the next available major number..hope this answer helps | |||
|
feedback
|
|
Good explanation on major and minor numbers: | |||
|
feedback
|