Skip to main content
Answer the question about technique.
Source Link
Stephen Kitt
  • 139.8k
  • 19
  • 578
  • 536

Kernel modules have been available since version 1.1.85 in January 1995 (see the introduction of README.modules in the 1.1.85 patch). At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

When developing a new driver for the kernel, it’s easier to work on it as a module than a built-in driver: instead of rebooting when you make changes to the driver, you can unload the old module and load the new one in its place. In most cases though drivers are made available in both forms (built-in and in a module) before release, assuming they’re part of the main kernel source code. Drivers which are provided outside the main kernel source code can really only be made available as modules, unless the kernel itself is forked (which does happen).

Kernel modules have been available since version 1.1.85 in January 1995 (see the introduction of README.modules in the 1.1.85 patch). At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

Kernel modules have been available since version 1.1.85 in January 1995 (see the introduction of README.modules in the 1.1.85 patch). At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

When developing a new driver for the kernel, it’s easier to work on it as a module than a built-in driver: instead of rebooting when you make changes to the driver, you can unload the old module and load the new one in its place. In most cases though drivers are made available in both forms (built-in and in a module) before release, assuming they’re part of the main kernel source code. Drivers which are provided outside the main kernel source code can really only be made available as modules, unless the kernel itself is forked (which does happen).

It’s actually 1.1.85.
Source Link
Stephen Kitt
  • 139.8k
  • 19
  • 578
  • 536

Kernel modules have been available since at least versionversion 1.21.85 in January 1995 (see alsothe introduction of README.modules in the 1.2.0 archive1.1.85 patch). At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

Kernel modules have been available since at least version 1.2 in 1995 (see also README.modules in the 1.2.0 archive). At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

Kernel modules have been available since version 1.1.85 in January 1995 (see the introduction of README.modules in the 1.1.85 patch). At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

added 127 characters in body
Source Link
Stephen Kitt
  • 139.8k
  • 19
  • 578
  • 536

Kernel modules have been available since at least version 1.2 in 1995 (see also README.modules in the 1.2.0 archive). At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

Kernel modules have been available since at least version 1.2 in 1995. At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

Kernel modules have been available since at least version 1.2 in 1995 (see also README.modules in the 1.2.0 archive). At first, few drivers were actually available as modules, but within a few years everything that made sense as a module was available as a module.

Source Link
Stephen Kitt
  • 139.8k
  • 19
  • 578
  • 536
Loading