September 2016
Intermediate to advanced
989 pages
24h 10m
English
Block devices are also associated with a device node, which also has major and minor numbers.
Although character and block devices are identified using major and minor numbers, they are in different namespaces. A character driver with a major number 4 is in no way related to a block driver with a major number 4.
With block devices, the major number is used to identify the device driver and the minor number is used to identify the partition. Let's look at the MMC driver as an example:
# ls -l /dev/mmcblk* brw------- 1 root root 179, 0 Jan 1 1970 /dev/mmcblk0 brw------- 1 root root 179, 1 Jan 1 1970 /dev/mmcblk0p1 brw------- 1 root root 179, 2 Jan 1 1970 /dev/mmcblk0p2 brw------- 1 root root 179, 8 Jan 1 1970 /dev/mmcblk1 brw------- ...
Read now
Unlock full access