diff --git a/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml b/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml index d3b98d5c92..66719815b2 100644 --- a/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml +++ b/en_US.ISO8859-1/books/arch-handbook/driverbasics/chapter.xml @@ -43,7 +43,6 @@ linker facility `kld'. device nodes - MAKEDEV Most devices in a &unix;-like operating system are accessed through device-nodes, sometimes also called special files. @@ -155,46 +154,6 @@ KMOD=skeleton - - Accessing a Device Driver - - &unix; provides a common set of system calls for user - applications to use. The upper layers of the kernel dispatch - these calls to the corresponding device driver when a user - accesses a device node. The /dev/MAKEDEV - script makes most of the device nodes for your system but if you - are doing your own driver development it may be necessary to - create your own device nodes with - mknod. - - - Creating Static Device Nodes - - device nodesstatic - mknod - - The mknod command requires four - arguments to create a device node. You must specify the name - of the device node, the type of device, the major number of - the device, and the minor number of the device. - - - - Dynamic Device Nodes - - device nodesdynamic - devfs - - The device filesystem, or devfs, provides access to the - kernel's device namespace in the global filesystem namespace. - This eliminates the problems of potentially having a device - driver without a static device node, or a device node without - an installed device driver. Devfs is still a work in - progress, but it is already working quite nicely. - - - - Character Devices diff --git a/en_US.ISO8859-1/books/arch-handbook/mac/chapter.xml b/en_US.ISO8859-1/books/arch-handbook/mac/chapter.xml index 483889c9dc..401afd00ad 100644 --- a/en_US.ISO8859-1/books/arch-handbook/mac/chapter.xml +++ b/en_US.ISO8859-1/books/arch-handbook/mac/chapter.xml @@ -5888,7 +5888,7 @@ Label destruction o or EPERM for lack of privilege. This call may be made in a number of situations, including as a result of calls to &man.open.2; with - O_CREAT, &man.mknod.2;, &man.mkfifo.2;, and + O_CREAT, &man.mkfifo.2;, and others.