![]() | ![]() |
|
The Linux BootPrompt-HowToby Paul Gortmaker.v1.4, Mar 21, 2003This is the BootPrompt-Howto, which is a compilation of all the possible boot time arguments that can be passed to the Linux kernel at boot time. A discussion of how the kernel sorts boot time arguments, along with an overview of some of the popular software used to boot Linux kernels is also included.
1. Introduction
2. Overview of Boot Prompt Arguments
3. General Non-Device Specific Boot Args
4. Boot Arguments to Control PCI Bus Behaviour (`pci=')
5. Boot Arguments for Video Frame Buffer Drivers
6. Boot Arguments for SCSI Peripherals.
7. Hard Disks
8. The Sound Drivers
9. CD-ROMs (Non-SCSI/ATAPI/IDE)
10. Serial and ISDN Drivers
11. Other Hardware Devices
12. Copying, Translations, Closing, etc.1. Introduction
The kernel has the capability to accept information at boot in the form of a `command line', similar to an argument list you would give to a program. In general this is used to supply the kernel with information about hardware parameters that the kernel would not be able to determine on its own, or to avoid/override the values that the kernel would otherwise detect. It is the job of the boot loader (e.g. LILO, loadlin or Grub) to take this information from the user and put it in a previously agreed upon place where the kernel can find it once it starts. This present revision covers kernels up to and including v2.4.20. and v2.5.63 The BootPrompt-Howto is by:
Paul Gortmaker,
This document is Copyright (c) 1995-2003 by Paul Gortmaker. Please see the Disclaimer and Copying information at the end of this document ( copyright) for information about redistribution of this document and the usual `we are not responsible for what you manage to break...' type legal stuff.
1.1 Intended Audience and ApplicabilityMost Linux users should never have to even look at this document. Linux does an exceptionally good job at detecting most hardware and picking reasonable default settings for most parameters. The information in this document is aimed at users who might want to change some of the default settings to optimize the kernel to their particular machine, or to a user who has `rolled their own' kernel to support a not so common piece of hardware for which the automatic defaults are not optimal. For the sake of this document it is best to break the
boot arguments into two general categories; (a)ones
handled by the kernel and (b)those being handled by a device driver.
Examples would be IMPORTANT NOTE: Driver related boot prompt arguments
only apply to hardware drivers that are compiled directly into the
kernel. They have no effect on drivers that are loaded
as modules. Most Linux distributions come with a basic `bare-bones'
kernel, and the drivers are small modules that are loaded after
the kernel has initialized.
If you are unsure if you are using modules then try In light of this, device driver boot prompt arguments are only really used by a few people who are building their own kernels, and thus have the kernel source at hand. These people are usually going to check the source for the options and syntax required by that driver to get the most up to date info. For example, if you were looking for what arguments could be
passed to the AHA1542 SCSI driver, then you would go to the
1.2 Related Documentation
For a while now, the kernel source has come with the file
The The next best thing to reading the kernel C source itself, will
be any of the other documentation files that are
distributed with the kernel itself. There are now quite a
few of these, and most of them can be found in the directory
If you have figured out what boot-args you intend to use, and now want to know how to get that information to the kernel, then look at the documentation that comes with the software that you use to boot the kernel (e.g. LILO or loadlin). A brief overview is given below, but it is no substitute for the documentation that comes with the booting software.
1.3 New Versions of this DocumentNew versions of this document can be retrieved via anonymous
FTP from most Linux FTP sites in the directory
If you want to get the official copy, here is URL.
2. Overview of Boot Prompt Arguments
This section gives some examples of software that can be used to pass kernel boot-time arguments to the kernel itself. It also gives you an idea of how the arguments are processed, what limitations there are on the boot args, and how they filter down to each appropriate device that they are intended for. It is important to note that spaces should not be used in a boot argument, but only between separate arguments. A list of values that are for a single argument are to be separated with a comma between the values, and again without any spaces. See the following examples below.
ether=9,0x300,0xd0000,0xd4000,eth0 root=/dev/hda1 *RIGHT* ether = 9, 0x300, 0xd0000, 0xd4000, eth0 root = /dev/hda1 *WRONG* Once the Linux kernel is up and running, one can view the command
line arguments that were in place at boot by simply typing
2.1 LILO (LInux LOader)The LILO program (LInux LOader) written by Werner Almesberger is the most commonly used. It has the ability to boot various kernels, and stores the configuration information in a plain text file. Most distributions ship with LILO as the default boot-loader. LILO can boot DOS, OS/2, Linux, FreeBSD, etc. without any difficulties, and is quite flexible. A typical configuration will have LILO stop and print
LILO: linux root=/dev/hda1 LILO comes with excellent documentation, and for the purposes
of boot args discussed here, the LILO
2.2 LoadLinThe other commonly used Linux loader is `LoadLin' which is a DOS program that has the capability to launch a Linux kernel from the DOS prompt (with boot-args) assuming that certain resources are available. This is good for people that use DOS and want to launch into Linux from DOS. It is also very useful if you have certain hardware which relies
on the supplied DOS driver to put the hardware into a known
state. A common example is `SoundBlaster Compatible' sound
cards that require the DOS driver to set a few proprietary
registers to put the card into a SB compatible mode. Booting
DOS with the supplied driver, and then loading Linux from
the DOS prompt with There are also other programs that can be used to boot Linux.
For a complete list, please look at the programs available
on your local Linux ftp mirror, under
2.3 The ``rdev'' utilityThere are a few of the kernel boot parameters that have their
default values stored in various bytes in the kernel image itself.
There is a utility called The rdev utility is usually also aliased to swapdev, ramsize, vidmode and rootflags. These are the five things that rdev can change, those being the root device, the swap device, the RAM disk parameters, the default video mode, and the readonly/readwrite setting of root device. More information on
2.4 How the Kernel Sorts the ArgumentsMost of the boot args take the form of: name[=value_1][,value_2]...[,value_11] where `name' is a unique keyword that is used to identify what part of the kernel the associated values (if any) are to be given to. Multiple boot args are just a space separated list of the above format. Note the limit of 11 is real, as the present code only handles 11 comma separated parameters per keyword. (However, you can re-use the same keyword with up to an additional 11 parameters in unusually complicated situations, assuming the setup function supports it.) Also note that the kernel splits the list into a maximum of ten integer arguments, and a following string, so you can't really supply 11 integers unless you convert the 11th arg from a string to an int in the driver itself. Most of the sorting goes on in Then it walks a list of setup functions (contained in the
2.5 Setting Environment Variables.Anything of the form `foo=bar' that is not accepted as a
setup function as described above is then interpreted as an
environment variable to be set. An example would
be to use
2.6 Passing Arguments to the `init' programAny remaining arguments that were not picked up by the
kernel and were not interpreted as environment variables
are then passed onto process one, which is usually the
3. General Non-Device Specific Boot ArgsThese are the boot arguments that are not related to any specific device or peripheral. They are instead related to certain internal kernel parameters, such as memory handling, ramdisk handling, root file system handling and others.
3.1 Root Filesystem optionsThe following options all pertain to how the kernel selects and handles the root filesystem.
The `root=' ArgumentThis argument tells the kernel what device is to be used as the root filesystem while booting. The default of this setting is the value of the root device of the system that the kernel was built on. For example, if the kernel in question was built on a system that used `/dev/hda1' as the root partition, then the default root device would be `/dev/hda1'. To override this default value, and select the second floppy drive as the root device, one would use `root=/dev/fd1'. Valid root devices are any of the following devices: (1) /dev/hdaN to /dev/hddN, which is partition N on ST-506 compatible disk `a to d'. (2) /dev/sdaN to /dev/sdeN, which is partition N on SCSI compatible disk `a to e'. (3) /dev/xdaN to /dev/xdbN, which is partition N on XT compatible disk `a to b'. (4) /dev/fdN, which is floppy disk drive number N. Having N=0 would be the DOS `A:' drive, and N=1 would be `B:'. (5) /dev/nfs, which is not really a device, but rather a flag to tell the kernel to get the root fs via the network. (6) /dev/ram, which is the RAM disk. The more awkward and less portable numeric specification
of the above possible disk devices in major/minor format is
also accepted. (e.g. /dev/sda3 is major 8, minor 3, so you
could use This is one of the few kernel boot arguments that has its
default stored in the kernel image, and which can thus
be altered with the
The `rootflags=' ArgumentThis option allows you to give options pertaining to the
mounting of the root filesystem just as you would to the
The `rootfstype=' ArgumentThis option allows you to give a comma separated list of fs types that will be tried for a match when trying to mount the root filesystem. This list will be used instead of the internal default which usually starts with ext2, minix and the like.
The `ro' ArgumentWhen the kernel boots, it needs a root filesystem to read basic things off of. This is the root filesystem that is mounted at boot. However, if the root filesystem is mounted with write access, you can not reliably check the filesystem integrity with half-written files in progress. The `ro' option tells the kernel to mount the root filesystem as `readonly' so that any filesystem consistency check programs (fsck) can safely assume that there are no half-written files in progress while performing the check. No programs or processes can write to files on the filesystem in question until it is `remounted' as read/write capable. This is one of the few kernel boot arguments that has its
default stored in the kernel image, and which can thus
be altered with the
The `rw' ArgumentThis is the exact opposite of the above, in that it tells the kernel to mount the root filesystem as read/write. The default is to mount the root filesystem as read only. Do not run any `fsck' type programs on a filesystem that is mounted read/write. The same value stored in the image file mentioned above is
also used for this parameter, accessible via
The `nfsroot=' ArgumentThis argument tells the kernel which machine, what directory
and what NFS options to use for the root filesystem.
Also note that
the argument
The `ip=' or `nfsaddrs=' ArgumentIf you are using NFS as a root filesystem, then there is no
programs like
3.2 Options Relating to RAM Disk ManagementThe following options all relate to how the kernel handles the RAM disk device, which is usually used for bootstrapping machines during the install phase, or for machines with modular drivers that need to be installed to access the root filesystem.
The `ramdisk_start=' ArgumentTo allow a kernel image to reside on a floppy disk along with a compressed ramdisk image, the `ramdisk_start=<offset>' command was added. The kernel can't be included into the compressed ramdisk filesystem image, because it needs to be stored starting at block zero so that the BIOS can load the bootsector and then the kernel can bootstrap itself to get going. Note: If you are using an uncompressed ramdisk image, then the kernel can be a part of the filesystem image that is being loaded into the ramdisk, and the floppy can be booted with LILO, or the two can be separate as is done for the compressed images. If you are using a two-disk boot/root setup (kernel on disk 1, ramdisk image on disk 2) then the ramdisk would start at block zero, and an offset of zero would be used. Since this is the default value, you would not need to actually use the command at all.
The `load_ramdisk=' ArgumentThis parameter tells the kernel whether it is to try to load a ramdisk image or not. Specifying `load_ramdisk=1' will tell the kernel to load a floppy into the ramdisk. The default value is zero, meaning that the kernel should not try to load a ramdisk. Please see the file
The `prompt_ramdisk=' ArgumentThis parameter tells the kernel whether or not to give you a prompt asking you to insert the floppy containing the ramdisk image. In a single floppy configuration the ramdisk image is on the same floppy as the kernel that just finished loading/booting and so a prompt is not needed. In this case one can use `prompt_ramdisk=0'. In a two floppy configuration, you will need the chance to switch disks, and thus `prompt_ramdisk=1' can be used. Since this is the default value, it doesn't really need to be specified. ( (Historical note: Sneaky people used to use the `vga=ask' LILO option to temporarily pause the boot process and allow a chance to switch from boot to root floppy.) Please see the file
The `ramdisk_size=' ArgumentWhile it is true that the ramdisk grows dynamically as required, there is an upper bound on its size so that it doesn't consume all available RAM and leave you in a mess. The default is 4096 (i.e. 4MB) which should be large enough for most needs. You can override the default to a bigger or smaller size with this boot argument. Please see the file
The `ramdisk_blocksize=' ArgumentThis can be tuned for better memory management behaviour.
Quoting from the ramdisk driver It would be very desirable to have a soft-blocksize (that in the case of the ramdisk driver is also the hardblocksize ;) of PAGE_SIZE because doing that we'll achieve a far better MM footprint. Using a rd_blocksize of BLOCK_SIZE in the worst case we'll make PAGE_SIZE/BLOCK_SIZE buffer-pages unfreeable. With a rd_blocksize of PAGE_SIZE instead we are sure that only 1 page will be protected. Depending on the size of the ramdisk you may want to change the ramdisk blocksize to achieve a better or worse MM behaviour. The default is still BLOCK_SIZE (needed by rd_load_image that supposes the filesystem in the image uses a BLOCK_SIZE blocksize)
The `ramdisk=' Argument (obsolete)(NOTE: This argument is obsolete, and should not be used except
on kernels v1.3.47 and older. The commands that should be used
for the ramdisk device are documented above. Newer kernels
may accept this as an alias for This specifies the size in kB of the RAM disk device. For example, if one wished to have a root filesystem on a 1.44MB floppy loaded into the RAM disk device, they would use:
ramdisk=1440 This is one of the few kernel boot arguments that has its
default stored in the kernel image, and which can thus
be altered with the
The `noinitrd' (initial RAM disk) ArgumentThe v2.x and newer kernels have a feature where the root filesystem
can be initially a RAM disk, and the kernel executes The actual `noinitrd' argument determines what happens to the
initrd data after the kernel has booted. When
specified, instead of converting it to a RAM disk, it
is accessible via
3.3 Boot Arguments Related to Memory HandlingThe following arguments alter how Linux detects or handles the physical and virtual memory of your system.
The `cachesize=' ArgumentOverride level 2 CPU cache size detection (in kB). Sometimes CPU hardware bugs make them report the cache size incorrectly. The kernel will attempt work arounds to fix known problems, but for some CPUs it is not possible to determine what the correct size should be. This option provides an override for these situations.
The `mem=' ArgumentThis argument has several purposes: The original purpose was to specify the amount of installed memory (or a value less than that if you wanted to limit the amount of memory available to linux). The next (and hardly used) purpose is to specify
The original BIOS call defined in the PC specification that
returns the amount of installed memory was only designed to
be able to report up to 64MB. (Yes, another lack of foresight,
just like the 1024 cylinder disks... sigh.) Linux uses this
BIOS call at boot to determine how much memory is installed.
A newer specification (e820) allows the BIOS to get this right
on most machines nowadays. If you have more than 64MB of RAM
installed on an older machine, you can use this
boot argument to tell Linux how much memory you have.
Here is a quote from Linus on the usage of the ``The kernel will accept any `mem=xx' parameter you give it, and if it turns out that you lied to it, it will crash horribly sooner or later. The parameter indicates the highest addressable RAM address, so `mem=0x1000000' means you have 16MB of memory, for example. For a 96MB machine this would be `mem=0x6000000'. If you tell Linux that it has more memory than it actually does have, bad things will happen: maybe not at once, but surely eventually.'' Note that the argument does not have to be in hex, and the
suffixes `k' and `M' (case insensitive) can be used to specify
kilobytes and Megabytes, respectively. (A `k' will cause a 10 bit
shift on your value, and a `M' will cause a 20 bit shift.)
A typical example for a 128MB machine would be " In some cases, the memory reported via e820 can also be wrong,
and so the
mem=exactmap mem=640K@0 mem=1023M@1M for a 1GB machine with the usual 384k of ISA memory mapped I/O space excluded from use.
The `memfrac=' ArgumentMemory is broken down into zones; on i386 these zones
correspond to `DMA' (for legacy ISA devices that can only address
up to 16MB via DMA); `Normal' for memory from 16MB up to 1GB,
and `HighMem' for memory beyond 1GB (assuming your kernel
was built with high mem support enabled). The two (or three)
integers supplied here determine how much memory in each zone
should be kept free - with the size of the zone divided by the
number supplied being used as the minimum (so smaller numbers
mean keep more free in the zone). The defaults are currently
The `swap=' ArgumentThis allows the user to tune some of the virtual memory (VM) parameters that are related to swapping to disk. It accepts the following eight parameters:
MAX_PAGE_AGE PAGE_ADVANCE PAGE_DECLINE PAGE_INITIAL_AGE AGE_CLUSTER_FRACT AGE_CLUSTER_MIN PAGEOUT_WEIGHT BUFFEROUT_WEIGHT Interested hackers are advised to have a read of
The `buff=' ArgumentSimilar to the `swap=' argument, this allows the user to tune some of the parameters related to buffer memory management. It accepts the following six parameters:
MAX_BUFF_AGE BUFF_ADVANCE BUFF_DECLINE BUFF_INITIAL_AGE BUFFEROUT_WEIGHT BUFFERMEM_GRACE Interested hackers are advised to have a read of
3.4 Other Misc. Kernel Boot ArgumentsThese various boot arguments let the user tune certain internal kernel parameters.
The `acpi=' ArgumentCurrently this only accepts `off' to disable the ACPI subsystem.
The `console=' ArgumentUsually the console is the 1st virtual terminal, and so boot
messages appear on your VGA screen. Sometimes it is nice to
be able to use another device like a serial port (or even a
printer!) to be the console when no video device is present.
It is also useful to capture boot time messages if a problem
stops progress before they can be logged to disk.
An example would be to use
The `debug' ArgumentThe kernel communicates important (and not-so important)
messages to the operator via the The threshold for what is and what isn't considered important
is set by the The console loglevel can usually also be set at run time via
an option to the
The `decnet=' ArgumentIf you are using DECnet, you can supply two comma separated integers here to give your area and node respectively.
The `devfs=' ArgumentIf you are using devfs, instead of the standard static
devices in
The `gpt' ArgumentIf you are using EFI GUID Partition Table handling, you can use this to override problems associated with an invalid PMBR.
The `idle=' ArgumentSetting this to `poll' causes the idle loop in the kernel to poll on the need reschedule flag instead of waiting for an interrupt to happen. This can result in an improvement in performance on SMP systems (albeit at the cost of an increase in power consumption).
The `init=' ArgumentThe kernel defaults to starting the `init' program at boot,
which then takes care of setting up the computer for users
via launching getty programs, running `rc' scripts and the like.
The kernel first looks for
The `isapnp=' ArgumentThis takes the form of:
The `isapnp_reserve_dma=' ArgumentThis takes the form of:
The `isapnp_reserve_io=' ArgumentThis takes the form of:
The `isapnp_reserve_irq=' ArgumentThis takes the form of:
The `isapnp_reserve_mem=' ArgumentThis takes the form of:
The `kbd-reset' ArgumentNormally on i386 based machines, the Linux kernel does not reset the keyboard controller at boot, since the BIOS is supposed to do this. But as usual, not all machines do what they should. Supplying this option may help if you are having problems with your keyboard behaviour. It simply forces a reset at initialization time. (Some have argued that this should be the default behaviour anyways).
The `lockd.udpport=' and `lockd.tcpport' ArgumentThese tell the kernel to use the given port numbers for NFS lockd operation (for either UDP or TCP operation).
The `maxcpus=' ArgumentThe number given with this argument limits the maximum
number of CPUs activated in SMP mode. Using a value of
0 is equivalent to the
The `mca-pentium' ArgumentThe IBM model 95 Microchannel machines seem to lock up on the test that Linux usually does to detect the type of math chip coupling. Since all Pentium chips have a built in math processor, this test (and the lock up problem) can be avoided by using this boot option.
The `md=' ArgumentIf your root filesystem is on a Multiple Device then you can
use this (assuming you compiled in boot support) to tell the
kernel the multiple device layout. The format (from the
file
Where See also
The `nmi_watchdog=' ArgumentSupplying a non-zero integer will enable the non maskable interrupt watchdog (assuming IO APIC support is compiled in). This checks to see if the interrupt count is increasing (indicating normal system activity) and if it is not then it assumes that a processor is stuck and forces an error dump of diagnostic information.
The `no387' ArgumentSome i387 coprocessor chips have bugs that show up when used in 32 bit protected mode. For example, some of the early ULSI-387 chips would cause solid lockups while performing floating point calculations, apparently due to a bug in the FRSAV/FRRESTOR instructions. Using the `no387' boot argument causes Linux to ignore the math coprocessor even if you have one. Of course you must then have your kernel compiled with math emulation support! This may also be useful if you have one of those really old 386 machines that could use an 80287 FPU, as Linux can't use an 80287.
The `no-hlt' ArgumentThe i386 (and successors thereof) family of CPUs have a `hlt' instruction which tells the CPU that nothing is going to happen until an external device (keyboard, modem, disk, etc.) calls upon the CPU to do a task. This allows the CPU to enter a `low-power' mode where it sits like a zombie until an external device wakes it up (usually via an interrupt). Some of the early i486DX-100 chips had a problem with the `hlt' instruction, in that they couldn't reliably return to operating mode after this instruction was used. Using the `no-hlt' instruction tells Linux to just run an infinite loop when there is nothing else to do, and to not halt your CPU when there is no activity. This allows people with these broken chips to use Linux, although they would be well advised to seek a replacement through a warranty where possible.
The `no-scroll' ArgumentUsing this argument at boot disables scrolling features that make it difficult to use Braille terminals.
The `noapic' ArgumentUsing this option tells a SMP kernel to not use some of the
advanced features of the interrupt controller on multi processor
machines. Use of this option may be required when a device
(such as those using ne2k-pci or 3c59xi drivers) stops generating
interrupts (i.e.
The `noht' ArgumentThis will disable hyper-threading on intel processors that have this feature.
The `noisapnp' ArgumentIf ISA PnP is built into the kernel, this will disable it.
The `nomce' ArgumentSome newer processors have the ability to self-monitor and detect inconsistencies that should not regularly happen. If an inconsistency is detected, a Machine Check Exception will take place and the system will be halted (rather than plundering forward and corrupting your data). You can use this argument to disable this feature, but be sure to check that your CPU is not overheating or otherwise faulty first.
The `nosmp' ArgumentUse of this option will tell a SMP kernel on a SMP machine to operate single processor. Typically only used for debugging and determining if a particular problem is SMP related.
The `noresume' ArgumentIf software suspend is enabled, and a suspend to disk file has been specified, using this argument will give a normal boot and the suspend data will be ignored.
The `notsc' ArgumentUse of this option will tell the kernel to not use the Time Stamp Counter for anything, even if the CPU has one.
The `nofxsr" ArgumentUse of this option will tell the kernel to not use any speed-up tricks involving the floating point unit, even if the processor supports them.
The `panic=' ArgumentIn the unlikely event of a kernel panic (i.e. an internal error
that has been detected by the kernel, and which the kernel decides
is serious enough to moan loudly and then halt everything), the
default behaviour is to just sit there until someone comes along
and notices the panic message on the screen and reboots the machine.
However if a machine is running unattended in an isolated location
it may be desirable for it to automatically reset itself so that
the machine comes back on line. For example, using Note that this timeout value can also be read and set via the
The `pirq=' ArgumentUsing this option tells a SMP kernel information on the PCI
slot versus IRQ settings for SMP motherboards which are
unknown (or known to be blacklisted).
See
The `profile=' ArgumentKernel developers can
profile how and where the kernel is spending its CPU cycles
in an effort to maximize efficiency and performance. This
option lets you set the profile shift count at boot. Typically
it is set to two. You need a tool such as
The `quiet' ArgumentThis is pretty much the opposite of the `debug' argument. When this is given, only important and system critical kernel messages are printed to the console. Normal messages about hardware detection at boot are suppressed.
The `raid=' ArgumentAccepts
The `reboot=' ArgumentThis option controls the type of reboot that Linux will do
when it resets the computer (typically via Other accepted options are `c', `b', `h', and `s', for cold,
bios, hard, and SMP respectively. The `s' takes an optional
digit to specify which CPU should handle the reboot. Options
can be combined where it makes sense, i.e.
The `reserve=' ArgumentThis is used to protect I/O port regions from probes. The form of the command is:
In some machines it may be necessary to prevent device drivers from checking for devices (auto-probing) in a specific region. This may be because of poorly designed hardware that causes the boot to freeze (such as some ethercards), hardware that is mistakenly identified, hardware whose state is changed by an earlier probe, or merely hardware you don't want the kernel to initialize. The The I/O ports in the specified region are protected against
device probes that do a For example, the boot line
reserve=0x300,32 blah=0x300 keeps all device drivers except the driver for `blah' from
probing As usual with boot-time specifiers there is an 11 parameter limit,
thus you can only specify 5 reserved regions per
The `resume=' ArgumentIf you are using software suspend, then this will allow you to specify the file name of the suspend to disk data that you want the machine to resume from.
The `vga=' ArgumentNote that this is not really a boot argument. It is an option
that is interpreted by LILO and not by the kernel like all the
other boot arguments are. However its use has become so common
that it deserves a mention here. It can also be set via using
Note that newer kernels (v2.1 and up) have the setup code that
changes the video mode as an option, listed as
4. Boot Arguments to Control PCI Bus Behaviour (`pci=')The `pci=' argument (not avail. in v2.0 kernels)
can be used to change the behaviour of PCI bus device
probing and device behaviour. Firstly the file
4.1 The `pci=assign-busses' ArgumentThis tells the kernel to always assign all PCI bus numbers, overriding whatever the firmware may have done.
4.2 The `pci=bios' and `pci=nobios' ArgumentsThese are used to set/clear the flag indicating that the PCI probing is to take place via the PCI BIOS. The default is to use the BIOS.
4.3 The `pci=conf1' and `pci=conf2' ArgumentsIf PCI direct mode is enabled, the use of these enables either configuration Type 1 or Type 2. These implicitly clear the PCI BIOS probe flag (i.e. `pci=nobios') too.
4.4 The `pci=irqmask=' ArgumentThis allows the user to supply an IRQ mask value, which is converted using strtol(). It will set a bit mask of IRQs allowed to be assigned automatically to PCI devices. You can make the kernel exclude IRQs of your ISA cards this way.
4.5 The `pci=lastbus=' ArgumentThis allows the user to supply a lastbus value, which is converted using strtol(). It will scan all buses till bus N. Can be useful if the kernel is unable to find your secondary buses and you want to tell it explicitly which ones they are.
4.6 The `pci=noacpi' Argument
This disables the use of ACPI routing information during the PCI configuration stages.
4.7 The `pci=nopeer' ArgumentThis disables the default peer bridge fixup, which according to the source does the following: ``In case there are peer host bridges, scan bus behind each of them. Although several sources claim that the host bridges should have header type 1 and be assigned a bus number as for PCI2PCI bridges, the reality doesn't pass this test and the bus number is usually set by BIOS to the first free value.''
4.8 The `pci=nosort' ArgumentUsing this argument instructs the kernel to not sort the PCI devices during the probing phase.
4.9 The `pci=off' ArgumentUsing this option disables all PCI bus probing. Any device drivers that make use of PCI functions to find and initialize hardware will most likely fail to work.
4.10 The `pci=usepirqmask' ArgumentThis sets the USE_PIRQ_MASK flag during PCI init. The kernel will honour the possible IRQ mask stored in the BIOS PIR table. This is needed on some systems with broken BIOSes, notably some HP Pavilion N5400 and Omnibook XE3 notebooks. This will have no effect if ACPI IRQ routing is enabled.
4.11 The `pci=rom' ArgumentThis sets the ASSIGN_ROM flag during the probing phase. The kernel will assign address space to expansion ROMs. Use with caution as certain devices share address decoders between ROMs and other resources.
5. Boot Arguments for Video Frame Buffer DriversThe `video=' argument (not avail. in v2.0 kernels) is used when the frame buffer device abstraction layer is built into the kernel. If that sounds complicated, well it isn't really too bad. It basically means that instead of having a different video program (the X11R6 server) for each brand of video card (e.g. XF86_S3, XF86_SVGA, ...), the kernel would have a built in driver available for each video card and export a single interface for the video program so that only one X11R6 server (XF86_FBDev) would be required. This is similar to how networking is now - the kernel has drivers available for each brand of network card and exports a single network interface so that just one version of a network program (like Netscape) will work for all systems, regardless of the underlying brand of network card. The typical format of this argument is
Information on the options that each driver supports will
eventually be found in If there is no Documentation file for your card, you
will have to get
the option information directly from the driver. Go to
5.1 The `video=map:...' ArgumentThis option is used to set/override the console to frame buffer device mapping. A comma separated list of numbers sets the mapping, with the value of option N taken to be the frame buffer device number for console N.
5.2 The `video=scrollback:...' ArgumentA number after the colon will set the size of memory allocated for the scrollback buffer. (Use Shift and Page Up or Page Down keys to scroll.) A suffix of `k' or `K' after the number will indicate that the number is to be interpreted as kilobytes instead of bytes.
5.3 The `video=vc:...' Argument
A number, or a range of numbers (e.g.
6. Boot Arguments for SCSI Peripherals.This section contains the descriptions of the boot args that are used for passing information about the installed SCSI host adapters, and SCSI devices.
6.1 Arguments for Upper and Mid-level DriversThe upper level drivers handle all things SCSI, regardless of whether they be disk, tape, or CD-ROM. The mid level drivers handle things like disks, CD-ROMs and tapes without getting into low level host adapter device driver specifics.
Maximum Probed LUNs (`max_scsi_luns=')Each SCSI device can have a number of `sub-devices' contained within itself. The most common example is any of the SCSI CD-ROMs that handle more than one disk at a time. Each CD is addressed as a `Logical Unit Number' (LUN) of that particular device. But most devices, such as hard disks, tape drives and such are only one device, and will be assigned to LUN zero. The problem arises with single LUN devices with bad firmware. Some poorly designed SCSI devices (old and unfortunately new) can not handle being probed for LUNs not equal to zero. They will respond by locking up, and possibly taking the whole SCSI bus down with them. The kernel has a configuration option that allows you to set the maximum number of probed LUNs. The default is to only probe LUN zero, to avoid the problem described above. To specify the number of probed LUNs at boot, one enters `max_scsi_luns=n' as a boot arg, where n is a number between one and eight. To avoid problems as described above, one would use n=1 to avoid upsetting such broken devices
SCSI Logging (`scsi_logging=')Supplying a non-zero value to this boot argument turns on
logging of all SCSI events (error, scan, mlqueue, mlcomplete,
llqueue, llcomplete, hlqueue, hlcomplete). Note that
better control of which events are logged can be obtained
via the
Parameters for the SCSI Tape Driver (`st=')Some boot time configuration of the SCSI tape driver can be achieved by using the following:
st=buf_size[,write_threshold[,max_bufs]] The first two numbers are specified in units of kB.
The default
st=32,30,2 Full details can be found in the
6.2 Arguments for SCSI Host Adapter Drivers
These are arguments for low level SCSI host device drivers, and as such are typically only used by those that compile their own kernel with the SCSI driver built in. These people are advised to check the source for the latest list of options that can be supplied to their driver.
7. Hard DisksThis section lists all the boot args associated with standard MFM/RLL, ST-506, XT, and IDE disk drive devices. Note that both the IDE and the generic ST-506 HD driver both accept the `hd=' option.
7.1 IDE Disk/CD-ROM Driver ParametersThe IDE driver accepts a number of parameters, which range
from disk geometry specifications, to support for advanced or
broken controller chips. The following is a summary of
some of the more common boot arguments. For full details, you
really should consult the file
"hdx=" is recognized for all "x" from "a" to "h", such as "hdc". "idex=" is recognized for all "x" from "0" to "3", such as "ide1". "hdx=noprobe" : drive may be present, but do not probe for it "hdx=none" : drive is NOT present, ignore cmos and do not probe "hdx=nowerr" : ignore the WRERR_STAT bit on this drive "hdx=cdrom" : drive is present, and is a cdrom drive "hdx=cyl,head,sect" : disk drive is present, with specified geometry "hdx=autotune" : driver will attempt to tune interface speed to the fastest PIO mode supported, if possible for this drive only. Not fully supported by all chipset types, and quite likely to cause trouble with older/odd IDE drives. "idex=noprobe" : do not attempt to access/use this interface "idex=base" : probe for an interface at the addr specified, where "base" is usually 0x1f0 or 0x170 and "ctl" is assumed to be "base"+0x206 "idex=base,ctl" : specify both base and ctl "idex=base,ctl,irq" : specify base, ctl, and irq number "idex=autotune" : driver will attempt to tune interface speed to the fastest PIO mode supported, for all drives on this interface. Not fully supported by all chipset types, and quite likely to cause trouble with older/odd IDE drives. "idex=noautotune" : driver will NOT attempt to tune interface speed This is the default for most chipsets, except the cmd640. "idex=serialize" : do not overlap operations on idex and ide(x^1) The following are valid ONLY on ide0, and the defaults for the base,ctl ports must not be altered.
"ide0=dtc2278" : probe/support DTC2278 interface "ide0=ht6560b" : probe/support HT6560B interface "ide0=cmd640_vlb" : *REQUIRED* for VLB cards with the CMD640 chip (not for PCI -- automatically detected) "ide0=qd6580" : probe/support qd6580 interface "ide0=ali14xx" : probe/support ali14xx chipsets (ALI M1439/M1445) "ide0=umc8672" : probe/support umc8672 chipsets During the install of some PCMCIA systems, you may be able to get detection of your CD-ROM by using: "ide2=0x180,0x386" : probe typical PCMCIA IDE interface location Everything else is rejected with a "BAD OPTION" message.
Also note that there is an implied
7.2 Old MFM/RLL/Standard ST-506 Disk Driver Options (`hd=')The standard disk driver can accept geometry arguments for the disks similar to the IDE driver. Note however that it only expects three values (C/H/S) -- any more or any less and it will silently ignore you. Also, it only accepts `hd=' as an argument, i.e. `hda=', `hdb=' and so on are not valid here. The format is as follows:
hd=cyls,heads,sects If there are two disks installed, the above is repeated with the geometry parameters of the second disk.
7.3 XT Disk Driver Options (`xd=', `xd_geo=')If you are unfortunate enough to be using one of these old 8 bit cards that move data at a whopping 125kB/s then here is the scoop. The probe code for these cards looks for an installed BIOS, and if none is present, the probe will not find your card. Or, if the signature string of your BIOS is not recognized then it will also not be found. In either case, you will then have to use a boot argument of the form:
xd=type,irq,iobase,dma_chan The The
xd=2,5,0x320,3 If the disk geometry that the kernel prints out comes out all wrong to what you know the disk is set up as, you can override that as well, with:
xd_geo=cyl_xda,head_xda,sec_xda Add another comma and another three CHS values if you are silly enough to have two disks on the old hunk of scrap...
8. The Sound Drivers
Note that there was a rewrite of a lot of the sound core and related drivers. The older stuff is generally called `OSS' and the newer is called `ALSA'. The intention is to drop the OSS stuff eventually. To avoid name conflict, the ALSA stuff generally has `snd-' as a prefix to all the boot parameters. Note that each driver has its own
individual boot argument (very old kernels used a shared
8.1 Individual Sound Device Driver Arguments
ALSA ISA drivers
OSS drivers
ALSA PCI Drivers
9. CD-ROMs (Non-SCSI/ATAPI/IDE)This section lists all the possible boot args pertaining to these older CD-ROM devices on proprietary interface cards. Note that this does not include SCSI or IDE/ATAPI CD-ROMs. See the appropriate section(s) for those types of CD-ROMs. Note that most of these CD-ROMs have documentation files that you
should read, and they are all in one handy place:
9.1 Old CD-ROM Driver Arguments
10. Serial and ISDN Drivers
10.1 The ISDN drivers
Please see
10.2 The Serial driversPlease see
11. Other Hardware DevicesAny other devices that didn't fit into any of the above categories got lumped together here.
11.1 Ethernet Devices (`ether=', `netdev=')Different drivers make use of different parameters, but they all at least share having an IRQ, an I/O port base value, and a name. In its most generic form, it looks something like this:
ether=irq,iobase[,param_1[,param_2,...param_8]]],name The first non-numeric argument is taken as the name.
The The most common use of this parameter is to force probing for a second ethercard, as the default is to only probe for one (with 2.4 and older kernels). This can be accomplished with a simple:
ether=0,0,eth1 Note that the values of zero for the IRQ and I/O base in the above example tell the driver(s) to autoprobe. IMPORTANT NOTE TO MODULE USERS: The above will not force a
probe for a second card if you are using the driver(s) as run time
loadable modules (instead of having them complied into the kernel).
Most Linux distributions use a bare bones kernel combined with a
large selection of modular drivers. The The Ethernet-HowTo has complete and extensive
documentation on using multiple cards and on the card/driver
specific implementation of the
11.2 The Floppy Disk Driver (`floppy=')There are many floppy driver options, and they are all listed in
11.3 The Bus Mouse Driver (`bmouse=')The busmouse driver only accepts one parameter, that being the hardware IRQ value to be used.
11.4 The MS Bus Mouse Driver (`msmouse=')The MS mouse driver only accepts one parameter, that being the hardware IRQ value to be used.
11.5 The Printer Driver (`lp=')With this boot argument you can tell the printer driver what ports to use and what ports not to use. The latter comes in handy if you don't want the printer driver to claim all available parallel ports, so that other drivers (e.g. PLIP, PPA) can use them instead. The format of the argument is multiple i/o, IRQ pairs. For example,
11.6 The Parallel port IP driver (`plip=')
Using
12. Copying, Translations, Closing, etc.Hey, you made it to the end! (Phew...) Now just the legal stuff.
12.1 Copyright and DisclaimerThis document is Copyright (c) 1995-1999 by Paul Gortmaker. Copying and redistribution is allowed under the conditions as outlined in the Linux Documentation Project Copyright, available from where you obtained this document, OR as outlined in the GNU General Public License, version 2 (see linux/COPYING). This document is not gospel. However, it is probably the most up to date info that you will be able to find. Nobody is responsible for what happens to your hardware but yourself. If your stuff goes up in smoke, or anything else bad happens, we take no responsibility. ie. THE AUTHOR IS NOT RESPONSIBLE FOR ANY DAMAGES INCURRED DUE TO ACTIONS TAKEN BASED ON THE INFORMATION INCLUDED IN THIS DOCUMENT. A hint to people considering doing a translation. First,
translate the SGML source (available via FTP from the HowTo
main site) so that you can then generate other output formats.
Be sure to keep a copy of the original English SGML source that
you translated from! When an updated HowTo is released,
get the new SGML source for that version, and then a simple
If you are intending to incorporate this document into a published work, please make contact (via e-mail) so that you can be supplied with the most up to date information available. In the past, out of date versions of the Linux HowTo documents have been published, which caused the developers undue grief from being plagued with questions that were already answered in the up to date versions.
12.2 ClosingIf you have found any glaring typos, or outdated info in this document, please let me know. It is easy to overlook stuff, as the kernel (and the number of drivers) is huge compared to what it was when I started this. Thanks, Paul Gortmaker,
|
![]() |