In my life I've not once updated drivers on any of my Linux systems, though they have all been desktops. A friend was asking me why one does not need to update Linux drivers and I found myself unable to answer their question. Is it due to the open source community building good drivers before they are submitted to the kernel, or do driver updates occur when I do normal system updates or something?
|
|
Driver updates occur when the kernel is updated, with each version of a new kernel new features (and bugs :) in drivers are introduced and bugs are fixed. You can read the kernel's changelog if you want to see what changed, e.g. for kernel 3.3.7, also posts in the Linux Kernel Mailing List, e.g. Linux 3.4 released. KernelNewbies also provides information on those new features in an easier way to read than the changelog (e.g. kernel 3.4). If you use "out-of-tree" drivers (e.g. binary blobs, like nVidia/ATI), then those drivers will obviously not be updated with the kernel; it's up to their developers to release new versions that work with newer kernels, and up to you (or to your distro's repositories) to upgrade them. |
||||
|
There are two types of drivers in distributions: compiled in kernel (and/or distributed in the same package) and distributed as kernel modules in separate packages. Most distributions when you perform system update updates all of the installed packages including packaged kernel modules and kernel itself, so whole update process is invisible to user. |
|||
|
|
|
The "normal" drivers are being taken care of by the normal operating-system upgrades. During minor release updates the version of the drivers may change a bit. For firmware of your hardware-eqipment (BIOS, RAID-Controller, harddisks, backplane, fibre-channel-cards, network-cards) you have to take care yourselv. This mostly applies to servers. On PCs - upgrade if you need a feature or a bug-fix (normally BIOS). Somewhere in between are Intel-CPU-microcode-updates. They are normally applied by the BIOS, but can also be applied by the operating system (microcode_ctl is one of the services doing such a thing). The microcode in the OS is normally being updated during minor release changes. But: You can also go directly to Intel, download the tar-file and place it onto linux - then you will have the newest available version (again - if you need it). |
|||
|
|