kernel-parameters.txt 122 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540
  1. Kernel Parameters
  2. ~~~~~~~~~~~~~~~~~
  3. The following is a consolidated list of the kernel parameters as implemented
  4. (mostly) by the __setup() macro and sorted into English Dictionary order
  5. (defined as ignoring all punctuation and sorting digits before letters in a
  6. case insensitive manner), and with descriptions where known.
  7. Module parameters for loadable modules are specified only as the
  8. parameter name with optional '=' and value as appropriate, such as:
  9. modprobe usbcore blinkenlights=1
  10. Module parameters for modules that are built into the kernel image
  11. are specified on the kernel command line with the module name plus
  12. '.' plus parameter name, with '=' and value if appropriate, such as:
  13. usbcore.blinkenlights=1
  14. Hyphens (dashes) and underscores are equivalent in parameter names, so
  15. log_buf_len=1M print-fatal-signals=1
  16. can also be entered as
  17. log-buf-len=1M print_fatal_signals=1
  18. This document may not be entirely up to date and comprehensive. The command
  19. "modinfo -p ${modulename}" shows a current list of all parameters of a loadable
  20. module. Loadable modules, after being loaded into the running kernel, also
  21. reveal their parameters in /sys/module/${modulename}/parameters/. Some of these
  22. parameters may be changed at runtime by the command
  23. "echo -n ${value} > /sys/module/${modulename}/parameters/${parm}".
  24. The parameters listed below are only valid if certain kernel build options were
  25. enabled and if respective hardware is present. The text in square brackets at
  26. the beginning of each description states the restrictions within which a
  27. parameter is applicable:
  28. ACPI ACPI support is enabled.
  29. AGP AGP (Accelerated Graphics Port) is enabled.
  30. ALSA ALSA sound support is enabled.
  31. APIC APIC support is enabled.
  32. APM Advanced Power Management support is enabled.
  33. ARM ARM architecture is enabled.
  34. AVR32 AVR32 architecture is enabled.
  35. AX25 Appropriate AX.25 support is enabled.
  36. BLACKFIN Blackfin architecture is enabled.
  37. CLK Common clock infrastructure is enabled.
  38. CMA Contiguous Memory Area support is enabled.
  39. DRM Direct Rendering Management support is enabled.
  40. DYNAMIC_DEBUG Build in debug messages and enable them at runtime
  41. EDD BIOS Enhanced Disk Drive Services (EDD) is enabled
  42. EFI EFI Partitioning (GPT) is enabled
  43. EIDE EIDE/ATAPI support is enabled.
  44. EVM Extended Verification Module
  45. FB The frame buffer device is enabled.
  46. FTRACE Function tracing enabled.
  47. GCOV GCOV profiling is enabled.
  48. HW Appropriate hardware is enabled.
  49. IA-64 IA-64 architecture is enabled.
  50. IMA Integrity measurement architecture is enabled.
  51. IOSCHED More than one I/O scheduler is enabled.
  52. IP_PNP IP DHCP, BOOTP, or RARP is enabled.
  53. IPV6 IPv6 support is enabled.
  54. ISAPNP ISA PnP code is enabled.
  55. ISDN Appropriate ISDN support is enabled.
  56. JOY Appropriate joystick support is enabled.
  57. KGDB Kernel debugger support is enabled.
  58. KVM Kernel Virtual Machine support is enabled.
  59. LIBATA Libata driver is enabled
  60. LP Printer support is enabled.
  61. LOOP Loopback device support is enabled.
  62. M68k M68k architecture is enabled.
  63. These options have more detailed description inside of
  64. Documentation/m68k/kernel-options.txt.
  65. MDA MDA console support is enabled.
  66. MIPS MIPS architecture is enabled.
  67. MOUSE Appropriate mouse support is enabled.
  68. MSI Message Signaled Interrupts (PCI).
  69. MTD MTD (Memory Technology Device) support is enabled.
  70. NET Appropriate network support is enabled.
  71. NUMA NUMA support is enabled.
  72. NFS Appropriate NFS support is enabled.
  73. OSS OSS sound support is enabled.
  74. PV_OPS A paravirtualized kernel is enabled.
  75. PARIDE The ParIDE (parallel port IDE) subsystem is enabled.
  76. PARISC The PA-RISC architecture is enabled.
  77. PCI PCI bus support is enabled.
  78. PCIE PCI Express support is enabled.
  79. PCMCIA The PCMCIA subsystem is enabled.
  80. PNP Plug & Play support is enabled.
  81. PPC PowerPC architecture is enabled.
  82. PPT Parallel port support is enabled.
  83. PS2 Appropriate PS/2 support is enabled.
  84. RAM RAM disk support is enabled.
  85. S390 S390 architecture is enabled.
  86. SCSI Appropriate SCSI support is enabled.
  87. A lot of drivers have their options described inside
  88. the Documentation/scsi/ sub-directory.
  89. SECURITY Different security models are enabled.
  90. SELINUX SELinux support is enabled.
  91. APPARMOR AppArmor support is enabled.
  92. SERIAL Serial support is enabled.
  93. SH SuperH architecture is enabled.
  94. SMP The kernel is an SMP kernel.
  95. SPARC Sparc architecture is enabled.
  96. SWSUSP Software suspend (hibernation) is enabled.
  97. SUSPEND System suspend states are enabled.
  98. TPM TPM drivers are enabled.
  99. TS Appropriate touchscreen support is enabled.
  100. UMS USB Mass Storage support is enabled.
  101. USB USB support is enabled.
  102. USBHID USB Human Interface Device support is enabled.
  103. V4L Video For Linux support is enabled.
  104. VMMIO Driver for memory mapped virtio devices is enabled.
  105. VGA The VGA console has been enabled.
  106. VT Virtual terminal support is enabled.
  107. WDT Watchdog support is enabled.
  108. XT IBM PC/XT MFM hard disk support is enabled.
  109. X86-32 X86-32, aka i386 architecture is enabled.
  110. X86-64 X86-64 architecture is enabled.
  111. More X86-64 boot options can be found in
  112. Documentation/x86/x86_64/boot-options.txt .
  113. X86 Either 32-bit or 64-bit x86 (same as X86-32+X86-64)
  114. XEN Xen support is enabled
  115. In addition, the following text indicates that the option:
  116. BUGS= Relates to possible processor bugs on the said processor.
  117. KNL Is a kernel start-up parameter.
  118. BOOT Is a boot loader parameter.
  119. Parameters denoted with BOOT are actually interpreted by the boot
  120. loader, and have no meaning to the kernel directly.
  121. Do not modify the syntax of boot loader parameters without extreme
  122. need or coordination with <Documentation/x86/boot.txt>.
  123. There are also arch-specific kernel-parameters not documented here.
  124. See for example <Documentation/x86/x86_64/boot-options.txt>.
  125. Note that ALL kernel parameters listed below are CASE SENSITIVE, and that
  126. a trailing = on the name of any parameter states that that parameter will
  127. be entered as an environment variable, whereas its absence indicates that
  128. it will appear as a kernel argument readable via /proc/cmdline by programs
  129. running once the system is up.
  130. The number of kernel parameters is not limited, but the length of the
  131. complete command line (parameters including spaces etc.) is limited to
  132. a fixed number of characters. This limit depends on the architecture
  133. and is between 256 and 4096 characters. It is defined in the file
  134. ./include/asm/setup.h as COMMAND_LINE_SIZE.
  135. Finally, the [KMG] suffix is commonly described after a number of kernel
  136. parameter values. These 'K', 'M', and 'G' letters represent the _binary_
  137. multipliers 'Kilo', 'Mega', and 'Giga', equalling 2^10, 2^20, and 2^30
  138. bytes respectively. Such letter suffixes can also be entirely omitted.
  139. acpi= [HW,ACPI,X86]
  140. Advanced Configuration and Power Interface
  141. Format: { force | off | strict | noirq | rsdt }
  142. force -- enable ACPI if default was off
  143. off -- disable ACPI if default was on
  144. noirq -- do not use ACPI for IRQ routing
  145. strict -- Be less tolerant of platforms that are not
  146. strictly ACPI specification compliant.
  147. rsdt -- prefer RSDT over (default) XSDT
  148. copy_dsdt -- copy DSDT to memory
  149. See also Documentation/power/runtime_pm.txt, pci=noacpi
  150. acpi_rsdp= [ACPI,EFI,KEXEC]
  151. Pass the RSDP address to the kernel, mostly used
  152. on machines running EFI runtime service to boot the
  153. second kernel for kdump.
  154. acpi_apic_instance= [ACPI, IOAPIC]
  155. Format: <int>
  156. 2: use 2nd APIC table, if available
  157. 1,0: use 1st APIC table
  158. default: 0
  159. acpi_backlight= [HW,ACPI]
  160. acpi_backlight=vendor
  161. acpi_backlight=video
  162. If set to vendor, prefer vendor specific driver
  163. (e.g. thinkpad_acpi, sony_acpi, etc.) instead
  164. of the ACPI video.ko driver.
  165. acpi.debug_layer= [HW,ACPI,ACPI_DEBUG]
  166. acpi.debug_level= [HW,ACPI,ACPI_DEBUG]
  167. Format: <int>
  168. CONFIG_ACPI_DEBUG must be enabled to produce any ACPI
  169. debug output. Bits in debug_layer correspond to a
  170. _COMPONENT in an ACPI source file, e.g.,
  171. #define _COMPONENT ACPI_PCI_COMPONENT
  172. Bits in debug_level correspond to a level in
  173. ACPI_DEBUG_PRINT statements, e.g.,
  174. ACPI_DEBUG_PRINT((ACPI_DB_INFO, ...
  175. The debug_level mask defaults to "info". See
  176. Documentation/acpi/debug.txt for more information about
  177. debug layers and levels.
  178. Enable processor driver info messages:
  179. acpi.debug_layer=0x20000000
  180. Enable PCI/PCI interrupt routing info messages:
  181. acpi.debug_layer=0x400000
  182. Enable AML "Debug" output, i.e., stores to the Debug
  183. object while interpreting AML:
  184. acpi.debug_layer=0xffffffff acpi.debug_level=0x2
  185. Enable all messages related to ACPI hardware:
  186. acpi.debug_layer=0x2 acpi.debug_level=0xffffffff
  187. Some values produce so much output that the system is
  188. unusable. The "log_buf_len" parameter may be useful
  189. if you need to capture more output.
  190. acpi_irq_balance [HW,ACPI]
  191. ACPI will balance active IRQs
  192. default in APIC mode
  193. acpi_irq_nobalance [HW,ACPI]
  194. ACPI will not move active IRQs (default)
  195. default in PIC mode
  196. acpi_irq_isa= [HW,ACPI] If irq_balance, mark listed IRQs used by ISA
  197. Format: <irq>,<irq>...
  198. acpi_irq_pci= [HW,ACPI] If irq_balance, clear listed IRQs for
  199. use by PCI
  200. Format: <irq>,<irq>...
  201. acpi_no_auto_ssdt [HW,ACPI] Disable automatic loading of SSDT
  202. acpi_os_name= [HW,ACPI] Tell ACPI BIOS the name of the OS
  203. Format: To spoof as Windows 98: ="Microsoft Windows"
  204. acpi_osi= [HW,ACPI] Modify list of supported OS interface strings
  205. acpi_osi="string1" # add string1
  206. acpi_osi="!string2" # remove string2
  207. acpi_osi=!* # remove all strings
  208. acpi_osi=! # disable all built-in OS vendor
  209. strings
  210. acpi_osi= # disable all strings
  211. 'acpi_osi=!' can be used in combination with single or
  212. multiple 'acpi_osi="string1"' to support specific OS
  213. vendor string(s). Note that such command can only
  214. affect the default state of the OS vendor strings, thus
  215. it cannot affect the default state of the feature group
  216. strings and the current state of the OS vendor strings,
  217. specifying it multiple times through kernel command line
  218. is meaningless. This command is useful when one do not
  219. care about the state of the feature group strings which
  220. should be controlled by the OSPM.
  221. Examples:
  222. 1. 'acpi_osi=! acpi_osi="Windows 2000"' is equivalent
  223. to 'acpi_osi="Windows 2000" acpi_osi=!', they all
  224. can make '_OSI("Windows 2000")' TRUE.
  225. 'acpi_osi=' cannot be used in combination with other
  226. 'acpi_osi=' command lines, the _OSI method will not
  227. exist in the ACPI namespace. NOTE that such command can
  228. only affect the _OSI support state, thus specifying it
  229. multiple times through kernel command line is also
  230. meaningless.
  231. Examples:
  232. 1. 'acpi_osi=' can make 'CondRefOf(_OSI, Local1)'
  233. FALSE.
  234. 'acpi_osi=!*' can be used in combination with single or
  235. multiple 'acpi_osi="string1"' to support specific
  236. string(s). Note that such command can affect the
  237. current state of both the OS vendor strings and the
  238. feature group strings, thus specifying it multiple times
  239. through kernel command line is meaningful. But it may
  240. still not able to affect the final state of a string if
  241. there are quirks related to this string. This command
  242. is useful when one want to control the state of the
  243. feature group strings to debug BIOS issues related to
  244. the OSPM features.
  245. Examples:
  246. 1. 'acpi_osi="Module Device" acpi_osi=!*' can make
  247. '_OSI("Module Device")' FALSE.
  248. 2. 'acpi_osi=!* acpi_osi="Module Device"' can make
  249. '_OSI("Module Device")' TRUE.
  250. 3. 'acpi_osi=! acpi_osi=!* acpi_osi="Windows 2000"' is
  251. equivalent to
  252. 'acpi_osi=!* acpi_osi=! acpi_osi="Windows 2000"'
  253. and
  254. 'acpi_osi=!* acpi_osi="Windows 2000" acpi_osi=!',
  255. they all will make '_OSI("Windows 2000")' TRUE.
  256. acpi_pm_good [X86]
  257. Override the pmtimer bug detection: force the kernel
  258. to assume that this machine's pmtimer latches its value
  259. and always returns good values.
  260. acpi_sci= [HW,ACPI] ACPI System Control Interrupt trigger mode
  261. Format: { level | edge | high | low }
  262. acpi_serialize [HW,ACPI] force serialization of AML methods
  263. acpi_skip_timer_override [HW,ACPI]
  264. Recognize and ignore IRQ0/pin2 Interrupt Override.
  265. For broken nForce2 BIOS resulting in XT-PIC timer.
  266. acpi_sleep= [HW,ACPI] Sleep options
  267. Format: { s3_bios, s3_mode, s3_beep, s4_nohwsig,
  268. old_ordering, nonvs, sci_force_enable }
  269. See Documentation/power/video.txt for information on
  270. s3_bios and s3_mode.
  271. s3_beep is for debugging; it makes the PC's speaker beep
  272. as soon as the kernel's real-mode entry point is called.
  273. s4_nohwsig prevents ACPI hardware signature from being
  274. used during resume from hibernation.
  275. old_ordering causes the ACPI 1.0 ordering of the _PTS
  276. control method, with respect to putting devices into
  277. low power states, to be enforced (the ACPI 2.0 ordering
  278. of _PTS is used by default).
  279. nonvs prevents the kernel from saving/restoring the
  280. ACPI NVS memory during suspend/hibernation and resume.
  281. sci_force_enable causes the kernel to set SCI_EN directly
  282. on resume from S1/S3 (which is against the ACPI spec,
  283. but some broken systems don't work without it).
  284. acpi_use_timer_override [HW,ACPI]
  285. Use timer override. For some broken Nvidia NF5 boards
  286. that require a timer override, but don't have HPET
  287. acpi_enforce_resources= [ACPI]
  288. { strict | lax | no }
  289. Check for resource conflicts between native drivers
  290. and ACPI OperationRegions (SystemIO and SystemMemory
  291. only). IO ports and memory declared in ACPI might be
  292. used by the ACPI subsystem in arbitrary AML code and
  293. can interfere with legacy drivers.
  294. strict (default): access to resources claimed by ACPI
  295. is denied; legacy drivers trying to access reserved
  296. resources will fail to bind to device using them.
  297. lax: access to resources claimed by ACPI is allowed;
  298. legacy drivers trying to access reserved resources
  299. will bind successfully but a warning message is logged.
  300. no: ACPI OperationRegions are not marked as reserved,
  301. no further checks are performed.
  302. add_efi_memmap [EFI; X86] Include EFI memory map in
  303. kernel's map of available physical RAM.
  304. agp= [AGP]
  305. { off | try_unsupported }
  306. off: disable AGP support
  307. try_unsupported: try to drive unsupported chipsets
  308. (may crash computer or cause data corruption)
  309. ALSA [HW,ALSA]
  310. See Documentation/sound/alsa/alsa-parameters.txt
  311. alignment= [KNL,ARM]
  312. Allow the default userspace alignment fault handler
  313. behaviour to be specified. Bit 0 enables warnings,
  314. bit 1 enables fixups, and bit 2 sends a segfault.
  315. align_va_addr= [X86-64]
  316. Align virtual addresses by clearing slice [14:12] when
  317. allocating a VMA at process creation time. This option
  318. gives you up to 3% performance improvement on AMD F15h
  319. machines (where it is enabled by default) for a
  320. CPU-intensive style benchmark, and it can vary highly in
  321. a microbenchmark depending on workload and compiler.
  322. 32: only for 32-bit processes
  323. 64: only for 64-bit processes
  324. on: enable for both 32- and 64-bit processes
  325. off: disable for both 32- and 64-bit processes
  326. alloc_snapshot [FTRACE]
  327. Allocate the ftrace snapshot buffer on boot up when the
  328. main buffer is allocated. This is handy if debugging
  329. and you need to use tracing_snapshot() on boot up, and
  330. do not want to use tracing_snapshot_alloc() as it needs
  331. to be done where GFP_KERNEL allocations are allowed.
  332. amd_iommu= [HW,X86-64]
  333. Pass parameters to the AMD IOMMU driver in the system.
  334. Possible values are:
  335. fullflush - enable flushing of IO/TLB entries when
  336. they are unmapped. Otherwise they are
  337. flushed before they will be reused, which
  338. is a lot of faster
  339. off - do not initialize any AMD IOMMU found in
  340. the system
  341. force_isolation - Force device isolation for all
  342. devices. The IOMMU driver is not
  343. allowed anymore to lift isolation
  344. requirements as needed. This option
  345. does not override iommu=pt
  346. amd_iommu_dump= [HW,X86-64]
  347. Enable AMD IOMMU driver option to dump the ACPI table
  348. for AMD IOMMU. With this option enabled, AMD IOMMU
  349. driver will print ACPI tables for AMD IOMMU during
  350. IOMMU initialization.
  351. amijoy.map= [HW,JOY] Amiga joystick support
  352. Map of devices attached to JOY0DAT and JOY1DAT
  353. Format: <a>,<b>
  354. See also Documentation/input/joystick.txt
  355. analog.map= [HW,JOY] Analog joystick and gamepad support
  356. Specifies type or capabilities of an analog joystick
  357. connected to one of 16 gameports
  358. Format: <type1>,<type2>,..<type16>
  359. apc= [HW,SPARC]
  360. Power management functions (SPARCstation-4/5 + deriv.)
  361. Format: noidle
  362. Disable APC CPU standby support. SPARCstation-Fox does
  363. not play well with APC CPU idle - disable it if you have
  364. APC and your system crashes randomly.
  365. apic= [APIC,X86-32] Advanced Programmable Interrupt Controller
  366. Change the output verbosity whilst booting
  367. Format: { quiet (default) | verbose | debug }
  368. Change the amount of debugging information output
  369. when initialising the APIC and IO-APIC components.
  370. autoconf= [IPV6]
  371. See Documentation/networking/ipv6.txt.
  372. show_lapic= [APIC,X86] Advanced Programmable Interrupt Controller
  373. Limit apic dumping. The parameter defines the maximal
  374. number of local apics being dumped. Also it is possible
  375. to set it to "all" by meaning -- no limit here.
  376. Format: { 1 (default) | 2 | ... | all }.
  377. The parameter valid if only apic=debug or
  378. apic=verbose is specified.
  379. Example: apic=debug show_lapic=all
  380. apm= [APM] Advanced Power Management
  381. See header of arch/x86/kernel/apm_32.c.
  382. arcrimi= [HW,NET] ARCnet - "RIM I" (entirely mem-mapped) cards
  383. Format: <io>,<irq>,<nodeID>
  384. ataflop= [HW,M68k]
  385. atarimouse= [HW,MOUSE] Atari Mouse
  386. atkbd.extra= [HW] Enable extra LEDs and keys on IBM RapidAccess,
  387. EzKey and similar keyboards
  388. atkbd.reset= [HW] Reset keyboard during initialization
  389. atkbd.set= [HW] Select keyboard code set
  390. Format: <int> (2 = AT (default), 3 = PS/2)
  391. atkbd.scroll= [HW] Enable scroll wheel on MS Office and similar
  392. keyboards
  393. atkbd.softraw= [HW] Choose between synthetic and real raw mode
  394. Format: <bool> (0 = real, 1 = synthetic (default))
  395. atkbd.softrepeat= [HW]
  396. Use software keyboard repeat
  397. baycom_epp= [HW,AX25]
  398. Format: <io>,<mode>
  399. baycom_par= [HW,AX25] BayCom Parallel Port AX.25 Modem
  400. Format: <io>,<mode>
  401. See header of drivers/net/hamradio/baycom_par.c.
  402. baycom_ser_fdx= [HW,AX25]
  403. BayCom Serial Port AX.25 Modem (Full Duplex Mode)
  404. Format: <io>,<irq>,<mode>[,<baud>]
  405. See header of drivers/net/hamradio/baycom_ser_fdx.c.
  406. baycom_ser_hdx= [HW,AX25]
  407. BayCom Serial Port AX.25 Modem (Half Duplex Mode)
  408. Format: <io>,<irq>,<mode>
  409. See header of drivers/net/hamradio/baycom_ser_hdx.c.
  410. blkdevparts= Manual partition parsing of block device(s) for
  411. embedded devices based on command line input.
  412. See Documentation/block/cmdline-partition.txt
  413. boot_delay= Milliseconds to delay each printk during boot.
  414. Values larger than 10 seconds (10000) are changed to
  415. no delay (0).
  416. Format: integer
  417. bootmem_debug [KNL] Enable bootmem allocator debug messages.
  418. bttv.card= [HW,V4L] bttv (bt848 + bt878 based grabber cards)
  419. bttv.radio= Most important insmod options are available as
  420. kernel args too.
  421. bttv.pll= See Documentation/video4linux/bttv/Insmod-options
  422. bttv.tuner=
  423. bulk_remove=off [PPC] This parameter disables the use of the pSeries
  424. firmware feature for flushing multiple hpte entries
  425. at a time.
  426. c101= [NET] Moxa C101 synchronous serial card
  427. cachesize= [BUGS=X86-32] Override level 2 CPU cache size detection.
  428. Sometimes CPU hardware bugs make them report the cache
  429. size incorrectly. The kernel will attempt work arounds
  430. to fix known problems, but for some CPUs it is not
  431. possible to determine what the correct size should be.
  432. This option provides an override for these situations.
  433. ccw_timeout_log [S390]
  434. See Documentation/s390/CommonIO for details.
  435. cgroup_disable= [KNL] Disable a particular controller
  436. Format: {name of the controller(s) to disable}
  437. {Currently supported controllers - "memory"}
  438. checkreqprot [SELINUX] Set initial checkreqprot flag value.
  439. Format: { "0" | "1" }
  440. See security/selinux/Kconfig help text.
  441. 0 -- check protection applied by kernel (includes
  442. any implied execute protection).
  443. 1 -- check protection requested by application.
  444. Default value is set via a kernel config option.
  445. Value can be changed at runtime via
  446. /selinux/checkreqprot.
  447. cio_ignore= [S390]
  448. See Documentation/s390/CommonIO for details.
  449. clk_ignore_unused
  450. [CLK]
  451. Keep all clocks already enabled by bootloader on,
  452. even if no driver has claimed them. This is useful
  453. for debug and development, but should not be
  454. needed on a platform with proper driver support.
  455. For more information, see Documentation/clk.txt.
  456. clock= [BUGS=X86-32, HW] gettimeofday clocksource override.
  457. [Deprecated]
  458. Forces specified clocksource (if available) to be used
  459. when calculating gettimeofday(). If specified
  460. clocksource is not available, it defaults to PIT.
  461. Format: { pit | tsc | cyclone | pmtmr }
  462. clocksource= Override the default clocksource
  463. Format: <string>
  464. Override the default clocksource and use the clocksource
  465. with the name specified.
  466. Some clocksource names to choose from, depending on
  467. the platform:
  468. [all] jiffies (this is the base, fallback clocksource)
  469. [ACPI] acpi_pm
  470. [ARM] imx_timer1,OSTS,netx_timer,mpu_timer2,
  471. pxa_timer,timer3,32k_counter,timer0_1
  472. [AVR32] avr32
  473. [X86-32] pit,hpet,tsc;
  474. scx200_hrt on Geode; cyclone on IBM x440
  475. [MIPS] MIPS
  476. [PARISC] cr16
  477. [S390] tod
  478. [SH] SuperH
  479. [SPARC64] tick
  480. [X86-64] hpet,tsc
  481. clearcpuid=BITNUM [X86]
  482. Disable CPUID feature X for the kernel. See
  483. arch/x86/include/asm/cpufeature.h for the valid bit
  484. numbers. Note the Linux specific bits are not necessarily
  485. stable over kernel options, but the vendor specific
  486. ones should be.
  487. Also note that user programs calling CPUID directly
  488. or using the feature without checking anything
  489. will still see it. This just prevents it from
  490. being used by the kernel or shown in /proc/cpuinfo.
  491. Also note the kernel might malfunction if you disable
  492. some critical bits.
  493. cma=nn[MG] [ARM,KNL]
  494. Sets the size of kernel global memory area for contiguous
  495. memory allocations. For more information, see
  496. include/linux/dma-contiguous.h
  497. cmo_free_hint= [PPC] Format: { yes | no }
  498. Specify whether pages are marked as being inactive
  499. when they are freed. This is used in CMO environments
  500. to determine OS memory pressure for page stealing by
  501. a hypervisor.
  502. Default: yes
  503. coherent_pool=nn[KMG] [ARM,KNL]
  504. Sets the size of memory pool for coherent, atomic dma
  505. allocations, by default set to 256K.
  506. code_bytes [X86] How many bytes of object code to print
  507. in an oops report.
  508. Range: 0 - 8192
  509. Default: 64
  510. com20020= [HW,NET] ARCnet - COM20020 chipset
  511. Format:
  512. <io>[,<irq>[,<nodeID>[,<backplane>[,<ckp>[,<timeout>]]]]]
  513. com90io= [HW,NET] ARCnet - COM90xx chipset (IO-mapped buffers)
  514. Format: <io>[,<irq>]
  515. com90xx= [HW,NET]
  516. ARCnet - COM90xx chipset (memory-mapped buffers)
  517. Format: <io>[,<irq>[,<memstart>]]
  518. condev= [HW,S390] console device
  519. conmode=
  520. console= [KNL] Output console device and options.
  521. tty<n> Use the virtual console device <n>.
  522. ttyS<n>[,options]
  523. ttyUSB0[,options]
  524. Use the specified serial port. The options are of
  525. the form "bbbbpnf", where "bbbb" is the baud rate,
  526. "p" is parity ("n", "o", or "e"), "n" is number of
  527. bits, and "f" is flow control ("r" for RTS or
  528. omit it). Default is "9600n8".
  529. See Documentation/serial-console.txt for more
  530. information. See
  531. Documentation/networking/netconsole.txt for an
  532. alternative.
  533. uart[8250],io,<addr>[,options]
  534. uart[8250],mmio,<addr>[,options]
  535. Start an early, polled-mode console on the 8250/16550
  536. UART at the specified I/O port or MMIO address,
  537. switching to the matching ttyS device later. The
  538. options are the same as for ttyS, above.
  539. hvc<n> Use the hypervisor console device <n>. This is for
  540. both Xen and PowerPC hypervisors.
  541. If the device connected to the port is not a TTY but a braille
  542. device, prepend "brl," before the device type, for instance
  543. console=brl,ttyS0
  544. For now, only VisioBraille is supported.
  545. consoleblank= [KNL] The console blank (screen saver) timeout in
  546. seconds. Defaults to 10*60 = 10mins. A value of 0
  547. disables the blank timer.
  548. coredump_filter=
  549. [KNL] Change the default value for
  550. /proc/<pid>/coredump_filter.
  551. See also Documentation/filesystems/proc.txt.
  552. cpuidle.off=1 [CPU_IDLE]
  553. disable the cpuidle sub-system
  554. cpcihp_generic= [HW,PCI] Generic port I/O CompactPCI driver
  555. Format:
  556. <first_slot>,<last_slot>,<port>,<enum_bit>[,<debug>]
  557. crashkernel=size[KMG][@offset[KMG]]
  558. [KNL] Using kexec, Linux can switch to a 'crash kernel'
  559. upon panic. This parameter reserves the physical
  560. memory region [offset, offset + size] for that kernel
  561. image. If '@offset' is omitted, then a suitable offset
  562. is selected automatically. Check
  563. Documentation/kdump/kdump.txt for further details.
  564. crashkernel=range1:size1[,range2:size2,...][@offset]
  565. [KNL] Same as above, but depends on the memory
  566. in the running system. The syntax of range is
  567. start-[end] where start and end are both
  568. a memory unit (amount[KMG]). See also
  569. Documentation/kdump/kdump.txt for an example.
  570. crashkernel=size[KMG],high
  571. [KNL, x86_64] range could be above 4G. Allow kernel
  572. to allocate physical memory region from top, so could
  573. be above 4G if system have more than 4G ram installed.
  574. Otherwise memory region will be allocated below 4G, if
  575. available.
  576. It will be ignored if crashkernel=X is specified.
  577. crashkernel=size[KMG],low
  578. [KNL, x86_64] range under 4G. When crashkernel=X,high
  579. is passed, kernel could allocate physical memory region
  580. above 4G, that cause second kernel crash on system
  581. that require some amount of low memory, e.g. swiotlb
  582. requires at least 64M+32K low memory. Kernel would
  583. try to allocate 72M below 4G automatically.
  584. This one let user to specify own low range under 4G
  585. for second kernel instead.
  586. 0: to disable low allocation.
  587. It will be ignored when crashkernel=X,high is not used
  588. or memory reserved is below 4G.
  589. cs89x0_dma= [HW,NET]
  590. Format: <dma>
  591. cs89x0_media= [HW,NET]
  592. Format: { rj45 | aui | bnc }
  593. dasd= [HW,NET]
  594. See header of drivers/s390/block/dasd_devmap.c.
  595. db9.dev[2|3]= [HW,JOY] Multisystem joystick support via parallel port
  596. (one device per port)
  597. Format: <port#>,<type>
  598. See also Documentation/input/joystick-parport.txt
  599. ddebug_query= [KNL,DYNAMIC_DEBUG] Enable debug messages at early boot
  600. time. See Documentation/dynamic-debug-howto.txt for
  601. details. Deprecated, see dyndbg.
  602. debug [KNL] Enable kernel debugging (events log level).
  603. debug_locks_verbose=
  604. [KNL] verbose self-tests
  605. Format=<0|1>
  606. Print debugging info while doing the locking API
  607. self-tests.
  608. We default to 0 (no extra messages), setting it to
  609. 1 will print _a lot_ more information - normally
  610. only useful to kernel developers.
  611. debug_objects [KNL] Enable object debugging
  612. no_debug_objects
  613. [KNL] Disable object debugging
  614. debug_guardpage_minorder=
  615. [KNL] When CONFIG_DEBUG_PAGEALLOC is set, this
  616. parameter allows control of the order of pages that will
  617. be intentionally kept free (and hence protected) by the
  618. buddy allocator. Bigger value increase the probability
  619. of catching random memory corruption, but reduce the
  620. amount of memory for normal system use. The maximum
  621. possible value is MAX_ORDER/2. Setting this parameter
  622. to 1 or 2 should be enough to identify most random
  623. memory corruption problems caused by bugs in kernel or
  624. driver code when a CPU writes to (or reads from) a
  625. random memory location. Note that there exists a class
  626. of memory corruptions problems caused by buggy H/W or
  627. F/W or by drivers badly programing DMA (basically when
  628. memory is written at bus level and the CPU MMU is
  629. bypassed) which are not detectable by
  630. CONFIG_DEBUG_PAGEALLOC, hence this option will not help
  631. tracking down these problems.
  632. debugpat [X86] Enable PAT debugging
  633. decnet.addr= [HW,NET]
  634. Format: <area>[,<node>]
  635. See also Documentation/networking/decnet.txt.
  636. default_hugepagesz=
  637. [same as hugepagesz=] The size of the default
  638. HugeTLB page size. This is the size represented by
  639. the legacy /proc/ hugepages APIs, used for SHM, and
  640. default size when mounting hugetlbfs filesystems.
  641. Defaults to the default architecture's huge page size
  642. if not specified.
  643. dhash_entries= [KNL]
  644. Set number of hash buckets for dentry cache.
  645. digi= [HW,SERIAL]
  646. IO parameters + enable/disable command.
  647. digiepca= [HW,SERIAL]
  648. See drivers/char/README.epca and
  649. Documentation/serial/digiepca.txt.
  650. disable= [IPV6]
  651. See Documentation/networking/ipv6.txt.
  652. disable_ddw [PPC/PSERIES]
  653. Disable Dynamic DMA Window support. Use this if
  654. to workaround buggy firmware.
  655. disable_ipv6= [IPV6]
  656. See Documentation/networking/ipv6.txt.
  657. disable_mtrr_cleanup [X86]
  658. The kernel tries to adjust MTRR layout from continuous
  659. to discrete, to make X server driver able to add WB
  660. entry later. This parameter disables that.
  661. disable_mtrr_trim [X86, Intel and AMD only]
  662. By default the kernel will trim any uncacheable
  663. memory out of your available memory pool based on
  664. MTRR settings. This parameter disables that behavior,
  665. possibly causing your machine to run very slowly.
  666. disable_timer_pin_1 [X86]
  667. Disable PIN 1 of APIC timer
  668. Can be useful to work around chipset bugs.
  669. dma_debug=off If the kernel is compiled with DMA_API_DEBUG support,
  670. this option disables the debugging code at boot.
  671. dma_debug_entries=<number>
  672. This option allows to tune the number of preallocated
  673. entries for DMA-API debugging code. One entry is
  674. required per DMA-API allocation. Use this if the
  675. DMA-API debugging code disables itself because the
  676. architectural default is too low.
  677. dma_debug_driver=<driver_name>
  678. With this option the DMA-API debugging driver
  679. filter feature can be enabled at boot time. Just
  680. pass the driver to filter for as the parameter.
  681. The filter can be disabled or changed to another
  682. driver later using sysfs.
  683. drm_kms_helper.edid_firmware=[<connector>:]<file>
  684. Broken monitors, graphic adapters and KVMs may
  685. send no or incorrect EDID data sets. This parameter
  686. allows to specify an EDID data set in the
  687. /lib/firmware directory that is used instead.
  688. Generic built-in EDID data sets are used, if one of
  689. edid/1024x768.bin, edid/1280x1024.bin,
  690. edid/1680x1050.bin, or edid/1920x1080.bin is given
  691. and no file with the same name exists. Details and
  692. instructions how to build your own EDID data are
  693. available in Documentation/EDID/HOWTO.txt. An EDID
  694. data set will only be used for a particular connector,
  695. if its name and a colon are prepended to the EDID
  696. name.
  697. dscc4.setup= [NET]
  698. dyndbg[="val"] [KNL,DYNAMIC_DEBUG]
  699. module.dyndbg[="val"]
  700. Enable debug messages at boot time. See
  701. Documentation/dynamic-debug-howto.txt for details.
  702. earlycon= [KNL] Output early console device and options.
  703. uart[8250],io,<addr>[,options]
  704. uart[8250],mmio,<addr>[,options]
  705. uart[8250],mmio32,<addr>[,options]
  706. Start an early, polled-mode console on the 8250/16550
  707. UART at the specified I/O port or MMIO address.
  708. MMIO inter-register address stride is either 8-bit
  709. (mmio) or 32-bit (mmio32).
  710. The options are the same as for ttyS, above.
  711. earlyprintk= [X86,SH,BLACKFIN,ARM]
  712. earlyprintk=vga
  713. earlyprintk=efi
  714. earlyprintk=xen
  715. earlyprintk=serial[,ttySn[,baudrate]]
  716. earlyprintk=serial[,0x...[,baudrate]]
  717. earlyprintk=ttySn[,baudrate]
  718. earlyprintk=dbgp[debugController#]
  719. earlyprintk is useful when the kernel crashes before
  720. the normal console is initialized. It is not enabled by
  721. default because it has some cosmetic problems.
  722. Append ",keep" to not disable it when the real console
  723. takes over.
  724. Only one of vga, efi, serial, or usb debug port can
  725. be used at a time.
  726. Currently only ttyS0 and ttyS1 may be specified by
  727. name. Other I/O ports may be explicitly specified
  728. on some architectures (x86 and arm at least) by
  729. replacing ttySn with an I/O port address, like this:
  730. earlyprintk=serial,0x1008,115200
  731. You can find the port for a given device in
  732. /proc/tty/driver/serial:
  733. 2: uart:ST16650V2 port:00001008 irq:18 ...
  734. Interaction with the standard serial driver is not
  735. very good.
  736. The VGA and EFI output is eventually overwritten by
  737. the real console.
  738. The xen output can only be used by Xen PV guests.
  739. ekgdboc= [X86,KGDB] Allow early kernel console debugging
  740. ekgdboc=kbd
  741. This is designed to be used in conjunction with
  742. the boot argument: earlyprintk=vga
  743. edd= [EDD]
  744. Format: {"off" | "on" | "skip[mbr]"}
  745. efi_no_storage_paranoia [EFI; X86]
  746. Using this parameter you can use more than 50% of
  747. your efi variable storage. Use this parameter only if
  748. you are really sure that your UEFI does sane gc and
  749. fulfills the spec otherwise your board may brick.
  750. eisa_irq_edge= [PARISC,HW]
  751. See header of drivers/parisc/eisa.c.
  752. elanfreq= [X86-32]
  753. See comment before function elanfreq_setup() in
  754. arch/x86/kernel/cpu/cpufreq/elanfreq.c.
  755. elevator= [IOSCHED]
  756. Format: {"cfq" | "deadline" | "noop"}
  757. See Documentation/block/cfq-iosched.txt and
  758. Documentation/block/deadline-iosched.txt for details.
  759. elfcorehdr=[size[KMG]@]offset[KMG] [IA64,PPC,SH,X86,S390]
  760. Specifies physical address of start of kernel core
  761. image elf header and optionally the size. Generally
  762. kexec loader will pass this option to capture kernel.
  763. See Documentation/kdump/kdump.txt for details.
  764. enable_mtrr_cleanup [X86]
  765. The kernel tries to adjust MTRR layout from continuous
  766. to discrete, to make X server driver able to add WB
  767. entry later. This parameter enables that.
  768. enable_timer_pin_1 [X86]
  769. Enable PIN 1 of APIC timer
  770. Can be useful to work around chipset bugs
  771. (in particular on some ATI chipsets).
  772. The kernel tries to set a reasonable default.
  773. enforcing [SELINUX] Set initial enforcing status.
  774. Format: {"0" | "1"}
  775. See security/selinux/Kconfig help text.
  776. 0 -- permissive (log only, no denials).
  777. 1 -- enforcing (deny and log).
  778. Default value is 0.
  779. Value can be changed at runtime via /selinux/enforce.
  780. erst_disable [ACPI]
  781. Disable Error Record Serialization Table (ERST)
  782. support.
  783. ether= [HW,NET] Ethernet cards parameters
  784. This option is obsoleted by the "netdev=" option, which
  785. has equivalent usage. See its documentation for details.
  786. evm= [EVM]
  787. Format: { "fix" }
  788. Permit 'security.evm' to be updated regardless of
  789. current integrity status.
  790. failslab=
  791. fail_page_alloc=
  792. fail_make_request=[KNL]
  793. General fault injection mechanism.
  794. Format: <interval>,<probability>,<space>,<times>
  795. See also Documentation/fault-injection/.
  796. floppy= [HW]
  797. See Documentation/blockdev/floppy.txt.
  798. force_pal_cache_flush
  799. [IA-64] Avoid check_sal_cache_flush which may hang on
  800. buggy SAL_CACHE_FLUSH implementations. Using this
  801. parameter will force ia64_sal_cache_flush to call
  802. ia64_pal_cache_flush instead of SAL_CACHE_FLUSH.
  803. ftrace=[tracer]
  804. [FTRACE] will set and start the specified tracer
  805. as early as possible in order to facilitate early
  806. boot debugging.
  807. ftrace_dump_on_oops[=orig_cpu]
  808. [FTRACE] will dump the trace buffers on oops.
  809. If no parameter is passed, ftrace will dump
  810. buffers of all CPUs, but if you pass orig_cpu, it will
  811. dump only the buffer of the CPU that triggered the
  812. oops.
  813. ftrace_filter=[function-list]
  814. [FTRACE] Limit the functions traced by the function
  815. tracer at boot up. function-list is a comma separated
  816. list of functions. This list can be changed at run
  817. time by the set_ftrace_filter file in the debugfs
  818. tracing directory.
  819. ftrace_notrace=[function-list]
  820. [FTRACE] Do not trace the functions specified in
  821. function-list. This list can be changed at run time
  822. by the set_ftrace_notrace file in the debugfs
  823. tracing directory.
  824. ftrace_graph_filter=[function-list]
  825. [FTRACE] Limit the top level callers functions traced
  826. by the function graph tracer at boot up.
  827. function-list is a comma separated list of functions
  828. that can be changed at run time by the
  829. set_graph_function file in the debugfs tracing directory.
  830. gamecon.map[2|3]=
  831. [HW,JOY] Multisystem joystick and NES/SNES/PSX pad
  832. support via parallel port (up to 5 devices per port)
  833. Format: <port#>,<pad1>,<pad2>,<pad3>,<pad4>,<pad5>
  834. See also Documentation/input/joystick-parport.txt
  835. gamma= [HW,DRM]
  836. gart_fix_e820= [X86_64] disable the fix e820 for K8 GART
  837. Format: off | on
  838. default: on
  839. gcov_persist= [GCOV] When non-zero (default), profiling data for
  840. kernel modules is saved and remains accessible via
  841. debugfs, even when the module is unloaded/reloaded.
  842. When zero, profiling data is discarded and associated
  843. debugfs files are removed at module unload time.
  844. gpt [EFI] Forces disk with valid GPT signature but
  845. invalid Protective MBR to be treated as GPT.
  846. grcan.enable0= [HW] Configuration of physical interface 0. Determines
  847. the "Enable 0" bit of the configuration register.
  848. Format: 0 | 1
  849. Default: 0
  850. grcan.enable1= [HW] Configuration of physical interface 1. Determines
  851. the "Enable 0" bit of the configuration register.
  852. Format: 0 | 1
  853. Default: 0
  854. grcan.select= [HW] Select which physical interface to use.
  855. Format: 0 | 1
  856. Default: 0
  857. grcan.txsize= [HW] Sets the size of the tx buffer.
  858. Format: <unsigned int> such that (txsize & ~0x1fffc0) == 0.
  859. Default: 1024
  860. grcan.rxsize= [HW] Sets the size of the rx buffer.
  861. Format: <unsigned int> such that (rxsize & ~0x1fffc0) == 0.
  862. Default: 1024
  863. hashdist= [KNL,NUMA] Large hashes allocated during boot
  864. are distributed across NUMA nodes. Defaults on
  865. for 64-bit NUMA, off otherwise.
  866. Format: 0 | 1 (for off | on)
  867. hcl= [IA-64] SGI's Hardware Graph compatibility layer
  868. hd= [EIDE] (E)IDE hard drive subsystem geometry
  869. Format: <cyl>,<head>,<sect>
  870. hest_disable [ACPI]
  871. Disable Hardware Error Source Table (HEST) support;
  872. corresponding firmware-first mode error processing
  873. logic will be disabled.
  874. highmem=nn[KMG] [KNL,BOOT] forces the highmem zone to have an exact
  875. size of <nn>. This works even on boxes that have no
  876. highmem otherwise. This also works to reduce highmem
  877. size on bigger boxes.
  878. highres= [KNL] Enable/disable high resolution timer mode.
  879. Valid parameters: "on", "off"
  880. Default: "on"
  881. hisax= [HW,ISDN]
  882. See Documentation/isdn/README.HiSax.
  883. hlt [BUGS=ARM,SH]
  884. hpet= [X86-32,HPET] option to control HPET usage
  885. Format: { enable (default) | disable | force |
  886. verbose }
  887. disable: disable HPET and use PIT instead
  888. force: allow force enabled of undocumented chips (ICH4,
  889. VIA, nVidia)
  890. verbose: show contents of HPET registers during setup
  891. hpet_mmap= [X86, HPET_MMAP] Allow userspace to mmap HPET
  892. registers. Default set by CONFIG_HPET_MMAP_DEFAULT.
  893. hugepages= [HW,X86-32,IA-64] HugeTLB pages to allocate at boot.
  894. hugepagesz= [HW,IA-64,PPC,X86-64] The size of the HugeTLB pages.
  895. On x86-64 and powerpc, this option can be specified
  896. multiple times interleaved with hugepages= to reserve
  897. huge pages of different sizes. Valid pages sizes on
  898. x86-64 are 2M (when the CPU supports "pse") and 1G
  899. (when the CPU supports the "pdpe1gb" cpuinfo flag)
  900. Note that 1GB pages can only be allocated at boot time
  901. using hugepages= and not freed afterwards.
  902. hvc_iucv= [S390] Number of z/VM IUCV hypervisor console (HVC)
  903. terminal devices. Valid values: 0..8
  904. hvc_iucv_allow= [S390] Comma-separated list of z/VM user IDs.
  905. If specified, z/VM IUCV HVC accepts connections
  906. from listed z/VM user IDs only.
  907. hwthread_map= [METAG] Comma-separated list of Linux cpu id to
  908. hardware thread id mappings.
  909. Format: <cpu>:<hwthread>
  910. keep_bootcon [KNL]
  911. Do not unregister boot console at start. This is only
  912. useful for debugging when something happens in the window
  913. between unregistering the boot console and initializing
  914. the real console.
  915. i2c_bus= [HW] Override the default board specific I2C bus speed
  916. or register an additional I2C bus that is not
  917. registered from board initialization code.
  918. Format:
  919. <bus_id>,<clkrate>
  920. i8042.debug [HW] Toggle i8042 debug mode
  921. i8042.direct [HW] Put keyboard port into non-translated mode
  922. i8042.dumbkbd [HW] Pretend that controller can only read data from
  923. keyboard and cannot control its state
  924. (Don't attempt to blink the leds)
  925. i8042.noaux [HW] Don't check for auxiliary (== mouse) port
  926. i8042.nokbd [HW] Don't check/create keyboard port
  927. i8042.noloop [HW] Disable the AUX Loopback command while probing
  928. for the AUX port
  929. i8042.nomux [HW] Don't check presence of an active multiplexing
  930. controller
  931. i8042.nopnp [HW] Don't use ACPIPnP / PnPBIOS to discover KBD/AUX
  932. controllers
  933. i8042.notimeout [HW] Ignore timeout condition signalled by controller
  934. i8042.reset [HW] Reset the controller during init and cleanup
  935. i8042.unlock [HW] Unlock (ignore) the keylock
  936. i810= [HW,DRM]
  937. i8k.ignore_dmi [HW] Continue probing hardware even if DMI data
  938. indicates that the driver is running on unsupported
  939. hardware.
  940. i8k.force [HW] Activate i8k driver even if SMM BIOS signature
  941. does not match list of supported models.
  942. i8k.power_status
  943. [HW] Report power status in /proc/i8k
  944. (disabled by default)
  945. i8k.restricted [HW] Allow controlling fans only if SYS_ADMIN
  946. capability is set.
  947. i915.invert_brightness=
  948. [DRM] Invert the sense of the variable that is used to
  949. set the brightness of the panel backlight. Normally a
  950. brightness value of 0 indicates backlight switched off,
  951. and the maximum of the brightness value sets the backlight
  952. to maximum brightness. If this parameter is set to 0
  953. (default) and the machine requires it, or this parameter
  954. is set to 1, a brightness value of 0 sets the backlight
  955. to maximum brightness, and the maximum of the brightness
  956. value switches the backlight off.
  957. -1 -- never invert brightness
  958. 0 -- machine default
  959. 1 -- force brightness inversion
  960. icn= [HW,ISDN]
  961. Format: <io>[,<membase>[,<icn_id>[,<icn_id2>]]]
  962. ide-core.nodma= [HW] (E)IDE subsystem
  963. Format: =0.0 to prevent dma on hda, =0.1 hdb =1.0 hdc
  964. .vlb_clock .pci_clock .noflush .nohpa .noprobe .nowerr
  965. .cdrom .chs .ignore_cable are additional options
  966. See Documentation/ide/ide.txt.
  967. ide-pci-generic.all-generic-ide [HW] (E)IDE subsystem
  968. Claim all unknown PCI IDE storage controllers.
  969. idle= [X86]
  970. Format: idle=poll, idle=halt, idle=nomwait
  971. Poll forces a polling idle loop that can slightly
  972. improve the performance of waking up a idle CPU, but
  973. will use a lot of power and make the system run hot.
  974. Not recommended.
  975. idle=halt: Halt is forced to be used for CPU idle.
  976. In such case C2/C3 won't be used again.
  977. idle=nomwait: Disable mwait for CPU C-states
  978. ignore_loglevel [KNL]
  979. Ignore loglevel setting - this will print /all/
  980. kernel messages to the console. Useful for debugging.
  981. We also add it as printk module parameter, so users
  982. could change it dynamically, usually by
  983. /sys/module/printk/parameters/ignore_loglevel.
  984. ihash_entries= [KNL]
  985. Set number of hash buckets for inode cache.
  986. ima_appraise= [IMA] appraise integrity measurements
  987. Format: { "off" | "enforce" | "fix" }
  988. default: "enforce"
  989. ima_appraise_tcb [IMA]
  990. The builtin appraise policy appraises all files
  991. owned by uid=0.
  992. ima_hash= [IMA]
  993. Format: { md5 | sha1 | rmd160 | sha256 | sha384
  994. | sha512 | ... }
  995. default: "sha1"
  996. The list of supported hash algorithms is defined
  997. in crypto/hash_info.h.
  998. ima_tcb [IMA]
  999. Load a policy which meets the needs of the Trusted
  1000. Computing Base. This means IMA will measure all
  1001. programs exec'd, files mmap'd for exec, and all files
  1002. opened for read by uid=0.
  1003. ima_template= [IMA]
  1004. Select one of defined IMA measurements template formats.
  1005. Formats: { "ima" | "ima-ng" }
  1006. Default: "ima-ng"
  1007. init= [KNL]
  1008. Format: <full_path>
  1009. Run specified binary instead of /sbin/init as init
  1010. process.
  1011. initcall_debug [KNL] Trace initcalls as they are executed. Useful
  1012. for working out where the kernel is dying during
  1013. startup.
  1014. initrd= [BOOT] Specify the location of the initial ramdisk
  1015. inport.irq= [HW] Inport (ATI XL and Microsoft) busmouse driver
  1016. Format: <irq>
  1017. int_pln_enable [x86] Enable power limit notification interrupt
  1018. integrity_audit=[IMA]
  1019. Format: { "0" | "1" }
  1020. 0 -- basic integrity auditing messages. (Default)
  1021. 1 -- additional integrity auditing messages.
  1022. intel_iommu= [DMAR] Intel IOMMU driver (DMAR) option
  1023. on
  1024. Enable intel iommu driver.
  1025. off
  1026. Disable intel iommu driver.
  1027. igfx_off [Default Off]
  1028. By default, gfx is mapped as normal device. If a gfx
  1029. device has a dedicated DMAR unit, the DMAR unit is
  1030. bypassed by not enabling DMAR with this option. In
  1031. this case, gfx device will use physical address for
  1032. DMA.
  1033. forcedac [x86_64]
  1034. With this option iommu will not optimize to look
  1035. for io virtual address below 32-bit forcing dual
  1036. address cycle on pci bus for cards supporting greater
  1037. than 32-bit addressing. The default is to look
  1038. for translation below 32-bit and if not available
  1039. then look in the higher range.
  1040. strict [Default Off]
  1041. With this option on every unmap_single operation will
  1042. result in a hardware IOTLB flush operation as opposed
  1043. to batching them for performance.
  1044. sp_off [Default Off]
  1045. By default, super page will be supported if Intel IOMMU
  1046. has the capability. With this option, super page will
  1047. not be supported.
  1048. intel_idle.max_cstate= [KNL,HW,ACPI,X86]
  1049. 0 disables intel_idle and fall back on acpi_idle.
  1050. 1 to 6 specify maximum depth of C-state.
  1051. intel_pstate= [X86]
  1052. disable
  1053. Do not enable intel_pstate as the default
  1054. scaling driver for the supported processors
  1055. intremap= [X86-64, Intel-IOMMU]
  1056. on enable Interrupt Remapping (default)
  1057. off disable Interrupt Remapping
  1058. nosid disable Source ID checking
  1059. no_x2apic_optout
  1060. BIOS x2APIC opt-out request will be ignored
  1061. iomem= Disable strict checking of access to MMIO memory
  1062. strict regions from userspace.
  1063. relaxed
  1064. iommu= [x86]
  1065. off
  1066. force
  1067. noforce
  1068. biomerge
  1069. panic
  1070. nopanic
  1071. merge
  1072. nomerge
  1073. forcesac
  1074. soft
  1075. pt [x86, IA-64]
  1076. io7= [HW] IO7 for Marvel based alpha systems
  1077. See comment before marvel_specify_io7 in
  1078. arch/alpha/kernel/core_marvel.c.
  1079. io_delay= [X86] I/O delay method
  1080. 0x80
  1081. Standard port 0x80 based delay
  1082. 0xed
  1083. Alternate port 0xed based delay (needed on some systems)
  1084. udelay
  1085. Simple two microseconds delay
  1086. none
  1087. No delay
  1088. ip= [IP_PNP]
  1089. See Documentation/filesystems/nfs/nfsroot.txt.
  1090. ip2= [HW] Set IO/IRQ pairs for up to 4 IntelliPort boards
  1091. See comment before ip2_setup() in
  1092. drivers/char/ip2/ip2base.c.
  1093. irqfixup [HW]
  1094. When an interrupt is not handled search all handlers
  1095. for it. Intended to get systems with badly broken
  1096. firmware running.
  1097. irqpoll [HW]
  1098. When an interrupt is not handled search all handlers
  1099. for it. Also check all handlers each timer
  1100. interrupt. Intended to get systems with badly broken
  1101. firmware running.
  1102. isapnp= [ISAPNP]
  1103. Format: <RDP>,<reset>,<pci_scan>,<verbosity>
  1104. isolcpus= [KNL,SMP] Isolate CPUs from the general scheduler.
  1105. Format:
  1106. <cpu number>,...,<cpu number>
  1107. or
  1108. <cpu number>-<cpu number>
  1109. (must be a positive range in ascending order)
  1110. or a mixture
  1111. <cpu number>,...,<cpu number>-<cpu number>
  1112. This option can be used to specify one or more CPUs
  1113. to isolate from the general SMP balancing and scheduling
  1114. algorithms. You can move a process onto or off an
  1115. "isolated" CPU via the CPU affinity syscalls or cpuset.
  1116. <cpu number> begins at 0 and the maximum value is
  1117. "number of CPUs in system - 1".
  1118. This option is the preferred way to isolate CPUs. The
  1119. alternative -- manually setting the CPU mask of all
  1120. tasks in the system -- can cause problems and
  1121. suboptimal load balancer performance.
  1122. iucv= [HW,NET]
  1123. ivrs_ioapic [HW,X86_64]
  1124. Provide an override to the IOAPIC-ID<->DEVICE-ID
  1125. mapping provided in the IVRS ACPI table. For
  1126. example, to map IOAPIC-ID decimal 10 to
  1127. PCI device 00:14.0 write the parameter as:
  1128. ivrs_ioapic[10]=00:14.0
  1129. ivrs_hpet [HW,X86_64]
  1130. Provide an override to the HPET-ID<->DEVICE-ID
  1131. mapping provided in the IVRS ACPI table. For
  1132. example, to map HPET-ID decimal 0 to
  1133. PCI device 00:14.0 write the parameter as:
  1134. ivrs_hpet[0]=00:14.0
  1135. js= [HW,JOY] Analog joystick
  1136. See Documentation/input/joystick.txt.
  1137. keepinitrd [HW,ARM]
  1138. kernelcore=nn[KMG] [KNL,X86,IA-64,PPC] This parameter
  1139. specifies the amount of memory usable by the kernel
  1140. for non-movable allocations. The requested amount is
  1141. spread evenly throughout all nodes in the system. The
  1142. remaining memory in each node is used for Movable
  1143. pages. In the event, a node is too small to have both
  1144. kernelcore and Movable pages, kernelcore pages will
  1145. take priority and other nodes will have a larger number
  1146. of Movable pages. The Movable zone is used for the
  1147. allocation of pages that may be reclaimed or moved
  1148. by the page migration subsystem. This means that
  1149. HugeTLB pages may not be allocated from this zone.
  1150. Note that allocations like PTEs-from-HighMem still
  1151. use the HighMem zone if it exists, and the Normal
  1152. zone if it does not.
  1153. kgdbdbgp= [KGDB,HW] kgdb over EHCI usb debug port.
  1154. Format: <Controller#>[,poll interval]
  1155. The controller # is the number of the ehci usb debug
  1156. port as it is probed via PCI. The poll interval is
  1157. optional and is the number seconds in between
  1158. each poll cycle to the debug port in case you need
  1159. the functionality for interrupting the kernel with
  1160. gdb or control-c on the dbgp connection. When
  1161. not using this parameter you use sysrq-g to break into
  1162. the kernel debugger.
  1163. kgdboc= [KGDB,HW] kgdb over consoles.
  1164. Requires a tty driver that supports console polling,
  1165. or a supported polling keyboard driver (non-usb).
  1166. Serial only format: <serial_device>[,baud]
  1167. keyboard only format: kbd
  1168. keyboard and serial format: kbd,<serial_device>[,baud]
  1169. Optional Kernel mode setting:
  1170. kms, kbd format: kms,kbd
  1171. kms, kbd and serial format: kms,kbd,<ser_dev>[,baud]
  1172. kgdbwait [KGDB] Stop kernel execution and enter the
  1173. kernel debugger at the earliest opportunity.
  1174. kmac= [MIPS] korina ethernet MAC address.
  1175. Configure the RouterBoard 532 series on-chip
  1176. Ethernet adapter MAC address.
  1177. kmemleak= [KNL] Boot-time kmemleak enable/disable
  1178. Valid arguments: on, off
  1179. Default: on
  1180. kstack=N [X86] Print N words from the kernel stack
  1181. in oops dumps.
  1182. kvm.ignore_msrs=[KVM] Ignore guest accesses to unhandled MSRs.
  1183. Default is 0 (don't ignore, but inject #GP)
  1184. kvm.mmu_audit= [KVM] This is a R/W parameter which allows audit
  1185. KVM MMU at runtime.
  1186. Default is 0 (off)
  1187. kvm-amd.nested= [KVM,AMD] Allow nested virtualization in KVM/SVM.
  1188. Default is 1 (enabled)
  1189. kvm-amd.npt= [KVM,AMD] Disable nested paging (virtualized MMU)
  1190. for all guests.
  1191. Default is 1 (enabled) if in 64-bit or 32-bit PAE mode.
  1192. kvm-intel.ept= [KVM,Intel] Disable extended page tables
  1193. (virtualized MMU) support on capable Intel chips.
  1194. Default is 1 (enabled)
  1195. kvm-intel.emulate_invalid_guest_state=
  1196. [KVM,Intel] Enable emulation of invalid guest states
  1197. Default is 0 (disabled)
  1198. kvm-intel.flexpriority=
  1199. [KVM,Intel] Disable FlexPriority feature (TPR shadow).
  1200. Default is 1 (enabled)
  1201. kvm-intel.nested=
  1202. [KVM,Intel] Enable VMX nesting (nVMX).
  1203. Default is 0 (disabled)
  1204. kvm-intel.unrestricted_guest=
  1205. [KVM,Intel] Disable unrestricted guest feature
  1206. (virtualized real and unpaged mode) on capable
  1207. Intel chips. Default is 1 (enabled)
  1208. kvm-intel.vpid= [KVM,Intel] Disable Virtual Processor Identification
  1209. feature (tagged TLBs) on capable Intel chips.
  1210. Default is 1 (enabled)
  1211. l2cr= [PPC]
  1212. l3cr= [PPC]
  1213. lapic [X86-32,APIC] Enable the local APIC even if BIOS
  1214. disabled it.
  1215. lapic= [x86,APIC] "notscdeadline" Do not use TSC deadline
  1216. value for LAPIC timer one-shot implementation. Default
  1217. back to the programmable timer unit in the LAPIC.
  1218. lapic_timer_c2_ok [X86,APIC] trust the local apic timer
  1219. in C2 power state.
  1220. libata.dma= [LIBATA] DMA control
  1221. libata.dma=0 Disable all PATA and SATA DMA
  1222. libata.dma=1 PATA and SATA Disk DMA only
  1223. libata.dma=2 ATAPI (CDROM) DMA only
  1224. libata.dma=4 Compact Flash DMA only
  1225. Combinations also work, so libata.dma=3 enables DMA
  1226. for disks and CDROMs, but not CFs.
  1227. libata.ignore_hpa= [LIBATA] Ignore HPA limit
  1228. libata.ignore_hpa=0 keep BIOS limits (default)
  1229. libata.ignore_hpa=1 ignore limits, using full disk
  1230. libata.noacpi [LIBATA] Disables use of ACPI in libata suspend/resume
  1231. when set.
  1232. Format: <int>
  1233. libata.force= [LIBATA] Force configurations. The format is comma
  1234. separated list of "[ID:]VAL" where ID is
  1235. PORT[.DEVICE]. PORT and DEVICE are decimal numbers
  1236. matching port, link or device. Basically, it matches
  1237. the ATA ID string printed on console by libata. If
  1238. the whole ID part is omitted, the last PORT and DEVICE
  1239. values are used. If ID hasn't been specified yet, the
  1240. configuration applies to all ports, links and devices.
  1241. If only DEVICE is omitted, the parameter applies to
  1242. the port and all links and devices behind it. DEVICE
  1243. number of 0 either selects the first device or the
  1244. first fan-out link behind PMP device. It does not
  1245. select the host link. DEVICE number of 15 selects the
  1246. host link and device attached to it.
  1247. The VAL specifies the configuration to force. As long
  1248. as there's no ambiguity shortcut notation is allowed.
  1249. For example, both 1.5 and 1.5G would work for 1.5Gbps.
  1250. The following configurations can be forced.
  1251. * Cable type: 40c, 80c, short40c, unk, ign or sata.
  1252. Any ID with matching PORT is used.
  1253. * SATA link speed limit: 1.5Gbps or 3.0Gbps.
  1254. * Transfer mode: pio[0-7], mwdma[0-4] and udma[0-7].
  1255. udma[/][16,25,33,44,66,100,133] notation is also
  1256. allowed.
  1257. * [no]ncq: Turn on or off NCQ.
  1258. * nohrst, nosrst, norst: suppress hard, soft
  1259. and both resets.
  1260. * rstonce: only attempt one reset during
  1261. hot-unplug link recovery
  1262. * dump_id: dump IDENTIFY data.
  1263. * atapi_dmadir: Enable ATAPI DMADIR bridge support
  1264. If there are multiple matching configurations changing
  1265. the same attribute, the last one is used.
  1266. memblock=debug [KNL] Enable memblock debug messages.
  1267. load_ramdisk= [RAM] List of ramdisks to load from floppy
  1268. See Documentation/blockdev/ramdisk.txt.
  1269. lockd.nlm_grace_period=P [NFS] Assign grace period.
  1270. Format: <integer>
  1271. lockd.nlm_tcpport=N [NFS] Assign TCP port.
  1272. Format: <integer>
  1273. lockd.nlm_timeout=T [NFS] Assign timeout value.
  1274. Format: <integer>
  1275. lockd.nlm_udpport=M [NFS] Assign UDP port.
  1276. Format: <integer>
  1277. logibm.irq= [HW,MOUSE] Logitech Bus Mouse Driver
  1278. Format: <irq>
  1279. loglevel= All Kernel Messages with a loglevel smaller than the
  1280. console loglevel will be printed to the console. It can
  1281. also be changed with klogd or other programs. The
  1282. loglevels are defined as follows:
  1283. 0 (KERN_EMERG) system is unusable
  1284. 1 (KERN_ALERT) action must be taken immediately
  1285. 2 (KERN_CRIT) critical conditions
  1286. 3 (KERN_ERR) error conditions
  1287. 4 (KERN_WARNING) warning conditions
  1288. 5 (KERN_NOTICE) normal but significant condition
  1289. 6 (KERN_INFO) informational
  1290. 7 (KERN_DEBUG) debug-level messages
  1291. log_buf_len=n[KMG] Sets the size of the printk ring buffer,
  1292. in bytes. n must be a power of two. The default
  1293. size is set in the kernel config file.
  1294. logo.nologo [FB] Disables display of the built-in Linux logo.
  1295. This may be used to provide more screen space for
  1296. kernel log messages and is useful when debugging
  1297. kernel boot problems.
  1298. lp=0 [LP] Specify parallel ports to use, e.g,
  1299. lp=port[,port...] lp=none,parport0 (lp0 not configured, lp1 uses
  1300. lp=reset first parallel port). 'lp=0' disables the
  1301. lp=auto printer driver. 'lp=reset' (which can be
  1302. specified in addition to the ports) causes
  1303. attached printers to be reset. Using
  1304. lp=port1,port2,... specifies the parallel ports
  1305. to associate lp devices with, starting with
  1306. lp0. A port specification may be 'none' to skip
  1307. that lp device, or a parport name such as
  1308. 'parport0'. Specifying 'lp=auto' instead of a
  1309. port specification list means that device IDs
  1310. from each port should be examined, to see if
  1311. an IEEE 1284-compliant printer is attached; if
  1312. so, the driver will manage that printer.
  1313. See also header of drivers/char/lp.c.
  1314. lpj=n [KNL]
  1315. Sets loops_per_jiffy to given constant, thus avoiding
  1316. time-consuming boot-time autodetection (up to 250 ms per
  1317. CPU). 0 enables autodetection (default). To determine
  1318. the correct value for your kernel, boot with normal
  1319. autodetection and see what value is printed. Note that
  1320. on SMP systems the preset will be applied to all CPUs,
  1321. which is likely to cause problems if your CPUs need
  1322. significantly divergent settings. An incorrect value
  1323. will cause delays in the kernel to be wrong, leading to
  1324. unpredictable I/O errors and other breakage. Although
  1325. unlikely, in the extreme case this might damage your
  1326. hardware.
  1327. ltpc= [NET]
  1328. Format: <io>,<irq>,<dma>
  1329. machvec= [IA-64] Force the use of a particular machine-vector
  1330. (machvec) in a generic kernel.
  1331. Example: machvec=hpzx1_swiotlb
  1332. machtype= [Loongson] Share the same kernel image file between different
  1333. yeeloong laptop.
  1334. Example: machtype=lemote-yeeloong-2f-7inch
  1335. max_addr=nn[KMG] [KNL,BOOT,ia64] All physical memory greater
  1336. than or equal to this physical address is ignored.
  1337. maxcpus= [SMP] Maximum number of processors that an SMP kernel
  1338. should make use of. maxcpus=n : n >= 0 limits the
  1339. kernel to using 'n' processors. n=0 is a special case,
  1340. it is equivalent to "nosmp", which also disables
  1341. the IO APIC.
  1342. max_loop= [LOOP] The number of loop block devices that get
  1343. (loop.max_loop) unconditionally pre-created at init time. The default
  1344. number is configured by BLK_DEV_LOOP_MIN_COUNT. Instead
  1345. of statically allocating a predefined number, loop
  1346. devices can be requested on-demand with the
  1347. /dev/loop-control interface.
  1348. mce [X86-32] Machine Check Exception
  1349. mce=option [X86-64] See Documentation/x86/x86_64/boot-options.txt
  1350. md= [HW] RAID subsystems devices and level
  1351. See Documentation/md.txt.
  1352. mdacon= [MDA]
  1353. Format: <first>,<last>
  1354. Specifies range of consoles to be captured by the MDA.
  1355. mem=nn[KMG] [KNL,BOOT] Force usage of a specific amount of memory
  1356. Amount of memory to be used when the kernel is not able
  1357. to see the whole system memory or for test.
  1358. [X86] Work as limiting max address. Use together
  1359. with memmap= to avoid physical address space collisions.
  1360. Without memmap= PCI devices could be placed at addresses
  1361. belonging to unused RAM.
  1362. mem=nopentium [BUGS=X86-32] Disable usage of 4MB pages for kernel
  1363. memory.
  1364. memchunk=nn[KMG]
  1365. [KNL,SH] Allow user to override the default size for
  1366. per-device physically contiguous DMA buffers.
  1367. memmap=exactmap [KNL,X86] Enable setting of an exact
  1368. E820 memory map, as specified by the user.
  1369. Such memmap=exactmap lines can be constructed based on
  1370. BIOS output or other requirements. See the memmap=nn@ss
  1371. option description.
  1372. memmap=nn[KMG]@ss[KMG]
  1373. [KNL] Force usage of a specific region of memory
  1374. Region of memory to be used, from ss to ss+nn.
  1375. memmap=nn[KMG]#ss[KMG]
  1376. [KNL,ACPI] Mark specific memory as ACPI data.
  1377. Region of memory to be used, from ss to ss+nn.
  1378. memmap=nn[KMG]$ss[KMG]
  1379. [KNL,ACPI] Mark specific memory as reserved.
  1380. Region of memory to be used, from ss to ss+nn.
  1381. Example: Exclude memory from 0x18690000-0x1869ffff
  1382. memmap=64K$0x18690000
  1383. or
  1384. memmap=0x10000$0x18690000
  1385. memory_corruption_check=0/1 [X86]
  1386. Some BIOSes seem to corrupt the first 64k of
  1387. memory when doing things like suspend/resume.
  1388. Setting this option will scan the memory
  1389. looking for corruption. Enabling this will
  1390. both detect corruption and prevent the kernel
  1391. from using the memory being corrupted.
  1392. However, its intended as a diagnostic tool; if
  1393. repeatable BIOS-originated corruption always
  1394. affects the same memory, you can use memmap=
  1395. to prevent the kernel from using that memory.
  1396. memory_corruption_check_size=size [X86]
  1397. By default it checks for corruption in the low
  1398. 64k, making this memory unavailable for normal
  1399. use. Use this parameter to scan for
  1400. corruption in more or less memory.
  1401. memory_corruption_check_period=seconds [X86]
  1402. By default it checks for corruption every 60
  1403. seconds. Use this parameter to check at some
  1404. other rate. 0 disables periodic checking.
  1405. memtest= [KNL,X86] Enable memtest
  1406. Format: <integer>
  1407. default : 0 <disable>
  1408. Specifies the number of memtest passes to be
  1409. performed. Each pass selects another test
  1410. pattern from a given set of patterns. Memtest
  1411. fills the memory with this pattern, validates
  1412. memory contents and reserves bad memory
  1413. regions that are detected.
  1414. meye.*= [HW] Set MotionEye Camera parameters
  1415. See Documentation/video4linux/meye.txt.
  1416. mfgpt_irq= [IA-32] Specify the IRQ to use for the
  1417. Multi-Function General Purpose Timers on AMD Geode
  1418. platforms.
  1419. mfgptfix [X86-32] Fix MFGPT timers on AMD Geode platforms when
  1420. the BIOS has incorrectly applied a workaround. TinyBIOS
  1421. version 0.98 is known to be affected, 0.99 fixes the
  1422. problem by letting the user disable the workaround.
  1423. mga= [HW,DRM]
  1424. min_addr=nn[KMG] [KNL,BOOT,ia64] All physical memory below this
  1425. physical address is ignored.
  1426. mini2440= [ARM,HW,KNL]
  1427. Format:[0..2][b][c][t]
  1428. Default: "0tb"
  1429. MINI2440 configuration specification:
  1430. 0 - The attached screen is the 3.5" TFT
  1431. 1 - The attached screen is the 7" TFT
  1432. 2 - The VGA Shield is attached (1024x768)
  1433. Leaving out the screen size parameter will not load
  1434. the TFT driver, and the framebuffer will be left
  1435. unconfigured.
  1436. b - Enable backlight. The TFT backlight pin will be
  1437. linked to the kernel VESA blanking code and a GPIO
  1438. LED. This parameter is not necessary when using the
  1439. VGA shield.
  1440. c - Enable the s3c camera interface.
  1441. t - Reserved for enabling touchscreen support. The
  1442. touchscreen support is not enabled in the mainstream
  1443. kernel as of 2.6.30, a preliminary port can be found
  1444. in the "bleeding edge" mini2440 support kernel at
  1445. http://repo.or.cz/w/linux-2.6/mini2440.git
  1446. mminit_loglevel=
  1447. [KNL] When CONFIG_DEBUG_MEMORY_INIT is set, this
  1448. parameter allows control of the logging verbosity for
  1449. the additional memory initialisation checks. A value
  1450. of 0 disables mminit logging and a level of 4 will
  1451. log everything. Information is printed at KERN_DEBUG
  1452. so loglevel=8 may also need to be specified.
  1453. module.sig_enforce
  1454. [KNL] When CONFIG_MODULE_SIG is set, this means that
  1455. modules without (valid) signatures will fail to load.
  1456. Note that if CONFIG_MODULE_SIG_FORCE is set, that
  1457. is always true, so this option does nothing.
  1458. mousedev.tap_time=
  1459. [MOUSE] Maximum time between finger touching and
  1460. leaving touchpad surface for touch to be considered
  1461. a tap and be reported as a left button click (for
  1462. touchpads working in absolute mode only).
  1463. Format: <msecs>
  1464. mousedev.xres= [MOUSE] Horizontal screen resolution, used for devices
  1465. reporting absolute coordinates, such as tablets
  1466. mousedev.yres= [MOUSE] Vertical screen resolution, used for devices
  1467. reporting absolute coordinates, such as tablets
  1468. movablecore=nn[KMG] [KNL,X86,IA-64,PPC] This parameter
  1469. is similar to kernelcore except it specifies the
  1470. amount of memory used for migratable allocations.
  1471. If both kernelcore and movablecore is specified,
  1472. then kernelcore will be at *least* the specified
  1473. value but may be more. If movablecore on its own
  1474. is specified, the administrator must be careful
  1475. that the amount of memory usable for all allocations
  1476. is not too small.
  1477. movable_node [KNL,X86] Boot-time switch to enable the effects
  1478. of CONFIG_MOVABLE_NODE=y. See mm/Kconfig for details.
  1479. MTD_Partition= [MTD]
  1480. Format: <name>,<region-number>,<size>,<offset>
  1481. MTD_Region= [MTD] Format:
  1482. <name>,<region-number>[,<base>,<size>,<buswidth>,<altbuswidth>]
  1483. mtdparts= [MTD]
  1484. See drivers/mtd/cmdlinepart.c.
  1485. multitce=off [PPC] This parameter disables the use of the pSeries
  1486. firmware feature for updating multiple TCE entries
  1487. at a time.
  1488. onenand.bdry= [HW,MTD] Flex-OneNAND Boundary Configuration
  1489. Format: [die0_boundary][,die0_lock][,die1_boundary][,die1_lock]
  1490. boundary - index of last SLC block on Flex-OneNAND.
  1491. The remaining blocks are configured as MLC blocks.
  1492. lock - Configure if Flex-OneNAND boundary should be locked.
  1493. Once locked, the boundary cannot be changed.
  1494. 1 indicates lock status, 0 indicates unlock status.
  1495. mtdset= [ARM]
  1496. ARM/S3C2412 JIVE boot control
  1497. See arch/arm/mach-s3c2412/mach-jive.c
  1498. mtouchusb.raw_coordinates=
  1499. [HW] Make the MicroTouch USB driver use raw coordinates
  1500. ('y', default) or cooked coordinates ('n')
  1501. mtrr_chunk_size=nn[KMG] [X86]
  1502. used for mtrr cleanup. It is largest continuous chunk
  1503. that could hold holes aka. UC entries.
  1504. mtrr_gran_size=nn[KMG] [X86]
  1505. Used for mtrr cleanup. It is granularity of mtrr block.
  1506. Default is 1.
  1507. Large value could prevent small alignment from
  1508. using up MTRRs.
  1509. mtrr_spare_reg_nr=n [X86]
  1510. Format: <integer>
  1511. Range: 0,7 : spare reg number
  1512. Default : 1
  1513. Used for mtrr cleanup. It is spare mtrr entries number.
  1514. Set to 2 or more if your graphical card needs more.
  1515. n2= [NET] SDL Inc. RISCom/N2 synchronous serial card
  1516. netdev= [NET] Network devices parameters
  1517. Format: <irq>,<io>,<mem_start>,<mem_end>,<name>
  1518. Note that mem_start is often overloaded to mean
  1519. something different and driver-specific.
  1520. This usage is only documented in each driver source
  1521. file if at all.
  1522. nf_conntrack.acct=
  1523. [NETFILTER] Enable connection tracking flow accounting
  1524. 0 to disable accounting
  1525. 1 to enable accounting
  1526. Default value is 0.
  1527. nfsaddrs= [NFS] Deprecated. Use ip= instead.
  1528. See Documentation/filesystems/nfs/nfsroot.txt.
  1529. nfsroot= [NFS] nfs root filesystem for disk-less boxes.
  1530. See Documentation/filesystems/nfs/nfsroot.txt.
  1531. nfsrootdebug [NFS] enable nfsroot debugging messages.
  1532. See Documentation/filesystems/nfs/nfsroot.txt.
  1533. nfs.callback_tcpport=
  1534. [NFS] set the TCP port on which the NFSv4 callback
  1535. channel should listen.
  1536. nfs.cache_getent=
  1537. [NFS] sets the pathname to the program which is used
  1538. to update the NFS client cache entries.
  1539. nfs.cache_getent_timeout=
  1540. [NFS] sets the timeout after which an attempt to
  1541. update a cache entry is deemed to have failed.
  1542. nfs.idmap_cache_timeout=
  1543. [NFS] set the maximum lifetime for idmapper cache
  1544. entries.
  1545. nfs.enable_ino64=
  1546. [NFS] enable 64-bit inode numbers.
  1547. If zero, the NFS client will fake up a 32-bit inode
  1548. number for the readdir() and stat() syscalls instead
  1549. of returning the full 64-bit number.
  1550. The default is to return 64-bit inode numbers.
  1551. nfs.max_session_slots=
  1552. [NFSv4.1] Sets the maximum number of session slots
  1553. the client will attempt to negotiate with the server.
  1554. This limits the number of simultaneous RPC requests
  1555. that the client can send to the NFSv4.1 server.
  1556. Note that there is little point in setting this
  1557. value higher than the max_tcp_slot_table_limit.
  1558. nfs.nfs4_disable_idmapping=
  1559. [NFSv4] When set to the default of '1', this option
  1560. ensures that both the RPC level authentication
  1561. scheme and the NFS level operations agree to use
  1562. numeric uids/gids if the mount is using the
  1563. 'sec=sys' security flavour. In effect it is
  1564. disabling idmapping, which can make migration from
  1565. legacy NFSv2/v3 systems to NFSv4 easier.
  1566. Servers that do not support this mode of operation
  1567. will be autodetected by the client, and it will fall
  1568. back to using the idmapper.
  1569. To turn off this behaviour, set the value to '0'.
  1570. nfs.nfs4_unique_id=
  1571. [NFS4] Specify an additional fixed unique ident-
  1572. ification string that NFSv4 clients can insert into
  1573. their nfs_client_id4 string. This is typically a
  1574. UUID that is generated at system install time.
  1575. nfs.send_implementation_id =
  1576. [NFSv4.1] Send client implementation identification
  1577. information in exchange_id requests.
  1578. If zero, no implementation identification information
  1579. will be sent.
  1580. The default is to send the implementation identification
  1581. information.
  1582. nfs.recover_lost_locks =
  1583. [NFSv4] Attempt to recover locks that were lost due
  1584. to a lease timeout on the server. Please note that
  1585. doing this risks data corruption, since there are
  1586. no guarantees that the file will remain unchanged
  1587. after the locks are lost.
  1588. If you want to enable the kernel legacy behaviour of
  1589. attempting to recover these locks, then set this
  1590. parameter to '1'.
  1591. The default parameter value of '0' causes the kernel
  1592. not to attempt recovery of lost locks.
  1593. nfsd.nfs4_disable_idmapping=
  1594. [NFSv4] When set to the default of '1', the NFSv4
  1595. server will return only numeric uids and gids to
  1596. clients using auth_sys, and will accept numeric uids
  1597. and gids from such clients. This is intended to ease
  1598. migration from NFSv2/v3.
  1599. objlayoutdriver.osd_login_prog=
  1600. [NFS] [OBJLAYOUT] sets the pathname to the program which
  1601. is used to automatically discover and login into new
  1602. osd-targets. Please see:
  1603. Documentation/filesystems/pnfs.txt for more explanations
  1604. nmi_debug= [KNL,AVR32,SH] Specify one or more actions to take
  1605. when a NMI is triggered.
  1606. Format: [state][,regs][,debounce][,die]
  1607. nmi_watchdog= [KNL,BUGS=X86] Debugging features for SMP kernels
  1608. Format: [panic,][nopanic,][num]
  1609. Valid num: 0
  1610. 0 - turn nmi_watchdog off
  1611. When panic is specified, panic when an NMI watchdog
  1612. timeout occurs (or 'nopanic' to override the opposite
  1613. default).
  1614. This is useful when you use a panic=... timeout and
  1615. need the box quickly up again.
  1616. netpoll.carrier_timeout=
  1617. [NET] Specifies amount of time (in seconds) that
  1618. netpoll should wait for a carrier. By default netpoll
  1619. waits 4 seconds.
  1620. no387 [BUGS=X86-32] Tells the kernel to use the 387 maths
  1621. emulation library even if a 387 maths coprocessor
  1622. is present.
  1623. no_console_suspend
  1624. [HW] Never suspend the console
  1625. Disable suspending of consoles during suspend and
  1626. hibernate operations. Once disabled, debugging
  1627. messages can reach various consoles while the rest
  1628. of the system is being put to sleep (ie, while
  1629. debugging driver suspend/resume hooks). This may
  1630. not work reliably with all consoles, but is known
  1631. to work with serial and VGA consoles.
  1632. To facilitate more flexible debugging, we also add
  1633. console_suspend, a printk module parameter to control
  1634. it. Users could use console_suspend (usually
  1635. /sys/module/printk/parameters/console_suspend) to
  1636. turn on/off it dynamically.
  1637. noaliencache [MM, NUMA, SLAB] Disables the allocation of alien
  1638. caches in the slab allocator. Saves per-node memory,
  1639. but will impact performance.
  1640. noalign [KNL,ARM]
  1641. noapic [SMP,APIC] Tells the kernel to not make use of any
  1642. IOAPICs that may be present in the system.
  1643. noautogroup Disable scheduler automatic task group creation.
  1644. nobats [PPC] Do not use BATs for mapping kernel lowmem
  1645. on "Classic" PPC cores.
  1646. nocache [ARM]
  1647. noclflush [BUGS=X86] Don't use the CLFLUSH instruction
  1648. nodelayacct [KNL] Disable per-task delay accounting
  1649. nodisconnect [HW,SCSI,M68K] Disables SCSI disconnects.
  1650. nodsp [SH] Disable hardware DSP at boot time.
  1651. noefi [X86] Disable EFI runtime services support.
  1652. noexec [IA-64]
  1653. noexec [X86]
  1654. On X86-32 available only on PAE configured kernels.
  1655. noexec=on: enable non-executable mappings (default)
  1656. noexec=off: disable non-executable mappings
  1657. nosmap [X86]
  1658. Disable SMAP (Supervisor Mode Access Prevention)
  1659. even if it is supported by processor.
  1660. nosmep [X86]
  1661. Disable SMEP (Supervisor Mode Execution Prevention)
  1662. even if it is supported by processor.
  1663. noexec32 [X86-64]
  1664. This affects only 32-bit executables.
  1665. noexec32=on: enable non-executable mappings (default)
  1666. read doesn't imply executable mappings
  1667. noexec32=off: disable non-executable mappings
  1668. read implies executable mappings
  1669. nofpu [SH] Disable hardware FPU at boot time.
  1670. nofxsr [BUGS=X86-32] Disables x86 floating point extended
  1671. register save and restore. The kernel will only save
  1672. legacy floating-point registers on task switch.
  1673. noxsave [BUGS=X86] Disables x86 extended register state save
  1674. and restore using xsave. The kernel will fallback to
  1675. enabling legacy floating-point and sse state.
  1676. eagerfpu= [X86]
  1677. on enable eager fpu restore
  1678. off disable eager fpu restore
  1679. auto selects the default scheme, which automatically
  1680. enables eagerfpu restore for xsaveopt.
  1681. nohlt [BUGS=ARM,SH] Tells the kernel that the sleep(SH) or
  1682. wfi(ARM) instruction doesn't work correctly and not to
  1683. use it. This is also useful when using JTAG debugger.
  1684. no_file_caps Tells the kernel not to honor file capabilities. The
  1685. only way then for a file to be executed with privilege
  1686. is to be setuid root or executed by root.
  1687. nohalt [IA-64] Tells the kernel not to use the power saving
  1688. function PAL_HALT_LIGHT when idle. This increases
  1689. power-consumption. On the positive side, it reduces
  1690. interrupt wake-up latency, which may improve performance
  1691. in certain environments such as networked servers or
  1692. real-time systems.
  1693. nohz= [KNL] Boottime enable/disable dynamic ticks
  1694. Valid arguments: on, off
  1695. Default: on
  1696. nohz_full= [KNL,BOOT]
  1697. In kernels built with CONFIG_NO_HZ_FULL=y, set
  1698. the specified list of CPUs whose tick will be stopped
  1699. whenever possible. The boot CPU will be forced outside
  1700. the range to maintain the timekeeping.
  1701. The CPUs in this range must also be included in the
  1702. rcu_nocbs= set.
  1703. noiotrap [SH] Disables trapped I/O port accesses.
  1704. noirqdebug [X86-32] Disables the code which attempts to detect and
  1705. disable unhandled interrupt sources.
  1706. no_timer_check [X86,APIC] Disables the code which tests for
  1707. broken timer IRQ sources.
  1708. noisapnp [ISAPNP] Disables ISA PnP code.
  1709. noinitrd [RAM] Tells the kernel not to load any configured
  1710. initial RAM disk.
  1711. nointremap [X86-64, Intel-IOMMU] Do not enable interrupt
  1712. remapping.
  1713. [Deprecated - use intremap=off]
  1714. nointroute [IA-64]
  1715. nojitter [IA-64] Disables jitter checking for ITC timers.
  1716. no-kvmclock [X86,KVM] Disable paravirtualized KVM clock driver
  1717. no-kvmapf [X86,KVM] Disable paravirtualized asynchronous page
  1718. fault handling.
  1719. no-steal-acc [X86,KVM] Disable paravirtualized steal time accounting.
  1720. steal time is computed, but won't influence scheduler
  1721. behaviour
  1722. nolapic [X86-32,APIC] Do not enable or use the local APIC.
  1723. nolapic_timer [X86-32,APIC] Do not use the local APIC timer.
  1724. noltlbs [PPC] Do not use large page/tlb entries for kernel
  1725. lowmem mapping on PPC40x.
  1726. nomca [IA-64] Disable machine check abort handling
  1727. nomce [X86-32] Machine Check Exception
  1728. nomfgpt [X86-32] Disable Multi-Function General Purpose
  1729. Timer usage (for AMD Geode machines).
  1730. nonmi_ipi [X86] Disable using NMI IPIs during panic/reboot to
  1731. shutdown the other cpus. Instead use the REBOOT_VECTOR
  1732. irq.
  1733. nomodule Disable module load
  1734. nopat [X86] Disable PAT (page attribute table extension of
  1735. pagetables) support.
  1736. norandmaps Don't use address space randomization. Equivalent to
  1737. echo 0 > /proc/sys/kernel/randomize_va_space
  1738. noreplace-paravirt [X86,IA-64,PV_OPS] Don't patch paravirt_ops
  1739. noreplace-smp [X86-32,SMP] Don't replace SMP instructions
  1740. with UP alternatives
  1741. nordrand [X86] Disable the direct use of the RDRAND
  1742. instruction even if it is supported by the
  1743. processor. RDRAND is still available to user
  1744. space applications.
  1745. noresume [SWSUSP] Disables resume and restores original swap
  1746. space.
  1747. no-scroll [VGA] Disables scrollback.
  1748. This is required for the Braillex ib80-piezo Braille
  1749. reader made by F.H. Papenmeier (Germany).
  1750. nosbagart [IA-64]
  1751. nosep [BUGS=X86-32] Disables x86 SYSENTER/SYSEXIT support.
  1752. nosmp [SMP] Tells an SMP kernel to act as a UP kernel,
  1753. and disable the IO APIC. legacy for "maxcpus=0".
  1754. nosoftlockup [KNL] Disable the soft-lockup detector.
  1755. nosync [HW,M68K] Disables sync negotiation for all devices.
  1756. notsc [BUGS=X86-32] Disable Time Stamp Counter
  1757. nousb [USB] Disable the USB subsystem
  1758. nowatchdog [KNL] Disable the lockup detector (NMI watchdog).
  1759. nowb [ARM]
  1760. nox2apic [X86-64,APIC] Do not enable x2APIC mode.
  1761. cpu0_hotplug [X86] Turn on CPU0 hotplug feature when
  1762. CONFIG_BOOTPARAM_HOTPLUG_CPU0 is off.
  1763. Some features depend on CPU0. Known dependencies are:
  1764. 1. Resume from suspend/hibernate depends on CPU0.
  1765. Suspend/hibernate will fail if CPU0 is offline and you
  1766. need to online CPU0 before suspend/hibernate.
  1767. 2. PIC interrupts also depend on CPU0. CPU0 can't be
  1768. removed if a PIC interrupt is detected.
  1769. It's said poweroff/reboot may depend on CPU0 on some
  1770. machines although I haven't seen such issues so far
  1771. after CPU0 is offline on a few tested machines.
  1772. If the dependencies are under your control, you can
  1773. turn on cpu0_hotplug.
  1774. nptcg= [IA-64] Override max number of concurrent global TLB
  1775. purges which is reported from either PAL_VM_SUMMARY or
  1776. SAL PALO.
  1777. nr_cpus= [SMP] Maximum number of processors that an SMP kernel
  1778. could support. nr_cpus=n : n >= 1 limits the kernel to
  1779. supporting 'n' processors. Later in runtime you can not
  1780. use hotplug cpu feature to put more cpu back to online.
  1781. just like you compile the kernel NR_CPUS=n
  1782. nr_uarts= [SERIAL] maximum number of UARTs to be registered.
  1783. numa_balancing= [KNL,X86] Enable or disable automatic NUMA balancing.
  1784. Allowed values are enable and disable
  1785. numa_zonelist_order= [KNL, BOOT] Select zonelist order for NUMA.
  1786. one of ['zone', 'node', 'default'] can be specified
  1787. This can be set from sysctl after boot.
  1788. See Documentation/sysctl/vm.txt for details.
  1789. ohci1394_dma=early [HW] enable debugging via the ohci1394 driver.
  1790. See Documentation/debugging-via-ohci1394.txt for more
  1791. info.
  1792. olpc_ec_timeout= [OLPC] ms delay when issuing EC commands
  1793. Rather than timing out after 20 ms if an EC
  1794. command is not properly ACKed, override the length
  1795. of the timeout. We have interrupts disabled while
  1796. waiting for the ACK, so if this is set too high
  1797. interrupts *may* be lost!
  1798. omap_mux= [OMAP] Override bootloader pin multiplexing.
  1799. Format: <mux_mode0.mode_name=value>...
  1800. For example, to override I2C bus2:
  1801. omap_mux=i2c2_scl.i2c2_scl=0x100,i2c2_sda.i2c2_sda=0x100
  1802. oprofile.timer= [HW]
  1803. Use timer interrupt instead of performance counters
  1804. oprofile.cpu_type= Force an oprofile cpu type
  1805. This might be useful if you have an older oprofile
  1806. userland or if you want common events.
  1807. Format: { arch_perfmon }
  1808. arch_perfmon: [X86] Force use of architectural
  1809. perfmon on Intel CPUs instead of the
  1810. CPU specific event set.
  1811. timer: [X86] Force use of architectural NMI
  1812. timer mode (see also oprofile.timer
  1813. for generic hr timer mode)
  1814. [s390] Force legacy basic mode sampling
  1815. (report cpu_type "timer")
  1816. oops=panic Always panic on oopses. Default is to just kill the
  1817. process, but there is a small probability of
  1818. deadlocking the machine.
  1819. This will also cause panics on machine check exceptions.
  1820. Useful together with panic=30 to trigger a reboot.
  1821. OSS [HW,OSS]
  1822. See Documentation/sound/oss/oss-parameters.txt
  1823. panic= [KNL] Kernel behaviour on panic: delay <timeout>
  1824. timeout > 0: seconds before rebooting
  1825. timeout = 0: wait forever
  1826. timeout < 0: reboot immediately
  1827. Format: <timeout>
  1828. parkbd.port= [HW] Parallel port number the keyboard adapter is
  1829. connected to, default is 0.
  1830. Format: <parport#>
  1831. parkbd.mode= [HW] Parallel port keyboard adapter mode of operation,
  1832. 0 for XT, 1 for AT (default is AT).
  1833. Format: <mode>
  1834. parport= [HW,PPT] Specify parallel ports. 0 disables.
  1835. Format: { 0 | auto | 0xBBB[,IRQ[,DMA]] }
  1836. Use 'auto' to force the driver to use any
  1837. IRQ/DMA settings detected (the default is to
  1838. ignore detected IRQ/DMA settings because of
  1839. possible conflicts). You can specify the base
  1840. address, IRQ, and DMA settings; IRQ and DMA
  1841. should be numbers, or 'auto' (for using detected
  1842. settings on that particular port), or 'nofifo'
  1843. (to avoid using a FIFO even if it is detected).
  1844. Parallel ports are assigned in the order they
  1845. are specified on the command line, starting
  1846. with parport0.
  1847. parport_init_mode= [HW,PPT]
  1848. Configure VIA parallel port to operate in
  1849. a specific mode. This is necessary on Pegasos
  1850. computer where firmware has no options for setting
  1851. up parallel port mode and sets it to spp.
  1852. Currently this function knows 686a and 8231 chips.
  1853. Format: [spp|ps2|epp|ecp|ecpepp]
  1854. pause_on_oops=
  1855. Halt all CPUs after the first oops has been printed for
  1856. the specified number of seconds. This is to be used if
  1857. your oopses keep scrolling off the screen.
  1858. pcbit= [HW,ISDN]
  1859. pcd. [PARIDE]
  1860. See header of drivers/block/paride/pcd.c.
  1861. See also Documentation/blockdev/paride.txt.
  1862. pci=option[,option...] [PCI] various PCI subsystem options:
  1863. earlydump [X86] dump PCI config space before the kernel
  1864. changes anything
  1865. off [X86] don't probe for the PCI bus
  1866. bios [X86-32] force use of PCI BIOS, don't access
  1867. the hardware directly. Use this if your machine
  1868. has a non-standard PCI host bridge.
  1869. nobios [X86-32] disallow use of PCI BIOS, only direct
  1870. hardware access methods are allowed. Use this
  1871. if you experience crashes upon bootup and you
  1872. suspect they are caused by the BIOS.
  1873. conf1 [X86] Force use of PCI Configuration
  1874. Mechanism 1.
  1875. conf2 [X86] Force use of PCI Configuration
  1876. Mechanism 2.
  1877. noaer [PCIE] If the PCIEAER kernel config parameter is
  1878. enabled, this kernel boot option can be used to
  1879. disable the use of PCIE advanced error reporting.
  1880. nodomains [PCI] Disable support for multiple PCI
  1881. root domains (aka PCI segments, in ACPI-speak).
  1882. nommconf [X86] Disable use of MMCONFIG for PCI
  1883. Configuration
  1884. check_enable_amd_mmconf [X86] check for and enable
  1885. properly configured MMIO access to PCI
  1886. config space on AMD family 10h CPU
  1887. nomsi [MSI] If the PCI_MSI kernel config parameter is
  1888. enabled, this kernel boot option can be used to
  1889. disable the use of MSI interrupts system-wide.
  1890. noioapicquirk [APIC] Disable all boot interrupt quirks.
  1891. Safety option to keep boot IRQs enabled. This
  1892. should never be necessary.
  1893. ioapicreroute [APIC] Enable rerouting of boot IRQs to the
  1894. primary IO-APIC for bridges that cannot disable
  1895. boot IRQs. This fixes a source of spurious IRQs
  1896. when the system masks IRQs.
  1897. noioapicreroute [APIC] Disable workaround that uses the
  1898. boot IRQ equivalent of an IRQ that connects to
  1899. a chipset where boot IRQs cannot be disabled.
  1900. The opposite of ioapicreroute.
  1901. biosirq [X86-32] Use PCI BIOS calls to get the interrupt
  1902. routing table. These calls are known to be buggy
  1903. on several machines and they hang the machine
  1904. when used, but on other computers it's the only
  1905. way to get the interrupt routing table. Try
  1906. this option if the kernel is unable to allocate
  1907. IRQs or discover secondary PCI buses on your
  1908. motherboard.
  1909. rom [X86] Assign address space to expansion ROMs.
  1910. Use with caution as certain devices share
  1911. address decoders between ROMs and other
  1912. resources.
  1913. norom [X86] Do not assign address space to
  1914. expansion ROMs that do not already have
  1915. BIOS assigned address ranges.
  1916. nobar [X86] Do not assign address space to the
  1917. BARs that weren't assigned by the BIOS.
  1918. irqmask=0xMMMM [X86] Set a bit mask of IRQs allowed to be
  1919. assigned automatically to PCI devices. You can
  1920. make the kernel exclude IRQs of your ISA cards
  1921. this way.
  1922. pirqaddr=0xAAAAA [X86] Specify the physical address
  1923. of the PIRQ table (normally generated
  1924. by the BIOS) if it is outside the
  1925. F0000h-100000h range.
  1926. lastbus=N [X86] Scan all buses thru bus #N. Can be
  1927. useful if the kernel is unable to find your
  1928. secondary buses and you want to tell it
  1929. explicitly which ones they are.
  1930. assign-busses [X86] Always assign all PCI bus
  1931. numbers ourselves, overriding
  1932. whatever the firmware may have done.
  1933. usepirqmask [X86] Honor the possible IRQ mask stored
  1934. in the BIOS $PIR table. This is needed on
  1935. some systems with broken BIOSes, notably
  1936. some HP Pavilion N5400 and Omnibook XE3
  1937. notebooks. This will have no effect if ACPI
  1938. IRQ routing is enabled.
  1939. noacpi [X86] Do not use ACPI for IRQ routing
  1940. or for PCI scanning.
  1941. use_crs [X86] Use PCI host bridge window information
  1942. from ACPI. On BIOSes from 2008 or later, this
  1943. is enabled by default. If you need to use this,
  1944. please report a bug.
  1945. nocrs [X86] Ignore PCI host bridge windows from ACPI.
  1946. If you need to use this, please report a bug.
  1947. routeirq Do IRQ routing for all PCI devices.
  1948. This is normally done in pci_enable_device(),
  1949. so this option is a temporary workaround
  1950. for broken drivers that don't call it.
  1951. skip_isa_align [X86] do not align io start addr, so can
  1952. handle more pci cards
  1953. firmware [ARM] Do not re-enumerate the bus but instead
  1954. just use the configuration from the
  1955. bootloader. This is currently used on
  1956. IXP2000 systems where the bus has to be
  1957. configured a certain way for adjunct CPUs.
  1958. noearly [X86] Don't do any early type 1 scanning.
  1959. This might help on some broken boards which
  1960. machine check when some devices' config space
  1961. is read. But various workarounds are disabled
  1962. and some IOMMU drivers will not work.
  1963. bfsort Sort PCI devices into breadth-first order.
  1964. This sorting is done to get a device
  1965. order compatible with older (<= 2.4) kernels.
  1966. nobfsort Don't sort PCI devices into breadth-first order.
  1967. pcie_bus_tune_off Disable PCIe MPS (Max Payload Size)
  1968. tuning and use the BIOS-configured MPS defaults.
  1969. pcie_bus_safe Set every device's MPS to the largest value
  1970. supported by all devices below the root complex.
  1971. pcie_bus_perf Set device MPS to the largest allowable MPS
  1972. based on its parent bus. Also set MRRS (Max
  1973. Read Request Size) to the largest supported
  1974. value (no larger than the MPS that the device
  1975. or bus can support) for best performance.
  1976. pcie_bus_peer2peer Set every device's MPS to 128B, which
  1977. every device is guaranteed to support. This
  1978. configuration allows peer-to-peer DMA between
  1979. any pair of devices, possibly at the cost of
  1980. reduced performance. This also guarantees
  1981. that hot-added devices will work.
  1982. cbiosize=nn[KMG] The fixed amount of bus space which is
  1983. reserved for the CardBus bridge's IO window.
  1984. The default value is 256 bytes.
  1985. cbmemsize=nn[KMG] The fixed amount of bus space which is
  1986. reserved for the CardBus bridge's memory
  1987. window. The default value is 64 megabytes.
  1988. resource_alignment=
  1989. Format:
  1990. [<order of align>@][<domain>:]<bus>:<slot>.<func>[; ...]
  1991. Specifies alignment and device to reassign
  1992. aligned memory resources.
  1993. If <order of align> is not specified,
  1994. PAGE_SIZE is used as alignment.
  1995. PCI-PCI bridge can be specified, if resource
  1996. windows need to be expanded.
  1997. ecrc= Enable/disable PCIe ECRC (transaction layer
  1998. end-to-end CRC checking).
  1999. bios: Use BIOS/firmware settings. This is the
  2000. the default.
  2001. off: Turn ECRC off
  2002. on: Turn ECRC on.
  2003. hpiosize=nn[KMG] The fixed amount of bus space which is
  2004. reserved for hotplug bridge's IO window.
  2005. Default size is 256 bytes.
  2006. hpmemsize=nn[KMG] The fixed amount of bus space which is
  2007. reserved for hotplug bridge's memory window.
  2008. Default size is 2 megabytes.
  2009. realloc= Enable/disable reallocating PCI bridge resources
  2010. if allocations done by BIOS are too small to
  2011. accommodate resources required by all child
  2012. devices.
  2013. off: Turn realloc off
  2014. on: Turn realloc on
  2015. realloc same as realloc=on
  2016. noari do not use PCIe ARI.
  2017. pcie_scan_all Scan all possible PCIe devices. Otherwise we
  2018. only look for one device below a PCIe downstream
  2019. port.
  2020. pcie_aspm= [PCIE] Forcibly enable or disable PCIe Active State Power
  2021. Management.
  2022. off Disable ASPM.
  2023. force Enable ASPM even on devices that claim not to support it.
  2024. WARNING: Forcing ASPM on may cause system lockups.
  2025. pcie_hp= [PCIE] PCI Express Hotplug driver options:
  2026. nomsi Do not use MSI for PCI Express Native Hotplug (this
  2027. makes all PCIe ports use INTx for hotplug services).
  2028. pcie_ports= [PCIE] PCIe ports handling:
  2029. auto Ask the BIOS whether or not to use native PCIe services
  2030. associated with PCIe ports (PME, hot-plug, AER). Use
  2031. them only if that is allowed by the BIOS.
  2032. native Use native PCIe services associated with PCIe ports
  2033. unconditionally.
  2034. compat Treat PCIe ports as PCI-to-PCI bridges, disable the PCIe
  2035. ports driver.
  2036. pcie_pme= [PCIE,PM] Native PCIe PME signaling options:
  2037. nomsi Do not use MSI for native PCIe PME signaling (this makes
  2038. all PCIe root ports use INTx for all services).
  2039. pcmv= [HW,PCMCIA] BadgePAD 4
  2040. pd. [PARIDE]
  2041. See Documentation/blockdev/paride.txt.
  2042. pdcchassis= [PARISC,HW] Disable/Enable PDC Chassis Status codes at
  2043. boot time.
  2044. Format: { 0 | 1 }
  2045. See arch/parisc/kernel/pdc_chassis.c
  2046. percpu_alloc= Select which percpu first chunk allocator to use.
  2047. Currently supported values are "embed" and "page".
  2048. Archs may support subset or none of the selections.
  2049. See comments in mm/percpu.c for details on each
  2050. allocator. This parameter is primarily for debugging
  2051. and performance comparison.
  2052. pf. [PARIDE]
  2053. See Documentation/blockdev/paride.txt.
  2054. pg. [PARIDE]
  2055. See Documentation/blockdev/paride.txt.
  2056. pirq= [SMP,APIC] Manual mp-table setup
  2057. See Documentation/x86/i386/IO-APIC.txt.
  2058. plip= [PPT,NET] Parallel port network link
  2059. Format: { parport<nr> | timid | 0 }
  2060. See also Documentation/parport.txt.
  2061. pmtmr= [X86] Manual setup of pmtmr I/O Port.
  2062. Override pmtimer IOPort with a hex value.
  2063. e.g. pmtmr=0x508
  2064. pnp.debug=1 [PNP]
  2065. Enable PNP debug messages (depends on the
  2066. CONFIG_PNP_DEBUG_MESSAGES option). Change at run-time
  2067. via /sys/module/pnp/parameters/debug. We always show
  2068. current resource usage; turning this on also shows
  2069. possible settings and some assignment information.
  2070. pnpacpi= [ACPI]
  2071. { off }
  2072. pnpbios= [ISAPNP]
  2073. { on | off | curr | res | no-curr | no-res }
  2074. pnp_reserve_irq=
  2075. [ISAPNP] Exclude IRQs for the autoconfiguration
  2076. pnp_reserve_dma=
  2077. [ISAPNP] Exclude DMAs for the autoconfiguration
  2078. pnp_reserve_io= [ISAPNP] Exclude I/O ports for the autoconfiguration
  2079. Ranges are in pairs (I/O port base and size).
  2080. pnp_reserve_mem=
  2081. [ISAPNP] Exclude memory regions for the
  2082. autoconfiguration.
  2083. Ranges are in pairs (memory base and size).
  2084. ports= [IP_VS_FTP] IPVS ftp helper module
  2085. Default is 21.
  2086. Up to 8 (IP_VS_APP_MAX_PORTS) ports
  2087. may be specified.
  2088. Format: <port>,<port>....
  2089. print-fatal-signals=
  2090. [KNL] debug: print fatal signals
  2091. If enabled, warn about various signal handling
  2092. related application anomalies: too many signals,
  2093. too many POSIX.1 timers, fatal signals causing a
  2094. coredump - etc.
  2095. If you hit the warning due to signal overflow,
  2096. you might want to try "ulimit -i unlimited".
  2097. default: off.
  2098. printk.always_kmsg_dump=
  2099. Trigger kmsg_dump for cases other than kernel oops or
  2100. panics
  2101. Format: <bool> (1/Y/y=enable, 0/N/n=disable)
  2102. default: disabled
  2103. printk.time= Show timing data prefixed to each printk message line
  2104. Format: <bool> (1/Y/y=enable, 0/N/n=disable)
  2105. processor.max_cstate= [HW,ACPI]
  2106. Limit processor to maximum C-state
  2107. max_cstate=9 overrides any DMI blacklist limit.
  2108. processor.nocst [HW,ACPI]
  2109. Ignore the _CST method to determine C-states,
  2110. instead using the legacy FADT method
  2111. profile= [KNL] Enable kernel profiling via /proc/profile
  2112. Format: [schedule,]<number>
  2113. Param: "schedule" - profile schedule points.
  2114. Param: <number> - step/bucket size as a power of 2 for
  2115. statistical time based profiling.
  2116. Param: "sleep" - profile D-state sleeping (millisecs).
  2117. Requires CONFIG_SCHEDSTATS
  2118. Param: "kvm" - profile VM exits.
  2119. prompt_ramdisk= [RAM] List of RAM disks to prompt for floppy disk
  2120. before loading.
  2121. See Documentation/blockdev/ramdisk.txt.
  2122. psmouse.proto= [HW,MOUSE] Highest PS2 mouse protocol extension to
  2123. probe for; one of (bare|imps|exps|lifebook|any).
  2124. psmouse.rate= [HW,MOUSE] Set desired mouse report rate, in reports
  2125. per second.
  2126. psmouse.resetafter= [HW,MOUSE]
  2127. Try to reset the device after so many bad packets
  2128. (0 = never).
  2129. psmouse.resolution=
  2130. [HW,MOUSE] Set desired mouse resolution, in dpi.
  2131. psmouse.smartscroll=
  2132. [HW,MOUSE] Controls Logitech smartscroll autorepeat.
  2133. 0 = disabled, 1 = enabled (default).
  2134. pstore.backend= Specify the name of the pstore backend to use
  2135. pt. [PARIDE]
  2136. See Documentation/blockdev/paride.txt.
  2137. pty.legacy_count=
  2138. [KNL] Number of legacy pty's. Overwrites compiled-in
  2139. default number.
  2140. quiet [KNL] Disable most log messages
  2141. r128= [HW,DRM]
  2142. raid= [HW,RAID]
  2143. See Documentation/md.txt.
  2144. ramdisk_blocksize= [RAM]
  2145. See Documentation/blockdev/ramdisk.txt.
  2146. ramdisk_size= [RAM] Sizes of RAM disks in kilobytes
  2147. See Documentation/blockdev/ramdisk.txt.
  2148. rcu_nocbs= [KNL]
  2149. In kernels built with CONFIG_RCU_NOCB_CPU=y, set
  2150. the specified list of CPUs to be no-callback CPUs.
  2151. Invocation of these CPUs' RCU callbacks will
  2152. be offloaded to "rcuox/N" kthreads created for
  2153. that purpose, where "x" is "b" for RCU-bh, "p"
  2154. for RCU-preempt, and "s" for RCU-sched, and "N"
  2155. is the CPU number. This reduces OS jitter on the
  2156. offloaded CPUs, which can be useful for HPC and
  2157. real-time workloads. It can also improve energy
  2158. efficiency for asymmetric multiprocessors.
  2159. rcu_nocb_poll [KNL]
  2160. Rather than requiring that offloaded CPUs
  2161. (specified by rcu_nocbs= above) explicitly
  2162. awaken the corresponding "rcuoN" kthreads,
  2163. make these kthreads poll for callbacks.
  2164. This improves the real-time response for the
  2165. offloaded CPUs by relieving them of the need to
  2166. wake up the corresponding kthread, but degrades
  2167. energy efficiency by requiring that the kthreads
  2168. periodically wake up to do the polling.
  2169. rcutree.blimit= [KNL]
  2170. Set maximum number of finished RCU callbacks to process
  2171. in one batch.
  2172. rcutree.rcu_fanout_leaf= [KNL]
  2173. Increase the number of CPUs assigned to each
  2174. leaf rcu_node structure. Useful for very large
  2175. systems.
  2176. rcutree.jiffies_till_first_fqs= [KNL]
  2177. Set delay from grace-period initialization to
  2178. first attempt to force quiescent states.
  2179. Units are jiffies, minimum value is zero,
  2180. and maximum value is HZ.
  2181. rcutree.jiffies_till_next_fqs= [KNL]
  2182. Set delay between subsequent attempts to force
  2183. quiescent states. Units are jiffies, minimum
  2184. value is one, and maximum value is HZ.
  2185. rcutree.qhimark= [KNL]
  2186. Set threshold of queued
  2187. RCU callbacks over which batch limiting is disabled.
  2188. rcutree.qlowmark= [KNL]
  2189. Set threshold of queued RCU callbacks below which
  2190. batch limiting is re-enabled.
  2191. rcutree.rcu_idle_gp_delay= [KNL]
  2192. Set wakeup interval for idle CPUs that have
  2193. RCU callbacks (RCU_FAST_NO_HZ=y).
  2194. rcutree.rcu_idle_lazy_gp_delay= [KNL]
  2195. Set wakeup interval for idle CPUs that have
  2196. only "lazy" RCU callbacks (RCU_FAST_NO_HZ=y).
  2197. Lazy RCU callbacks are those which RCU can
  2198. prove do nothing more than free memory.
  2199. rcutorture.fqs_duration= [KNL]
  2200. Set duration of force_quiescent_state bursts.
  2201. rcutorture.fqs_holdoff= [KNL]
  2202. Set holdoff time within force_quiescent_state bursts.
  2203. rcutorture.fqs_stutter= [KNL]
  2204. Set wait time between force_quiescent_state bursts.
  2205. rcutorture.gp_exp= [KNL]
  2206. Use expedited update-side primitives.
  2207. rcutorture.gp_normal= [KNL]
  2208. Use normal (non-expedited) update-side primitives.
  2209. If both gp_exp and gp_normal are set, do both.
  2210. If neither gp_exp nor gp_normal are set, still
  2211. do both.
  2212. rcutorture.n_barrier_cbs= [KNL]
  2213. Set callbacks/threads for rcu_barrier() testing.
  2214. rcutorture.nfakewriters= [KNL]
  2215. Set number of concurrent RCU writers. These just
  2216. stress RCU, they don't participate in the actual
  2217. test, hence the "fake".
  2218. rcutorture.nreaders= [KNL]
  2219. Set number of RCU readers.
  2220. rcutorture.object_debug= [KNL]
  2221. Enable debug-object double-call_rcu() testing.
  2222. rcutorture.onoff_holdoff= [KNL]
  2223. Set time (s) after boot for CPU-hotplug testing.
  2224. rcutorture.onoff_interval= [KNL]
  2225. Set time (s) between CPU-hotplug operations, or
  2226. zero to disable CPU-hotplug testing.
  2227. rcutorture.rcutorture_runnable= [BOOT]
  2228. Start rcutorture running at boot time.
  2229. rcutorture.shuffle_interval= [KNL]
  2230. Set task-shuffle interval (s). Shuffling tasks
  2231. allows some CPUs to go into dyntick-idle mode
  2232. during the rcutorture test.
  2233. rcutorture.shutdown_secs= [KNL]
  2234. Set time (s) after boot system shutdown. This
  2235. is useful for hands-off automated testing.
  2236. rcutorture.stall_cpu= [KNL]
  2237. Duration of CPU stall (s) to test RCU CPU stall
  2238. warnings, zero to disable.
  2239. rcutorture.stall_cpu_holdoff= [KNL]
  2240. Time to wait (s) after boot before inducing stall.
  2241. rcutorture.stat_interval= [KNL]
  2242. Time (s) between statistics printk()s.
  2243. rcutorture.stutter= [KNL]
  2244. Time (s) to stutter testing, for example, specifying
  2245. five seconds causes the test to run for five seconds,
  2246. wait for five seconds, and so on. This tests RCU's
  2247. ability to transition abruptly to and from idle.
  2248. rcutorture.test_boost= [KNL]
  2249. Test RCU priority boosting? 0=no, 1=maybe, 2=yes.
  2250. "Maybe" means test if the RCU implementation
  2251. under test support RCU priority boosting.
  2252. rcutorture.test_boost_duration= [KNL]
  2253. Duration (s) of each individual boost test.
  2254. rcutorture.test_boost_interval= [KNL]
  2255. Interval (s) between each boost test.
  2256. rcutorture.test_no_idle_hz= [KNL]
  2257. Test RCU's dyntick-idle handling. See also the
  2258. rcutorture.shuffle_interval parameter.
  2259. rcutorture.torture_type= [KNL]
  2260. Specify the RCU implementation to test.
  2261. rcutorture.verbose= [KNL]
  2262. Enable additional printk() statements.
  2263. rcupdate.rcu_expedited= [KNL]
  2264. Use expedited grace-period primitives, for
  2265. example, synchronize_rcu_expedited() instead
  2266. of synchronize_rcu(). This reduces latency,
  2267. but can increase CPU utilization, degrade
  2268. real-time latency, and degrade energy efficiency.
  2269. rcupdate.rcu_cpu_stall_suppress= [KNL]
  2270. Suppress RCU CPU stall warning messages.
  2271. rcupdate.rcu_cpu_stall_timeout= [KNL]
  2272. Set timeout for RCU CPU stall warning messages.
  2273. rdinit= [KNL]
  2274. Format: <full_path>
  2275. Run specified binary instead of /init from the ramdisk,
  2276. used for early userspace startup. See initrd.
  2277. reboot= [KNL]
  2278. Format (x86 or x86_64):
  2279. [w[arm] | c[old] | h[ard] | s[oft] | g[pio]] \
  2280. [[,]s[mp]#### \
  2281. [[,]b[ios] | a[cpi] | k[bd] | t[riple] | e[fi] | p[ci]] \
  2282. [[,]f[orce]
  2283. Where reboot_mode is one of warm (soft) or cold (hard) or gpio,
  2284. reboot_type is one of bios, acpi, kbd, triple, efi, or pci,
  2285. reboot_force is either force or not specified,
  2286. reboot_cpu is s[mp]#### with #### being the processor
  2287. to be used for rebooting.
  2288. relax_domain_level=
  2289. [KNL, SMP] Set scheduler's default relax_domain_level.
  2290. See Documentation/cgroups/cpusets.txt.
  2291. reserve= [KNL,BUGS] Force the kernel to ignore some iomem area
  2292. reservetop= [X86-32]
  2293. Format: nn[KMG]
  2294. Reserves a hole at the top of the kernel virtual
  2295. address space.
  2296. reservelow= [X86]
  2297. Format: nn[K]
  2298. Set the amount of memory to reserve for BIOS at
  2299. the bottom of the address space.
  2300. reset_devices [KNL] Force drivers to reset the underlying device
  2301. during initialization.
  2302. resume= [SWSUSP]
  2303. Specify the partition device for software suspend
  2304. Format:
  2305. {/dev/<dev> | PARTUUID=<uuid> | <int>:<int> | <hex>}
  2306. resume_offset= [SWSUSP]
  2307. Specify the offset from the beginning of the partition
  2308. given by "resume=" at which the swap header is located,
  2309. in <PAGE_SIZE> units (needed only for swap files).
  2310. See Documentation/power/swsusp-and-swap-files.txt
  2311. resumedelay= [HIBERNATION] Delay (in seconds) to pause before attempting to
  2312. read the resume files
  2313. resumewait [HIBERNATION] Wait (indefinitely) for resume device to show up.
  2314. Useful for devices that are detected asynchronously
  2315. (e.g. USB and MMC devices).
  2316. hibernate= [HIBERNATION]
  2317. noresume Don't check if there's a hibernation image
  2318. present during boot.
  2319. nocompress Don't compress/decompress hibernation images.
  2320. retain_initrd [RAM] Keep initrd memory after extraction
  2321. rhash_entries= [KNL,NET]
  2322. Set number of hash buckets for route cache
  2323. riscom8= [HW,SERIAL]
  2324. Format: <io_board1>[,<io_board2>[,...<io_boardN>]]
  2325. ro [KNL] Mount root device read-only on boot
  2326. root= [KNL] Root filesystem
  2327. See name_to_dev_t comment in init/do_mounts.c.
  2328. rootdelay= [KNL] Delay (in seconds) to pause before attempting to
  2329. mount the root filesystem
  2330. rootflags= [KNL] Set root filesystem mount option string
  2331. rootfstype= [KNL] Set root filesystem type
  2332. rootwait [KNL] Wait (indefinitely) for root device to show up.
  2333. Useful for devices that are detected asynchronously
  2334. (e.g. USB and MMC devices).
  2335. rproc_mem=nn[KMG][@address]
  2336. [KNL,ARM,CMA] Remoteproc physical memory block.
  2337. Memory area to be used by remote processor image,
  2338. managed by CMA.
  2339. rw [KNL] Mount root device read-write on boot
  2340. S [KNL] Run init in single mode
  2341. sa1100ir [NET]
  2342. See drivers/net/irda/sa1100_ir.c.
  2343. sbni= [NET] Granch SBNI12 leased line adapter
  2344. sched_debug [KNL] Enables verbose scheduler debug messages.
  2345. skew_tick= [KNL] Offset the periodic timer tick per cpu to mitigate
  2346. xtime_lock contention on larger systems, and/or RCU lock
  2347. contention on all systems with CONFIG_MAXSMP set.
  2348. Format: { "0" | "1" }
  2349. 0 -- disable. (may be 1 via CONFIG_CMDLINE="skew_tick=1"
  2350. 1 -- enable.
  2351. Note: increases power consumption, thus should only be
  2352. enabled if running jitter sensitive (HPC/RT) workloads.
  2353. security= [SECURITY] Choose a security module to enable at boot.
  2354. If this boot parameter is not specified, only the first
  2355. security module asking for security registration will be
  2356. loaded. An invalid security module name will be treated
  2357. as if no module has been chosen.
  2358. selinux= [SELINUX] Disable or enable SELinux at boot time.
  2359. Format: { "0" | "1" }
  2360. See security/selinux/Kconfig help text.
  2361. 0 -- disable.
  2362. 1 -- enable.
  2363. Default value is set via kernel config option.
  2364. If enabled at boot time, /selinux/disable can be used
  2365. later to disable prior to initial policy load.
  2366. apparmor= [APPARMOR] Disable or enable AppArmor at boot time
  2367. Format: { "0" | "1" }
  2368. See security/apparmor/Kconfig help text
  2369. 0 -- disable.
  2370. 1 -- enable.
  2371. Default value is set via kernel config option.
  2372. serialnumber [BUGS=X86-32]
  2373. shapers= [NET]
  2374. Maximal number of shapers.
  2375. show_msr= [x86] show boot-time MSR settings
  2376. Format: { <integer> }
  2377. Show boot-time (BIOS-initialized) MSR settings.
  2378. The parameter means the number of CPUs to show,
  2379. for example 1 means boot CPU only.
  2380. simeth= [IA-64]
  2381. simscsi=
  2382. slram= [HW,MTD]
  2383. slab_max_order= [MM, SLAB]
  2384. Determines the maximum allowed order for slabs.
  2385. A high setting may cause OOMs due to memory
  2386. fragmentation. Defaults to 1 for systems with
  2387. more than 32MB of RAM, 0 otherwise.
  2388. slub_debug[=options[,slabs]] [MM, SLUB]
  2389. Enabling slub_debug allows one to determine the
  2390. culprit if slab objects become corrupted. Enabling
  2391. slub_debug can create guard zones around objects and
  2392. may poison objects when not in use. Also tracks the
  2393. last alloc / free. For more information see
  2394. Documentation/vm/slub.txt.
  2395. slub_max_order= [MM, SLUB]
  2396. Determines the maximum allowed order for slabs.
  2397. A high setting may cause OOMs due to memory
  2398. fragmentation. For more information see
  2399. Documentation/vm/slub.txt.
  2400. slub_min_objects= [MM, SLUB]
  2401. The minimum number of objects per slab. SLUB will
  2402. increase the slab order up to slub_max_order to
  2403. generate a sufficiently large slab able to contain
  2404. the number of objects indicated. The higher the number
  2405. of objects the smaller the overhead of tracking slabs
  2406. and the less frequently locks need to be acquired.
  2407. For more information see Documentation/vm/slub.txt.
  2408. slub_min_order= [MM, SLUB]
  2409. Determines the minimum page order for slabs. Must be
  2410. lower than slub_max_order.
  2411. For more information see Documentation/vm/slub.txt.
  2412. slub_nomerge [MM, SLUB]
  2413. Disable merging of slabs with similar size. May be
  2414. necessary if there is some reason to distinguish
  2415. allocs to different slabs. Debug options disable
  2416. merging on their own.
  2417. For more information see Documentation/vm/slub.txt.
  2418. smart2= [HW]
  2419. Format: <io1>[,<io2>[,...,<io8>]]
  2420. smsc-ircc2.nopnp [HW] Don't use PNP to discover SMC devices
  2421. smsc-ircc2.ircc_cfg= [HW] Device configuration I/O port
  2422. smsc-ircc2.ircc_sir= [HW] SIR base I/O port
  2423. smsc-ircc2.ircc_fir= [HW] FIR base I/O port
  2424. smsc-ircc2.ircc_irq= [HW] IRQ line
  2425. smsc-ircc2.ircc_dma= [HW] DMA channel
  2426. smsc-ircc2.ircc_transceiver= [HW] Transceiver type:
  2427. 0: Toshiba Satellite 1800 (GP data pin select)
  2428. 1: Fast pin select (default)
  2429. 2: ATC IRMode
  2430. softlockup_panic=
  2431. [KNL] Should the soft-lockup detector generate panics.
  2432. Format: <integer>
  2433. sonypi.*= [HW] Sony Programmable I/O Control Device driver
  2434. See Documentation/laptops/sonypi.txt
  2435. specialix= [HW,SERIAL] Specialix multi-serial port adapter
  2436. See Documentation/serial/specialix.txt.
  2437. spia_io_base= [HW,MTD]
  2438. spia_fio_base=
  2439. spia_pedr=
  2440. spia_peddr=
  2441. stacktrace [FTRACE]
  2442. Enabled the stack tracer on boot up.
  2443. stacktrace_filter=[function-list]
  2444. [FTRACE] Limit the functions that the stack tracer
  2445. will trace at boot up. function-list is a comma separated
  2446. list of functions. This list can be changed at run
  2447. time by the stack_trace_filter file in the debugfs
  2448. tracing directory. Note, this enables stack tracing
  2449. and the stacktrace above is not needed.
  2450. sti= [PARISC,HW]
  2451. Format: <num>
  2452. Set the STI (builtin display/keyboard on the HP-PARISC
  2453. machines) console (graphic card) which should be used
  2454. as the initial boot-console.
  2455. See also comment in drivers/video/console/sticore.c.
  2456. sti_font= [HW]
  2457. See comment in drivers/video/console/sticore.c.
  2458. stifb= [HW]
  2459. Format: bpp:<bpp1>[:<bpp2>[:<bpp3>...]]
  2460. sunrpc.min_resvport=
  2461. sunrpc.max_resvport=
  2462. [NFS,SUNRPC]
  2463. SunRPC servers often require that client requests
  2464. originate from a privileged port (i.e. a port in the
  2465. range 0 < portnr < 1024).
  2466. An administrator who wishes to reserve some of these
  2467. ports for other uses may adjust the range that the
  2468. kernel's sunrpc client considers to be privileged
  2469. using these two parameters to set the minimum and
  2470. maximum port values.
  2471. sunrpc.pool_mode=
  2472. [NFS]
  2473. Control how the NFS server code allocates CPUs to
  2474. service thread pools. Depending on how many NICs
  2475. you have and where their interrupts are bound, this
  2476. option will affect which CPUs will do NFS serving.
  2477. Note: this parameter cannot be changed while the
  2478. NFS server is running.
  2479. auto the server chooses an appropriate mode
  2480. automatically using heuristics
  2481. global a single global pool contains all CPUs
  2482. percpu one pool for each CPU
  2483. pernode one pool for each NUMA node (equivalent
  2484. to global on non-NUMA machines)
  2485. sunrpc.tcp_slot_table_entries=
  2486. sunrpc.udp_slot_table_entries=
  2487. [NFS,SUNRPC]
  2488. Sets the upper limit on the number of simultaneous
  2489. RPC calls that can be sent from the client to a
  2490. server. Increasing these values may allow you to
  2491. improve throughput, but will also increase the
  2492. amount of memory reserved for use by the client.
  2493. swapaccount=[0|1]
  2494. [KNL] Enable accounting of swap in memory resource
  2495. controller if no parameter or 1 is given or disable
  2496. it if 0 is given (See Documentation/cgroups/memory.txt)
  2497. swiotlb= [IA-64] Number of I/O TLB slabs
  2498. switches= [HW,M68k]
  2499. sysfs.deprecated=0|1 [KNL]
  2500. Enable/disable old style sysfs layout for old udev
  2501. on older distributions. When this option is enabled
  2502. very new udev will not work anymore. When this option
  2503. is disabled (or CONFIG_SYSFS_DEPRECATED not compiled)
  2504. in older udev will not work anymore.
  2505. Default depends on CONFIG_SYSFS_DEPRECATED_V2 set in
  2506. the kernel configuration.
  2507. sysrq_always_enabled
  2508. [KNL]
  2509. Ignore sysrq setting - this boot parameter will
  2510. neutralize any effect of /proc/sys/kernel/sysrq.
  2511. Useful for debugging.
  2512. tdfx= [HW,DRM]
  2513. test_suspend= [SUSPEND]
  2514. Specify "mem" (for Suspend-to-RAM) or "standby" (for
  2515. standby suspend) as the system sleep state to briefly
  2516. enter during system startup. The system is woken from
  2517. this state using a wakeup-capable RTC alarm.
  2518. thash_entries= [KNL,NET]
  2519. Set number of hash buckets for TCP connection
  2520. thermal.act= [HW,ACPI]
  2521. -1: disable all active trip points in all thermal zones
  2522. <degrees C>: override all lowest active trip points
  2523. thermal.crt= [HW,ACPI]
  2524. -1: disable all critical trip points in all thermal zones
  2525. <degrees C>: override all critical trip points
  2526. thermal.nocrt= [HW,ACPI]
  2527. Set to disable actions on ACPI thermal zone
  2528. critical and hot trip points.
  2529. thermal.off= [HW,ACPI]
  2530. 1: disable ACPI thermal control
  2531. thermal.psv= [HW,ACPI]
  2532. -1: disable all passive trip points
  2533. <degrees C>: override all passive trip points to this
  2534. value
  2535. thermal.tzp= [HW,ACPI]
  2536. Specify global default ACPI thermal zone polling rate
  2537. <deci-seconds>: poll all this frequency
  2538. 0: no polling (default)
  2539. threadirqs [KNL]
  2540. Force threading of all interrupt handlers except those
  2541. marked explicitly IRQF_NO_THREAD.
  2542. tmem [KNL,XEN]
  2543. Enable the Transcendent memory driver if built-in.
  2544. tmem.cleancache=0|1 [KNL, XEN]
  2545. Default is on (1). Disable the usage of the cleancache
  2546. API to send anonymous pages to the hypervisor.
  2547. tmem.frontswap=0|1 [KNL, XEN]
  2548. Default is on (1). Disable the usage of the frontswap
  2549. API to send swap pages to the hypervisor. If disabled
  2550. the selfballooning and selfshrinking are force disabled.
  2551. tmem.selfballooning=0|1 [KNL, XEN]
  2552. Default is on (1). Disable the driving of swap pages
  2553. to the hypervisor.
  2554. tmem.selfshrinking=0|1 [KNL, XEN]
  2555. Default is on (1). Partial swapoff that immediately
  2556. transfers pages from Xen hypervisor back to the
  2557. kernel based on different criteria.
  2558. topology= [S390]
  2559. Format: {off | on}
  2560. Specify if the kernel should make use of the cpu
  2561. topology information if the hardware supports this.
  2562. The scheduler will make use of this information and
  2563. e.g. base its process migration decisions on it.
  2564. Default is on.
  2565. tp720= [HW,PS2]
  2566. tpm_suspend_pcr=[HW,TPM]
  2567. Format: integer pcr id
  2568. Specify that at suspend time, the tpm driver
  2569. should extend the specified pcr with zeros,
  2570. as a workaround for some chips which fail to
  2571. flush the last written pcr on TPM_SaveState.
  2572. This will guarantee that all the other pcrs
  2573. are saved.
  2574. trace_buf_size=nn[KMG]
  2575. [FTRACE] will set tracing buffer size.
  2576. trace_event=[event-list]
  2577. [FTRACE] Set and start specified trace events in order
  2578. to facilitate early boot debugging.
  2579. See also Documentation/trace/events.txt
  2580. trace_options=[option-list]
  2581. [FTRACE] Enable or disable tracer options at boot.
  2582. The option-list is a comma delimited list of options
  2583. that can be enabled or disabled just as if you were
  2584. to echo the option name into
  2585. /sys/kernel/debug/tracing/trace_options
  2586. For example, to enable stacktrace option (to dump the
  2587. stack trace of each event), add to the command line:
  2588. trace_options=stacktrace
  2589. See also Documentation/trace/ftrace.txt "trace options"
  2590. section.
  2591. traceoff_on_warning
  2592. [FTRACE] enable this option to disable tracing when a
  2593. warning is hit. This turns off "tracing_on". Tracing can
  2594. be enabled again by echoing '1' into the "tracing_on"
  2595. file located in /sys/kernel/debug/tracing/
  2596. This option is useful, as it disables the trace before
  2597. the WARNING dump is called, which prevents the trace to
  2598. be filled with content caused by the warning output.
  2599. This option can also be set at run time via the sysctl
  2600. option: kernel/traceoff_on_warning
  2601. transparent_hugepage=
  2602. [KNL]
  2603. Format: [always|madvise|never]
  2604. Can be used to control the default behavior of the system
  2605. with respect to transparent hugepages.
  2606. See Documentation/vm/transhuge.txt for more details.
  2607. tsc= Disable clocksource stability checks for TSC.
  2608. Format: <string>
  2609. [x86] reliable: mark tsc clocksource as reliable, this
  2610. disables clocksource verification at runtime, as well
  2611. as the stability checks done at bootup. Used to enable
  2612. high-resolution timer mode on older hardware, and in
  2613. virtualized environment.
  2614. [x86] noirqtime: Do not use TSC to do irq accounting.
  2615. Used to run time disable IRQ_TIME_ACCOUNTING on any
  2616. platforms where RDTSC is slow and this accounting
  2617. can add overhead.
  2618. turbografx.map[2|3]= [HW,JOY]
  2619. TurboGraFX parallel port interface
  2620. Format:
  2621. <port#>,<js1>,<js2>,<js3>,<js4>,<js5>,<js6>,<js7>
  2622. See also Documentation/input/joystick-parport.txt
  2623. udbg-immortal [PPC] When debugging early kernel crashes that
  2624. happen after console_init() and before a proper
  2625. console driver takes over, this boot options might
  2626. help "seeing" what's going on.
  2627. uhash_entries= [KNL,NET]
  2628. Set number of hash buckets for UDP/UDP-Lite connections
  2629. uhci-hcd.ignore_oc=
  2630. [USB] Ignore overcurrent events (default N).
  2631. Some badly-designed motherboards generate lots of
  2632. bogus events, for ports that aren't wired to
  2633. anything. Set this parameter to avoid log spamming.
  2634. Note that genuine overcurrent events won't be
  2635. reported either.
  2636. unknown_nmi_panic
  2637. [X86] Cause panic on unknown NMI.
  2638. usbcore.authorized_default=
  2639. [USB] Default USB device authorization:
  2640. (default -1 = authorized except for wireless USB,
  2641. 0 = not authorized, 1 = authorized)
  2642. usbcore.autosuspend=
  2643. [USB] The autosuspend time delay (in seconds) used
  2644. for newly-detected USB devices (default 2). This
  2645. is the time required before an idle device will be
  2646. autosuspended. Devices for which the delay is set
  2647. to a negative value won't be autosuspended at all.
  2648. usbcore.usbfs_snoop=
  2649. [USB] Set to log all usbfs traffic (default 0 = off).
  2650. usbcore.blinkenlights=
  2651. [USB] Set to cycle leds on hubs (default 0 = off).
  2652. usbcore.old_scheme_first=
  2653. [USB] Start with the old device initialization
  2654. scheme (default 0 = off).
  2655. usbcore.usbfs_memory_mb=
  2656. [USB] Memory limit (in MB) for buffers allocated by
  2657. usbfs (default = 16, 0 = max = 2047).
  2658. usbcore.use_both_schemes=
  2659. [USB] Try the other device initialization scheme
  2660. if the first one fails (default 1 = enabled).
  2661. usbcore.initial_descriptor_timeout=
  2662. [USB] Specifies timeout for the initial 64-byte
  2663. USB_REQ_GET_DESCRIPTOR request in milliseconds
  2664. (default 5000 = 5.0 seconds).
  2665. usbhid.mousepoll=
  2666. [USBHID] The interval which mice are to be polled at.
  2667. usb-storage.delay_use=
  2668. [UMS] The delay in seconds before a new device is
  2669. scanned for Logical Units (default 5).
  2670. usb-storage.quirks=
  2671. [UMS] A list of quirks entries to supplement or
  2672. override the built-in unusual_devs list. List
  2673. entries are separated by commas. Each entry has
  2674. the form VID:PID:Flags where VID and PID are Vendor
  2675. and Product ID values (4-digit hex numbers) and
  2676. Flags is a set of characters, each corresponding
  2677. to a common usb-storage quirk flag as follows:
  2678. a = SANE_SENSE (collect more than 18 bytes
  2679. of sense data);
  2680. b = BAD_SENSE (don't collect more than 18
  2681. bytes of sense data);
  2682. c = FIX_CAPACITY (decrease the reported
  2683. device capacity by one sector);
  2684. d = NO_READ_DISC_INFO (don't use
  2685. READ_DISC_INFO command);
  2686. e = NO_READ_CAPACITY_16 (don't use
  2687. READ_CAPACITY_16 command);
  2688. h = CAPACITY_HEURISTICS (decrease the
  2689. reported device capacity by one
  2690. sector if the number is odd);
  2691. i = IGNORE_DEVICE (don't bind to this
  2692. device);
  2693. l = NOT_LOCKABLE (don't try to lock and
  2694. unlock ejectable media);
  2695. m = MAX_SECTORS_64 (don't transfer more
  2696. than 64 sectors = 32 KB at a time);
  2697. n = INITIAL_READ10 (force a retry of the
  2698. initial READ(10) command);
  2699. o = CAPACITY_OK (accept the capacity
  2700. reported by the device);
  2701. p = WRITE_CACHE (the device cache is ON
  2702. by default);
  2703. r = IGNORE_RESIDUE (the device reports
  2704. bogus residue values);
  2705. s = SINGLE_LUN (the device has only one
  2706. Logical Unit);
  2707. w = NO_WP_DETECT (don't test whether the
  2708. medium is write-protected).
  2709. Example: quirks=0419:aaf5:rl,0421:0433:rc
  2710. user_debug= [KNL,ARM]
  2711. Format: <int>
  2712. See arch/arm/Kconfig.debug help text.
  2713. 1 - undefined instruction events
  2714. 2 - system calls
  2715. 4 - invalid data aborts
  2716. 8 - SIGSEGV faults
  2717. 16 - SIGBUS faults
  2718. Example: user_debug=31
  2719. userpte=
  2720. [X86] Flags controlling user PTE allocations.
  2721. nohigh = do not allocate PTE pages in
  2722. HIGHMEM regardless of setting
  2723. of CONFIG_HIGHPTE.
  2724. vdso= [X86,SH]
  2725. vdso=2: enable compat VDSO (default with COMPAT_VDSO)
  2726. vdso=1: enable VDSO (default)
  2727. vdso=0: disable VDSO mapping
  2728. vdso32= [X86]
  2729. vdso32=2: enable compat VDSO (default with COMPAT_VDSO)
  2730. vdso32=1: enable 32-bit VDSO (default)
  2731. vdso32=0: disable 32-bit VDSO mapping
  2732. vector= [IA-64,SMP]
  2733. vector=percpu: enable percpu vector domain
  2734. video= [FB] Frame buffer configuration
  2735. See Documentation/fb/modedb.txt.
  2736. video.brightness_switch_enabled= [0,1]
  2737. If set to 1, on receiving an ACPI notify event
  2738. generated by hotkey, video driver will adjust brightness
  2739. level and then send out the event to user space through
  2740. the allocated input device; If set to 0, video driver
  2741. will only send out the event without touching backlight
  2742. brightness level.
  2743. default: 1
  2744. virtio_mmio.device=
  2745. [VMMIO] Memory mapped virtio (platform) device.
  2746. <size>@<baseaddr>:<irq>[:<id>]
  2747. where:
  2748. <size> := size (can use standard suffixes
  2749. like K, M and G)
  2750. <baseaddr> := physical base address
  2751. <irq> := interrupt number (as passed to
  2752. request_irq())
  2753. <id> := (optional) platform device id
  2754. example:
  2755. virtio_mmio.device=1K@0x100b0000:48:7
  2756. Can be used multiple times for multiple devices.
  2757. vga= [BOOT,X86-32] Select a particular video mode
  2758. See Documentation/x86/boot.txt and
  2759. Documentation/svga.txt.
  2760. Use vga=ask for menu.
  2761. This is actually a boot loader parameter; the value is
  2762. passed to the kernel using a special protocol.
  2763. vmalloc=nn[KMG] [KNL,BOOT] Forces the vmalloc area to have an exact
  2764. size of <nn>. This can be used to increase the
  2765. minimum size (128MB on x86). It can also be used to
  2766. decrease the size and leave more room for directly
  2767. mapped kernel RAM.
  2768. vmhalt= [KNL,S390] Perform z/VM CP command after system halt.
  2769. Format: <command>
  2770. vmpanic= [KNL,S390] Perform z/VM CP command after kernel panic.
  2771. Format: <command>
  2772. vmpoff= [KNL,S390] Perform z/VM CP command after power off.
  2773. Format: <command>
  2774. vsyscall= [X86-64]
  2775. Controls the behavior of vsyscalls (i.e. calls to
  2776. fixed addresses of 0xffffffffff600x00 from legacy
  2777. code). Most statically-linked binaries and older
  2778. versions of glibc use these calls. Because these
  2779. functions are at fixed addresses, they make nice
  2780. targets for exploits that can control RIP.
  2781. emulate [default] Vsyscalls turn into traps and are
  2782. emulated reasonably safely.
  2783. native Vsyscalls are native syscall instructions.
  2784. This is a little bit faster than trapping
  2785. and makes a few dynamic recompilers work
  2786. better than they would in emulation mode.
  2787. It also makes exploits much easier to write.
  2788. none Vsyscalls don't work at all. This makes
  2789. them quite hard to use for exploits but
  2790. might break your system.
  2791. vt.color= [VT] Default text color.
  2792. Format: 0xYX, X = foreground, Y = background.
  2793. Default: 0x07 = light gray on black.
  2794. vt.cur_default= [VT] Default cursor shape.
  2795. Format: 0xCCBBAA, where AA, BB, and CC are the same as
  2796. the parameters of the <Esc>[?A;B;Cc escape sequence;
  2797. see VGA-softcursor.txt. Default: 2 = underline.
  2798. vt.default_blu= [VT]
  2799. Format: <blue0>,<blue1>,<blue2>,...,<blue15>
  2800. Change the default blue palette of the console.
  2801. This is a 16-member array composed of values
  2802. ranging from 0-255.
  2803. vt.default_grn= [VT]
  2804. Format: <green0>,<green1>,<green2>,...,<green15>
  2805. Change the default green palette of the console.
  2806. This is a 16-member array composed of values
  2807. ranging from 0-255.
  2808. vt.default_red= [VT]
  2809. Format: <red0>,<red1>,<red2>,...,<red15>
  2810. Change the default red palette of the console.
  2811. This is a 16-member array composed of values
  2812. ranging from 0-255.
  2813. vt.default_utf8=
  2814. [VT]
  2815. Format=<0|1>
  2816. Set system-wide default UTF-8 mode for all tty's.
  2817. Default is 1, i.e. UTF-8 mode is enabled for all
  2818. newly opened terminals.
  2819. vt.global_cursor_default=
  2820. [VT]
  2821. Format=<-1|0|1>
  2822. Set system-wide default for whether a cursor
  2823. is shown on new VTs. Default is -1,
  2824. i.e. cursors will be created by default unless
  2825. overridden by individual drivers. 0 will hide
  2826. cursors, 1 will display them.
  2827. vt.italic= [VT] Default color for italic text; 0-15.
  2828. Default: 2 = green.
  2829. vt.underline= [VT] Default color for underlined text; 0-15.
  2830. Default: 3 = cyan.
  2831. watchdog timers [HW,WDT] For information on watchdog timers,
  2832. see Documentation/watchdog/watchdog-parameters.txt
  2833. or other driver-specific files in the
  2834. Documentation/watchdog/ directory.
  2835. workqueue.disable_numa
  2836. By default, all work items queued to unbound
  2837. workqueues are affine to the NUMA nodes they're
  2838. issued on, which results in better behavior in
  2839. general. If NUMA affinity needs to be disabled for
  2840. whatever reason, this option can be used. Note
  2841. that this also can be controlled per-workqueue for
  2842. workqueues visible under /sys/bus/workqueue/.
  2843. workqueue.power_efficient
  2844. Per-cpu workqueues are generally preferred because
  2845. they show better performance thanks to cache
  2846. locality; unfortunately, per-cpu workqueues tend to
  2847. be more power hungry than unbound workqueues.
  2848. Enabling this makes the per-cpu workqueues which
  2849. were observed to contribute significantly to power
  2850. consumption unbound, leading to measurably lower
  2851. power usage at the cost of small performance
  2852. overhead.
  2853. The default value of this parameter is determined by
  2854. the config option CONFIG_WQ_POWER_EFFICIENT_DEFAULT.
  2855. x2apic_phys [X86-64,APIC] Use x2apic physical mode instead of
  2856. default x2apic cluster mode on platforms
  2857. supporting x2apic.
  2858. x86_intel_mid_timer= [X86-32,APBT]
  2859. Choose timer option for x86 Intel MID platform.
  2860. Two valid options are apbt timer only and lapic timer
  2861. plus one apbt timer for broadcast timer.
  2862. x86_intel_mid_timer=apbt_only | lapic_and_apbt
  2863. xen_emul_unplug= [HW,X86,XEN]
  2864. Unplug Xen emulated devices
  2865. Format: [unplug0,][unplug1]
  2866. ide-disks -- unplug primary master IDE devices
  2867. aux-ide-disks -- unplug non-primary-master IDE devices
  2868. nics -- unplug network devices
  2869. all -- unplug all emulated devices (NICs and IDE disks)
  2870. unnecessary -- unplugging emulated devices is
  2871. unnecessary even if the host did not respond to
  2872. the unplug protocol
  2873. never -- do not unplug even if version check succeeds
  2874. xen_nopvspin [X86,XEN]
  2875. Disables the ticketlock slowpath using Xen PV
  2876. optimizations.
  2877. xirc2ps_cs= [NET,PCMCIA]
  2878. Format:
  2879. <irq>,<irq_mask>,<io>,<full_duplex>,<do_sound>,<lockup_hack>[,<irq2>[,<irq3>[,<irq4>]]]
  2880. ______________________________________________________________________
  2881. TODO:
  2882. Add more DRM drivers.