kernel-parameters.txt 121 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504
  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=xen
  714. earlyprintk=serial[,ttySn[,baudrate]]
  715. earlyprintk=serial[,0x...[,baudrate]]
  716. earlyprintk=ttySn[,baudrate]
  717. earlyprintk=dbgp[debugController#]
  718. earlyprintk is useful when the kernel crashes before
  719. the normal console is initialized. It is not enabled by
  720. default because it has some cosmetic problems.
  721. Append ",keep" to not disable it when the real console
  722. takes over.
  723. Only vga or serial or usb debug port at a time.
  724. Currently only ttyS0 and ttyS1 may be specified by
  725. name. Other I/O ports may be explicitly specified
  726. on some architectures (x86 and arm at least) by
  727. replacing ttySn with an I/O port address, like this:
  728. earlyprintk=serial,0x1008,115200
  729. You can find the port for a given device in
  730. /proc/tty/driver/serial:
  731. 2: uart:ST16650V2 port:00001008 irq:18 ...
  732. Interaction with the standard serial driver is not
  733. very good.
  734. The VGA output is eventually overwritten by the real
  735. console.
  736. The xen output can only be used by Xen PV guests.
  737. ekgdboc= [X86,KGDB] Allow early kernel console debugging
  738. ekgdboc=kbd
  739. This is designed to be used in conjunction with
  740. the boot argument: earlyprintk=vga
  741. edd= [EDD]
  742. Format: {"off" | "on" | "skip[mbr]"}
  743. efi_no_storage_paranoia [EFI; X86]
  744. Using this parameter you can use more than 50% of
  745. your efi variable storage. Use this parameter only if
  746. you are really sure that your UEFI does sane gc and
  747. fulfills the spec otherwise your board may brick.
  748. eisa_irq_edge= [PARISC,HW]
  749. See header of drivers/parisc/eisa.c.
  750. elanfreq= [X86-32]
  751. See comment before function elanfreq_setup() in
  752. arch/x86/kernel/cpu/cpufreq/elanfreq.c.
  753. elevator= [IOSCHED]
  754. Format: {"cfq" | "deadline" | "noop"}
  755. See Documentation/block/cfq-iosched.txt and
  756. Documentation/block/deadline-iosched.txt for details.
  757. elfcorehdr=[size[KMG]@]offset[KMG] [IA64,PPC,SH,X86,S390]
  758. Specifies physical address of start of kernel core
  759. image elf header and optionally the size. Generally
  760. kexec loader will pass this option to capture kernel.
  761. See Documentation/kdump/kdump.txt for details.
  762. enable_mtrr_cleanup [X86]
  763. The kernel tries to adjust MTRR layout from continuous
  764. to discrete, to make X server driver able to add WB
  765. entry later. This parameter enables that.
  766. enable_timer_pin_1 [X86]
  767. Enable PIN 1 of APIC timer
  768. Can be useful to work around chipset bugs
  769. (in particular on some ATI chipsets).
  770. The kernel tries to set a reasonable default.
  771. enforcing [SELINUX] Set initial enforcing status.
  772. Format: {"0" | "1"}
  773. See security/selinux/Kconfig help text.
  774. 0 -- permissive (log only, no denials).
  775. 1 -- enforcing (deny and log).
  776. Default value is 0.
  777. Value can be changed at runtime via /selinux/enforce.
  778. erst_disable [ACPI]
  779. Disable Error Record Serialization Table (ERST)
  780. support.
  781. ether= [HW,NET] Ethernet cards parameters
  782. This option is obsoleted by the "netdev=" option, which
  783. has equivalent usage. See its documentation for details.
  784. evm= [EVM]
  785. Format: { "fix" }
  786. Permit 'security.evm' to be updated regardless of
  787. current integrity status.
  788. failslab=
  789. fail_page_alloc=
  790. fail_make_request=[KNL]
  791. General fault injection mechanism.
  792. Format: <interval>,<probability>,<space>,<times>
  793. See also Documentation/fault-injection/.
  794. floppy= [HW]
  795. See Documentation/blockdev/floppy.txt.
  796. force_pal_cache_flush
  797. [IA-64] Avoid check_sal_cache_flush which may hang on
  798. buggy SAL_CACHE_FLUSH implementations. Using this
  799. parameter will force ia64_sal_cache_flush to call
  800. ia64_pal_cache_flush instead of SAL_CACHE_FLUSH.
  801. ftrace=[tracer]
  802. [FTRACE] will set and start the specified tracer
  803. as early as possible in order to facilitate early
  804. boot debugging.
  805. ftrace_dump_on_oops[=orig_cpu]
  806. [FTRACE] will dump the trace buffers on oops.
  807. If no parameter is passed, ftrace will dump
  808. buffers of all CPUs, but if you pass orig_cpu, it will
  809. dump only the buffer of the CPU that triggered the
  810. oops.
  811. ftrace_filter=[function-list]
  812. [FTRACE] Limit the functions traced by the function
  813. tracer at boot up. function-list is a comma separated
  814. list of functions. This list can be changed at run
  815. time by the set_ftrace_filter file in the debugfs
  816. tracing directory.
  817. ftrace_notrace=[function-list]
  818. [FTRACE] Do not trace the functions specified in
  819. function-list. This list can be changed at run time
  820. by the set_ftrace_notrace file in the debugfs
  821. tracing directory.
  822. ftrace_graph_filter=[function-list]
  823. [FTRACE] Limit the top level callers functions traced
  824. by the function graph tracer at boot up.
  825. function-list is a comma separated list of functions
  826. that can be changed at run time by the
  827. set_graph_function file in the debugfs tracing directory.
  828. gamecon.map[2|3]=
  829. [HW,JOY] Multisystem joystick and NES/SNES/PSX pad
  830. support via parallel port (up to 5 devices per port)
  831. Format: <port#>,<pad1>,<pad2>,<pad3>,<pad4>,<pad5>
  832. See also Documentation/input/joystick-parport.txt
  833. gamma= [HW,DRM]
  834. gart_fix_e820= [X86_64] disable the fix e820 for K8 GART
  835. Format: off | on
  836. default: on
  837. gcov_persist= [GCOV] When non-zero (default), profiling data for
  838. kernel modules is saved and remains accessible via
  839. debugfs, even when the module is unloaded/reloaded.
  840. When zero, profiling data is discarded and associated
  841. debugfs files are removed at module unload time.
  842. gpt [EFI] Forces disk with valid GPT signature but
  843. invalid Protective MBR to be treated as GPT.
  844. grcan.enable0= [HW] Configuration of physical interface 0. Determines
  845. the "Enable 0" bit of the configuration register.
  846. Format: 0 | 1
  847. Default: 0
  848. grcan.enable1= [HW] Configuration of physical interface 1. Determines
  849. the "Enable 0" bit of the configuration register.
  850. Format: 0 | 1
  851. Default: 0
  852. grcan.select= [HW] Select which physical interface to use.
  853. Format: 0 | 1
  854. Default: 0
  855. grcan.txsize= [HW] Sets the size of the tx buffer.
  856. Format: <unsigned int> such that (txsize & ~0x1fffc0) == 0.
  857. Default: 1024
  858. grcan.rxsize= [HW] Sets the size of the rx buffer.
  859. Format: <unsigned int> such that (rxsize & ~0x1fffc0) == 0.
  860. Default: 1024
  861. hashdist= [KNL,NUMA] Large hashes allocated during boot
  862. are distributed across NUMA nodes. Defaults on
  863. for 64-bit NUMA, off otherwise.
  864. Format: 0 | 1 (for off | on)
  865. hcl= [IA-64] SGI's Hardware Graph compatibility layer
  866. hd= [EIDE] (E)IDE hard drive subsystem geometry
  867. Format: <cyl>,<head>,<sect>
  868. hest_disable [ACPI]
  869. Disable Hardware Error Source Table (HEST) support;
  870. corresponding firmware-first mode error processing
  871. logic will be disabled.
  872. highmem=nn[KMG] [KNL,BOOT] forces the highmem zone to have an exact
  873. size of <nn>. This works even on boxes that have no
  874. highmem otherwise. This also works to reduce highmem
  875. size on bigger boxes.
  876. highres= [KNL] Enable/disable high resolution timer mode.
  877. Valid parameters: "on", "off"
  878. Default: "on"
  879. hisax= [HW,ISDN]
  880. See Documentation/isdn/README.HiSax.
  881. hlt [BUGS=ARM,SH]
  882. hpet= [X86-32,HPET] option to control HPET usage
  883. Format: { enable (default) | disable | force |
  884. verbose }
  885. disable: disable HPET and use PIT instead
  886. force: allow force enabled of undocumented chips (ICH4,
  887. VIA, nVidia)
  888. verbose: show contents of HPET registers during setup
  889. hugepages= [HW,X86-32,IA-64] HugeTLB pages to allocate at boot.
  890. hugepagesz= [HW,IA-64,PPC,X86-64] The size of the HugeTLB pages.
  891. On x86-64 and powerpc, this option can be specified
  892. multiple times interleaved with hugepages= to reserve
  893. huge pages of different sizes. Valid pages sizes on
  894. x86-64 are 2M (when the CPU supports "pse") and 1G
  895. (when the CPU supports the "pdpe1gb" cpuinfo flag)
  896. Note that 1GB pages can only be allocated at boot time
  897. using hugepages= and not freed afterwards.
  898. hvc_iucv= [S390] Number of z/VM IUCV hypervisor console (HVC)
  899. terminal devices. Valid values: 0..8
  900. hvc_iucv_allow= [S390] Comma-separated list of z/VM user IDs.
  901. If specified, z/VM IUCV HVC accepts connections
  902. from listed z/VM user IDs only.
  903. hwthread_map= [METAG] Comma-separated list of Linux cpu id to
  904. hardware thread id mappings.
  905. Format: <cpu>:<hwthread>
  906. keep_bootcon [KNL]
  907. Do not unregister boot console at start. This is only
  908. useful for debugging when something happens in the window
  909. between unregistering the boot console and initializing
  910. the real console.
  911. i2c_bus= [HW] Override the default board specific I2C bus speed
  912. or register an additional I2C bus that is not
  913. registered from board initialization code.
  914. Format:
  915. <bus_id>,<clkrate>
  916. i8042.debug [HW] Toggle i8042 debug mode
  917. i8042.direct [HW] Put keyboard port into non-translated mode
  918. i8042.dumbkbd [HW] Pretend that controller can only read data from
  919. keyboard and cannot control its state
  920. (Don't attempt to blink the leds)
  921. i8042.noaux [HW] Don't check for auxiliary (== mouse) port
  922. i8042.nokbd [HW] Don't check/create keyboard port
  923. i8042.noloop [HW] Disable the AUX Loopback command while probing
  924. for the AUX port
  925. i8042.nomux [HW] Don't check presence of an active multiplexing
  926. controller
  927. i8042.nopnp [HW] Don't use ACPIPnP / PnPBIOS to discover KBD/AUX
  928. controllers
  929. i8042.notimeout [HW] Ignore timeout condition signalled by controller
  930. i8042.reset [HW] Reset the controller during init and cleanup
  931. i8042.unlock [HW] Unlock (ignore) the keylock
  932. i810= [HW,DRM]
  933. i8k.ignore_dmi [HW] Continue probing hardware even if DMI data
  934. indicates that the driver is running on unsupported
  935. hardware.
  936. i8k.force [HW] Activate i8k driver even if SMM BIOS signature
  937. does not match list of supported models.
  938. i8k.power_status
  939. [HW] Report power status in /proc/i8k
  940. (disabled by default)
  941. i8k.restricted [HW] Allow controlling fans only if SYS_ADMIN
  942. capability is set.
  943. i915.invert_brightness=
  944. [DRM] Invert the sense of the variable that is used to
  945. set the brightness of the panel backlight. Normally a
  946. brightness value of 0 indicates backlight switched off,
  947. and the maximum of the brightness value sets the backlight
  948. to maximum brightness. If this parameter is set to 0
  949. (default) and the machine requires it, or this parameter
  950. is set to 1, a brightness value of 0 sets the backlight
  951. to maximum brightness, and the maximum of the brightness
  952. value switches the backlight off.
  953. -1 -- never invert brightness
  954. 0 -- machine default
  955. 1 -- force brightness inversion
  956. icn= [HW,ISDN]
  957. Format: <io>[,<membase>[,<icn_id>[,<icn_id2>]]]
  958. ide-core.nodma= [HW] (E)IDE subsystem
  959. Format: =0.0 to prevent dma on hda, =0.1 hdb =1.0 hdc
  960. .vlb_clock .pci_clock .noflush .nohpa .noprobe .nowerr
  961. .cdrom .chs .ignore_cable are additional options
  962. See Documentation/ide/ide.txt.
  963. ide-pci-generic.all-generic-ide [HW] (E)IDE subsystem
  964. Claim all unknown PCI IDE storage controllers.
  965. idle= [X86]
  966. Format: idle=poll, idle=halt, idle=nomwait
  967. Poll forces a polling idle loop that can slightly
  968. improve the performance of waking up a idle CPU, but
  969. will use a lot of power and make the system run hot.
  970. Not recommended.
  971. idle=halt: Halt is forced to be used for CPU idle.
  972. In such case C2/C3 won't be used again.
  973. idle=nomwait: Disable mwait for CPU C-states
  974. ignore_loglevel [KNL]
  975. Ignore loglevel setting - this will print /all/
  976. kernel messages to the console. Useful for debugging.
  977. We also add it as printk module parameter, so users
  978. could change it dynamically, usually by
  979. /sys/module/printk/parameters/ignore_loglevel.
  980. ihash_entries= [KNL]
  981. Set number of hash buckets for inode cache.
  982. ima_appraise= [IMA] appraise integrity measurements
  983. Format: { "off" | "enforce" | "fix" }
  984. default: "enforce"
  985. ima_appraise_tcb [IMA]
  986. The builtin appraise policy appraises all files
  987. owned by uid=0.
  988. ima_hash= [IMA]
  989. Format: { "sha1" | "md5" }
  990. default: "sha1"
  991. ima_tcb [IMA]
  992. Load a policy which meets the needs of the Trusted
  993. Computing Base. This means IMA will measure all
  994. programs exec'd, files mmap'd for exec, and all files
  995. opened for read by uid=0.
  996. init= [KNL]
  997. Format: <full_path>
  998. Run specified binary instead of /sbin/init as init
  999. process.
  1000. initcall_debug [KNL] Trace initcalls as they are executed. Useful
  1001. for working out where the kernel is dying during
  1002. startup.
  1003. initrd= [BOOT] Specify the location of the initial ramdisk
  1004. inport.irq= [HW] Inport (ATI XL and Microsoft) busmouse driver
  1005. Format: <irq>
  1006. int_pln_enable [x86] Enable power limit notification interrupt
  1007. integrity_audit=[IMA]
  1008. Format: { "0" | "1" }
  1009. 0 -- basic integrity auditing messages. (Default)
  1010. 1 -- additional integrity auditing messages.
  1011. intel_iommu= [DMAR] Intel IOMMU driver (DMAR) option
  1012. on
  1013. Enable intel iommu driver.
  1014. off
  1015. Disable intel iommu driver.
  1016. igfx_off [Default Off]
  1017. By default, gfx is mapped as normal device. If a gfx
  1018. device has a dedicated DMAR unit, the DMAR unit is
  1019. bypassed by not enabling DMAR with this option. In
  1020. this case, gfx device will use physical address for
  1021. DMA.
  1022. forcedac [x86_64]
  1023. With this option iommu will not optimize to look
  1024. for io virtual address below 32-bit forcing dual
  1025. address cycle on pci bus for cards supporting greater
  1026. than 32-bit addressing. The default is to look
  1027. for translation below 32-bit and if not available
  1028. then look in the higher range.
  1029. strict [Default Off]
  1030. With this option on every unmap_single operation will
  1031. result in a hardware IOTLB flush operation as opposed
  1032. to batching them for performance.
  1033. sp_off [Default Off]
  1034. By default, super page will be supported if Intel IOMMU
  1035. has the capability. With this option, super page will
  1036. not be supported.
  1037. intel_idle.max_cstate= [KNL,HW,ACPI,X86]
  1038. 0 disables intel_idle and fall back on acpi_idle.
  1039. 1 to 6 specify maximum depth of C-state.
  1040. intel_pstate= [X86]
  1041. disable
  1042. Do not enable intel_pstate as the default
  1043. scaling driver for the supported processors
  1044. intremap= [X86-64, Intel-IOMMU]
  1045. on enable Interrupt Remapping (default)
  1046. off disable Interrupt Remapping
  1047. nosid disable Source ID checking
  1048. no_x2apic_optout
  1049. BIOS x2APIC opt-out request will be ignored
  1050. iomem= Disable strict checking of access to MMIO memory
  1051. strict regions from userspace.
  1052. relaxed
  1053. iommu= [x86]
  1054. off
  1055. force
  1056. noforce
  1057. biomerge
  1058. panic
  1059. nopanic
  1060. merge
  1061. nomerge
  1062. forcesac
  1063. soft
  1064. pt [x86, IA-64]
  1065. io7= [HW] IO7 for Marvel based alpha systems
  1066. See comment before marvel_specify_io7 in
  1067. arch/alpha/kernel/core_marvel.c.
  1068. io_delay= [X86] I/O delay method
  1069. 0x80
  1070. Standard port 0x80 based delay
  1071. 0xed
  1072. Alternate port 0xed based delay (needed on some systems)
  1073. udelay
  1074. Simple two microseconds delay
  1075. none
  1076. No delay
  1077. ip= [IP_PNP]
  1078. See Documentation/filesystems/nfs/nfsroot.txt.
  1079. ip2= [HW] Set IO/IRQ pairs for up to 4 IntelliPort boards
  1080. See comment before ip2_setup() in
  1081. drivers/char/ip2/ip2base.c.
  1082. irqfixup [HW]
  1083. When an interrupt is not handled search all handlers
  1084. for it. Intended to get systems with badly broken
  1085. firmware running.
  1086. irqpoll [HW]
  1087. When an interrupt is not handled search all handlers
  1088. for it. Also check all handlers each timer
  1089. interrupt. Intended to get systems with badly broken
  1090. firmware running.
  1091. isapnp= [ISAPNP]
  1092. Format: <RDP>,<reset>,<pci_scan>,<verbosity>
  1093. isolcpus= [KNL,SMP] Isolate CPUs from the general scheduler.
  1094. Format:
  1095. <cpu number>,...,<cpu number>
  1096. or
  1097. <cpu number>-<cpu number>
  1098. (must be a positive range in ascending order)
  1099. or a mixture
  1100. <cpu number>,...,<cpu number>-<cpu number>
  1101. This option can be used to specify one or more CPUs
  1102. to isolate from the general SMP balancing and scheduling
  1103. algorithms. You can move a process onto or off an
  1104. "isolated" CPU via the CPU affinity syscalls or cpuset.
  1105. <cpu number> begins at 0 and the maximum value is
  1106. "number of CPUs in system - 1".
  1107. This option is the preferred way to isolate CPUs. The
  1108. alternative -- manually setting the CPU mask of all
  1109. tasks in the system -- can cause problems and
  1110. suboptimal load balancer performance.
  1111. iucv= [HW,NET]
  1112. ivrs_ioapic [HW,X86_64]
  1113. Provide an override to the IOAPIC-ID<->DEVICE-ID
  1114. mapping provided in the IVRS ACPI table. For
  1115. example, to map IOAPIC-ID decimal 10 to
  1116. PCI device 00:14.0 write the parameter as:
  1117. ivrs_ioapic[10]=00:14.0
  1118. ivrs_hpet [HW,X86_64]
  1119. Provide an override to the HPET-ID<->DEVICE-ID
  1120. mapping provided in the IVRS ACPI table. For
  1121. example, to map HPET-ID decimal 0 to
  1122. PCI device 00:14.0 write the parameter as:
  1123. ivrs_hpet[0]=00:14.0
  1124. js= [HW,JOY] Analog joystick
  1125. See Documentation/input/joystick.txt.
  1126. keepinitrd [HW,ARM]
  1127. kernelcore=nn[KMG] [KNL,X86,IA-64,PPC] This parameter
  1128. specifies the amount of memory usable by the kernel
  1129. for non-movable allocations. The requested amount is
  1130. spread evenly throughout all nodes in the system. The
  1131. remaining memory in each node is used for Movable
  1132. pages. In the event, a node is too small to have both
  1133. kernelcore and Movable pages, kernelcore pages will
  1134. take priority and other nodes will have a larger number
  1135. of Movable pages. The Movable zone is used for the
  1136. allocation of pages that may be reclaimed or moved
  1137. by the page migration subsystem. This means that
  1138. HugeTLB pages may not be allocated from this zone.
  1139. Note that allocations like PTEs-from-HighMem still
  1140. use the HighMem zone if it exists, and the Normal
  1141. zone if it does not.
  1142. kgdbdbgp= [KGDB,HW] kgdb over EHCI usb debug port.
  1143. Format: <Controller#>[,poll interval]
  1144. The controller # is the number of the ehci usb debug
  1145. port as it is probed via PCI. The poll interval is
  1146. optional and is the number seconds in between
  1147. each poll cycle to the debug port in case you need
  1148. the functionality for interrupting the kernel with
  1149. gdb or control-c on the dbgp connection. When
  1150. not using this parameter you use sysrq-g to break into
  1151. the kernel debugger.
  1152. kgdboc= [KGDB,HW] kgdb over consoles.
  1153. Requires a tty driver that supports console polling,
  1154. or a supported polling keyboard driver (non-usb).
  1155. Serial only format: <serial_device>[,baud]
  1156. keyboard only format: kbd
  1157. keyboard and serial format: kbd,<serial_device>[,baud]
  1158. Optional Kernel mode setting:
  1159. kms, kbd format: kms,kbd
  1160. kms, kbd and serial format: kms,kbd,<ser_dev>[,baud]
  1161. kgdbwait [KGDB] Stop kernel execution and enter the
  1162. kernel debugger at the earliest opportunity.
  1163. kmac= [MIPS] korina ethernet MAC address.
  1164. Configure the RouterBoard 532 series on-chip
  1165. Ethernet adapter MAC address.
  1166. kmemleak= [KNL] Boot-time kmemleak enable/disable
  1167. Valid arguments: on, off
  1168. Default: on
  1169. kstack=N [X86] Print N words from the kernel stack
  1170. in oops dumps.
  1171. kvm.ignore_msrs=[KVM] Ignore guest accesses to unhandled MSRs.
  1172. Default is 0 (don't ignore, but inject #GP)
  1173. kvm.mmu_audit= [KVM] This is a R/W parameter which allows audit
  1174. KVM MMU at runtime.
  1175. Default is 0 (off)
  1176. kvm-amd.nested= [KVM,AMD] Allow nested virtualization in KVM/SVM.
  1177. Default is 1 (enabled)
  1178. kvm-amd.npt= [KVM,AMD] Disable nested paging (virtualized MMU)
  1179. for all guests.
  1180. Default is 1 (enabled) if in 64-bit or 32-bit PAE mode.
  1181. kvm-intel.ept= [KVM,Intel] Disable extended page tables
  1182. (virtualized MMU) support on capable Intel chips.
  1183. Default is 1 (enabled)
  1184. kvm-intel.emulate_invalid_guest_state=
  1185. [KVM,Intel] Enable emulation of invalid guest states
  1186. Default is 0 (disabled)
  1187. kvm-intel.flexpriority=
  1188. [KVM,Intel] Disable FlexPriority feature (TPR shadow).
  1189. Default is 1 (enabled)
  1190. kvm-intel.nested=
  1191. [KVM,Intel] Enable VMX nesting (nVMX).
  1192. Default is 0 (disabled)
  1193. kvm-intel.unrestricted_guest=
  1194. [KVM,Intel] Disable unrestricted guest feature
  1195. (virtualized real and unpaged mode) on capable
  1196. Intel chips. Default is 1 (enabled)
  1197. kvm-intel.vpid= [KVM,Intel] Disable Virtual Processor Identification
  1198. feature (tagged TLBs) on capable Intel chips.
  1199. Default is 1 (enabled)
  1200. l2cr= [PPC]
  1201. l3cr= [PPC]
  1202. lapic [X86-32,APIC] Enable the local APIC even if BIOS
  1203. disabled it.
  1204. lapic= [x86,APIC] "notscdeadline" Do not use TSC deadline
  1205. value for LAPIC timer one-shot implementation. Default
  1206. back to the programmable timer unit in the LAPIC.
  1207. lapic_timer_c2_ok [X86,APIC] trust the local apic timer
  1208. in C2 power state.
  1209. libata.dma= [LIBATA] DMA control
  1210. libata.dma=0 Disable all PATA and SATA DMA
  1211. libata.dma=1 PATA and SATA Disk DMA only
  1212. libata.dma=2 ATAPI (CDROM) DMA only
  1213. libata.dma=4 Compact Flash DMA only
  1214. Combinations also work, so libata.dma=3 enables DMA
  1215. for disks and CDROMs, but not CFs.
  1216. libata.ignore_hpa= [LIBATA] Ignore HPA limit
  1217. libata.ignore_hpa=0 keep BIOS limits (default)
  1218. libata.ignore_hpa=1 ignore limits, using full disk
  1219. libata.noacpi [LIBATA] Disables use of ACPI in libata suspend/resume
  1220. when set.
  1221. Format: <int>
  1222. libata.force= [LIBATA] Force configurations. The format is comma
  1223. separated list of "[ID:]VAL" where ID is
  1224. PORT[.DEVICE]. PORT and DEVICE are decimal numbers
  1225. matching port, link or device. Basically, it matches
  1226. the ATA ID string printed on console by libata. If
  1227. the whole ID part is omitted, the last PORT and DEVICE
  1228. values are used. If ID hasn't been specified yet, the
  1229. configuration applies to all ports, links and devices.
  1230. If only DEVICE is omitted, the parameter applies to
  1231. the port and all links and devices behind it. DEVICE
  1232. number of 0 either selects the first device or the
  1233. first fan-out link behind PMP device. It does not
  1234. select the host link. DEVICE number of 15 selects the
  1235. host link and device attached to it.
  1236. The VAL specifies the configuration to force. As long
  1237. as there's no ambiguity shortcut notation is allowed.
  1238. For example, both 1.5 and 1.5G would work for 1.5Gbps.
  1239. The following configurations can be forced.
  1240. * Cable type: 40c, 80c, short40c, unk, ign or sata.
  1241. Any ID with matching PORT is used.
  1242. * SATA link speed limit: 1.5Gbps or 3.0Gbps.
  1243. * Transfer mode: pio[0-7], mwdma[0-4] and udma[0-7].
  1244. udma[/][16,25,33,44,66,100,133] notation is also
  1245. allowed.
  1246. * [no]ncq: Turn on or off NCQ.
  1247. * nohrst, nosrst, norst: suppress hard, soft
  1248. and both resets.
  1249. * rstonce: only attempt one reset during
  1250. hot-unplug link recovery
  1251. * dump_id: dump IDENTIFY data.
  1252. * atapi_dmadir: Enable ATAPI DMADIR bridge support
  1253. If there are multiple matching configurations changing
  1254. the same attribute, the last one is used.
  1255. memblock=debug [KNL] Enable memblock debug messages.
  1256. load_ramdisk= [RAM] List of ramdisks to load from floppy
  1257. See Documentation/blockdev/ramdisk.txt.
  1258. lockd.nlm_grace_period=P [NFS] Assign grace period.
  1259. Format: <integer>
  1260. lockd.nlm_tcpport=N [NFS] Assign TCP port.
  1261. Format: <integer>
  1262. lockd.nlm_timeout=T [NFS] Assign timeout value.
  1263. Format: <integer>
  1264. lockd.nlm_udpport=M [NFS] Assign UDP port.
  1265. Format: <integer>
  1266. logibm.irq= [HW,MOUSE] Logitech Bus Mouse Driver
  1267. Format: <irq>
  1268. loglevel= All Kernel Messages with a loglevel smaller than the
  1269. console loglevel will be printed to the console. It can
  1270. also be changed with klogd or other programs. The
  1271. loglevels are defined as follows:
  1272. 0 (KERN_EMERG) system is unusable
  1273. 1 (KERN_ALERT) action must be taken immediately
  1274. 2 (KERN_CRIT) critical conditions
  1275. 3 (KERN_ERR) error conditions
  1276. 4 (KERN_WARNING) warning conditions
  1277. 5 (KERN_NOTICE) normal but significant condition
  1278. 6 (KERN_INFO) informational
  1279. 7 (KERN_DEBUG) debug-level messages
  1280. log_buf_len=n[KMG] Sets the size of the printk ring buffer,
  1281. in bytes. n must be a power of two. The default
  1282. size is set in the kernel config file.
  1283. logo.nologo [FB] Disables display of the built-in Linux logo.
  1284. This may be used to provide more screen space for
  1285. kernel log messages and is useful when debugging
  1286. kernel boot problems.
  1287. lp=0 [LP] Specify parallel ports to use, e.g,
  1288. lp=port[,port...] lp=none,parport0 (lp0 not configured, lp1 uses
  1289. lp=reset first parallel port). 'lp=0' disables the
  1290. lp=auto printer driver. 'lp=reset' (which can be
  1291. specified in addition to the ports) causes
  1292. attached printers to be reset. Using
  1293. lp=port1,port2,... specifies the parallel ports
  1294. to associate lp devices with, starting with
  1295. lp0. A port specification may be 'none' to skip
  1296. that lp device, or a parport name such as
  1297. 'parport0'. Specifying 'lp=auto' instead of a
  1298. port specification list means that device IDs
  1299. from each port should be examined, to see if
  1300. an IEEE 1284-compliant printer is attached; if
  1301. so, the driver will manage that printer.
  1302. See also header of drivers/char/lp.c.
  1303. lpj=n [KNL]
  1304. Sets loops_per_jiffy to given constant, thus avoiding
  1305. time-consuming boot-time autodetection (up to 250 ms per
  1306. CPU). 0 enables autodetection (default). To determine
  1307. the correct value for your kernel, boot with normal
  1308. autodetection and see what value is printed. Note that
  1309. on SMP systems the preset will be applied to all CPUs,
  1310. which is likely to cause problems if your CPUs need
  1311. significantly divergent settings. An incorrect value
  1312. will cause delays in the kernel to be wrong, leading to
  1313. unpredictable I/O errors and other breakage. Although
  1314. unlikely, in the extreme case this might damage your
  1315. hardware.
  1316. ltpc= [NET]
  1317. Format: <io>,<irq>,<dma>
  1318. machvec= [IA-64] Force the use of a particular machine-vector
  1319. (machvec) in a generic kernel.
  1320. Example: machvec=hpzx1_swiotlb
  1321. machtype= [Loongson] Share the same kernel image file between different
  1322. yeeloong laptop.
  1323. Example: machtype=lemote-yeeloong-2f-7inch
  1324. max_addr=nn[KMG] [KNL,BOOT,ia64] All physical memory greater
  1325. than or equal to this physical address is ignored.
  1326. maxcpus= [SMP] Maximum number of processors that an SMP kernel
  1327. should make use of. maxcpus=n : n >= 0 limits the
  1328. kernel to using 'n' processors. n=0 is a special case,
  1329. it is equivalent to "nosmp", which also disables
  1330. the IO APIC.
  1331. max_loop= [LOOP] The number of loop block devices that get
  1332. (loop.max_loop) unconditionally pre-created at init time. The default
  1333. number is configured by BLK_DEV_LOOP_MIN_COUNT. Instead
  1334. of statically allocating a predefined number, loop
  1335. devices can be requested on-demand with the
  1336. /dev/loop-control interface.
  1337. mce [X86-32] Machine Check Exception
  1338. mce=option [X86-64] See Documentation/x86/x86_64/boot-options.txt
  1339. md= [HW] RAID subsystems devices and level
  1340. See Documentation/md.txt.
  1341. mdacon= [MDA]
  1342. Format: <first>,<last>
  1343. Specifies range of consoles to be captured by the MDA.
  1344. mem=nn[KMG] [KNL,BOOT] Force usage of a specific amount of memory
  1345. Amount of memory to be used when the kernel is not able
  1346. to see the whole system memory or for test.
  1347. [X86] Work as limiting max address. Use together
  1348. with memmap= to avoid physical address space collisions.
  1349. Without memmap= PCI devices could be placed at addresses
  1350. belonging to unused RAM.
  1351. mem=nopentium [BUGS=X86-32] Disable usage of 4MB pages for kernel
  1352. memory.
  1353. memchunk=nn[KMG]
  1354. [KNL,SH] Allow user to override the default size for
  1355. per-device physically contiguous DMA buffers.
  1356. memmap=exactmap [KNL,X86] Enable setting of an exact
  1357. E820 memory map, as specified by the user.
  1358. Such memmap=exactmap lines can be constructed based on
  1359. BIOS output or other requirements. See the memmap=nn@ss
  1360. option description.
  1361. memmap=nn[KMG]@ss[KMG]
  1362. [KNL] Force usage of a specific region of memory
  1363. Region of memory to be used, from ss to ss+nn.
  1364. memmap=nn[KMG]#ss[KMG]
  1365. [KNL,ACPI] Mark specific memory as ACPI data.
  1366. Region of memory to be used, from ss to ss+nn.
  1367. memmap=nn[KMG]$ss[KMG]
  1368. [KNL,ACPI] Mark specific memory as reserved.
  1369. Region of memory to be used, from ss to ss+nn.
  1370. Example: Exclude memory from 0x18690000-0x1869ffff
  1371. memmap=64K$0x18690000
  1372. or
  1373. memmap=0x10000$0x18690000
  1374. memory_corruption_check=0/1 [X86]
  1375. Some BIOSes seem to corrupt the first 64k of
  1376. memory when doing things like suspend/resume.
  1377. Setting this option will scan the memory
  1378. looking for corruption. Enabling this will
  1379. both detect corruption and prevent the kernel
  1380. from using the memory being corrupted.
  1381. However, its intended as a diagnostic tool; if
  1382. repeatable BIOS-originated corruption always
  1383. affects the same memory, you can use memmap=
  1384. to prevent the kernel from using that memory.
  1385. memory_corruption_check_size=size [X86]
  1386. By default it checks for corruption in the low
  1387. 64k, making this memory unavailable for normal
  1388. use. Use this parameter to scan for
  1389. corruption in more or less memory.
  1390. memory_corruption_check_period=seconds [X86]
  1391. By default it checks for corruption every 60
  1392. seconds. Use this parameter to check at some
  1393. other rate. 0 disables periodic checking.
  1394. memtest= [KNL,X86] Enable memtest
  1395. Format: <integer>
  1396. default : 0 <disable>
  1397. Specifies the number of memtest passes to be
  1398. performed. Each pass selects another test
  1399. pattern from a given set of patterns. Memtest
  1400. fills the memory with this pattern, validates
  1401. memory contents and reserves bad memory
  1402. regions that are detected.
  1403. meye.*= [HW] Set MotionEye Camera parameters
  1404. See Documentation/video4linux/meye.txt.
  1405. mfgpt_irq= [IA-32] Specify the IRQ to use for the
  1406. Multi-Function General Purpose Timers on AMD Geode
  1407. platforms.
  1408. mfgptfix [X86-32] Fix MFGPT timers on AMD Geode platforms when
  1409. the BIOS has incorrectly applied a workaround. TinyBIOS
  1410. version 0.98 is known to be affected, 0.99 fixes the
  1411. problem by letting the user disable the workaround.
  1412. mga= [HW,DRM]
  1413. min_addr=nn[KMG] [KNL,BOOT,ia64] All physical memory below this
  1414. physical address is ignored.
  1415. mini2440= [ARM,HW,KNL]
  1416. Format:[0..2][b][c][t]
  1417. Default: "0tb"
  1418. MINI2440 configuration specification:
  1419. 0 - The attached screen is the 3.5" TFT
  1420. 1 - The attached screen is the 7" TFT
  1421. 2 - The VGA Shield is attached (1024x768)
  1422. Leaving out the screen size parameter will not load
  1423. the TFT driver, and the framebuffer will be left
  1424. unconfigured.
  1425. b - Enable backlight. The TFT backlight pin will be
  1426. linked to the kernel VESA blanking code and a GPIO
  1427. LED. This parameter is not necessary when using the
  1428. VGA shield.
  1429. c - Enable the s3c camera interface.
  1430. t - Reserved for enabling touchscreen support. The
  1431. touchscreen support is not enabled in the mainstream
  1432. kernel as of 2.6.30, a preliminary port can be found
  1433. in the "bleeding edge" mini2440 support kernel at
  1434. http://repo.or.cz/w/linux-2.6/mini2440.git
  1435. mminit_loglevel=
  1436. [KNL] When CONFIG_DEBUG_MEMORY_INIT is set, this
  1437. parameter allows control of the logging verbosity for
  1438. the additional memory initialisation checks. A value
  1439. of 0 disables mminit logging and a level of 4 will
  1440. log everything. Information is printed at KERN_DEBUG
  1441. so loglevel=8 may also need to be specified.
  1442. module.sig_enforce
  1443. [KNL] When CONFIG_MODULE_SIG is set, this means that
  1444. modules without (valid) signatures will fail to load.
  1445. Note that if CONFIG_MODULE_SIG_FORCE is set, that
  1446. is always true, so this option does nothing.
  1447. mousedev.tap_time=
  1448. [MOUSE] Maximum time between finger touching and
  1449. leaving touchpad surface for touch to be considered
  1450. a tap and be reported as a left button click (for
  1451. touchpads working in absolute mode only).
  1452. Format: <msecs>
  1453. mousedev.xres= [MOUSE] Horizontal screen resolution, used for devices
  1454. reporting absolute coordinates, such as tablets
  1455. mousedev.yres= [MOUSE] Vertical screen resolution, used for devices
  1456. reporting absolute coordinates, such as tablets
  1457. movablecore=nn[KMG] [KNL,X86,IA-64,PPC] This parameter
  1458. is similar to kernelcore except it specifies the
  1459. amount of memory used for migratable allocations.
  1460. If both kernelcore and movablecore is specified,
  1461. then kernelcore will be at *least* the specified
  1462. value but may be more. If movablecore on its own
  1463. is specified, the administrator must be careful
  1464. that the amount of memory usable for all allocations
  1465. is not too small.
  1466. MTD_Partition= [MTD]
  1467. Format: <name>,<region-number>,<size>,<offset>
  1468. MTD_Region= [MTD] Format:
  1469. <name>,<region-number>[,<base>,<size>,<buswidth>,<altbuswidth>]
  1470. mtdparts= [MTD]
  1471. See drivers/mtd/cmdlinepart.c.
  1472. multitce=off [PPC] This parameter disables the use of the pSeries
  1473. firmware feature for updating multiple TCE entries
  1474. at a time.
  1475. onenand.bdry= [HW,MTD] Flex-OneNAND Boundary Configuration
  1476. Format: [die0_boundary][,die0_lock][,die1_boundary][,die1_lock]
  1477. boundary - index of last SLC block on Flex-OneNAND.
  1478. The remaining blocks are configured as MLC blocks.
  1479. lock - Configure if Flex-OneNAND boundary should be locked.
  1480. Once locked, the boundary cannot be changed.
  1481. 1 indicates lock status, 0 indicates unlock status.
  1482. mtdset= [ARM]
  1483. ARM/S3C2412 JIVE boot control
  1484. See arch/arm/mach-s3c2412/mach-jive.c
  1485. mtouchusb.raw_coordinates=
  1486. [HW] Make the MicroTouch USB driver use raw coordinates
  1487. ('y', default) or cooked coordinates ('n')
  1488. mtrr_chunk_size=nn[KMG] [X86]
  1489. used for mtrr cleanup. It is largest continuous chunk
  1490. that could hold holes aka. UC entries.
  1491. mtrr_gran_size=nn[KMG] [X86]
  1492. Used for mtrr cleanup. It is granularity of mtrr block.
  1493. Default is 1.
  1494. Large value could prevent small alignment from
  1495. using up MTRRs.
  1496. mtrr_spare_reg_nr=n [X86]
  1497. Format: <integer>
  1498. Range: 0,7 : spare reg number
  1499. Default : 1
  1500. Used for mtrr cleanup. It is spare mtrr entries number.
  1501. Set to 2 or more if your graphical card needs more.
  1502. n2= [NET] SDL Inc. RISCom/N2 synchronous serial card
  1503. netdev= [NET] Network devices parameters
  1504. Format: <irq>,<io>,<mem_start>,<mem_end>,<name>
  1505. Note that mem_start is often overloaded to mean
  1506. something different and driver-specific.
  1507. This usage is only documented in each driver source
  1508. file if at all.
  1509. nf_conntrack.acct=
  1510. [NETFILTER] Enable connection tracking flow accounting
  1511. 0 to disable accounting
  1512. 1 to enable accounting
  1513. Default value is 0.
  1514. nfsaddrs= [NFS] Deprecated. Use ip= instead.
  1515. See Documentation/filesystems/nfs/nfsroot.txt.
  1516. nfsroot= [NFS] nfs root filesystem for disk-less boxes.
  1517. See Documentation/filesystems/nfs/nfsroot.txt.
  1518. nfsrootdebug [NFS] enable nfsroot debugging messages.
  1519. See Documentation/filesystems/nfs/nfsroot.txt.
  1520. nfs.callback_tcpport=
  1521. [NFS] set the TCP port on which the NFSv4 callback
  1522. channel should listen.
  1523. nfs.cache_getent=
  1524. [NFS] sets the pathname to the program which is used
  1525. to update the NFS client cache entries.
  1526. nfs.cache_getent_timeout=
  1527. [NFS] sets the timeout after which an attempt to
  1528. update a cache entry is deemed to have failed.
  1529. nfs.idmap_cache_timeout=
  1530. [NFS] set the maximum lifetime for idmapper cache
  1531. entries.
  1532. nfs.enable_ino64=
  1533. [NFS] enable 64-bit inode numbers.
  1534. If zero, the NFS client will fake up a 32-bit inode
  1535. number for the readdir() and stat() syscalls instead
  1536. of returning the full 64-bit number.
  1537. The default is to return 64-bit inode numbers.
  1538. nfs.max_session_slots=
  1539. [NFSv4.1] Sets the maximum number of session slots
  1540. the client will attempt to negotiate with the server.
  1541. This limits the number of simultaneous RPC requests
  1542. that the client can send to the NFSv4.1 server.
  1543. Note that there is little point in setting this
  1544. value higher than the max_tcp_slot_table_limit.
  1545. nfs.nfs4_disable_idmapping=
  1546. [NFSv4] When set to the default of '1', this option
  1547. ensures that both the RPC level authentication
  1548. scheme and the NFS level operations agree to use
  1549. numeric uids/gids if the mount is using the
  1550. 'sec=sys' security flavour. In effect it is
  1551. disabling idmapping, which can make migration from
  1552. legacy NFSv2/v3 systems to NFSv4 easier.
  1553. Servers that do not support this mode of operation
  1554. will be autodetected by the client, and it will fall
  1555. back to using the idmapper.
  1556. To turn off this behaviour, set the value to '0'.
  1557. nfs.nfs4_unique_id=
  1558. [NFS4] Specify an additional fixed unique ident-
  1559. ification string that NFSv4 clients can insert into
  1560. their nfs_client_id4 string. This is typically a
  1561. UUID that is generated at system install time.
  1562. nfs.send_implementation_id =
  1563. [NFSv4.1] Send client implementation identification
  1564. information in exchange_id requests.
  1565. If zero, no implementation identification information
  1566. will be sent.
  1567. The default is to send the implementation identification
  1568. information.
  1569. nfs.recover_lost_locks =
  1570. [NFSv4] Attempt to recover locks that were lost due
  1571. to a lease timeout on the server. Please note that
  1572. doing this risks data corruption, since there are
  1573. no guarantees that the file will remain unchanged
  1574. after the locks are lost.
  1575. If you want to enable the kernel legacy behaviour of
  1576. attempting to recover these locks, then set this
  1577. parameter to '1'.
  1578. The default parameter value of '0' causes the kernel
  1579. not to attempt recovery of lost locks.
  1580. nfsd.nfs4_disable_idmapping=
  1581. [NFSv4] When set to the default of '1', the NFSv4
  1582. server will return only numeric uids and gids to
  1583. clients using auth_sys, and will accept numeric uids
  1584. and gids from such clients. This is intended to ease
  1585. migration from NFSv2/v3.
  1586. objlayoutdriver.osd_login_prog=
  1587. [NFS] [OBJLAYOUT] sets the pathname to the program which
  1588. is used to automatically discover and login into new
  1589. osd-targets. Please see:
  1590. Documentation/filesystems/pnfs.txt for more explanations
  1591. nmi_debug= [KNL,AVR32,SH] Specify one or more actions to take
  1592. when a NMI is triggered.
  1593. Format: [state][,regs][,debounce][,die]
  1594. nmi_watchdog= [KNL,BUGS=X86] Debugging features for SMP kernels
  1595. Format: [panic,][nopanic,][num]
  1596. Valid num: 0
  1597. 0 - turn nmi_watchdog off
  1598. When panic is specified, panic when an NMI watchdog
  1599. timeout occurs (or 'nopanic' to override the opposite
  1600. default).
  1601. This is useful when you use a panic=... timeout and
  1602. need the box quickly up again.
  1603. netpoll.carrier_timeout=
  1604. [NET] Specifies amount of time (in seconds) that
  1605. netpoll should wait for a carrier. By default netpoll
  1606. waits 4 seconds.
  1607. no387 [BUGS=X86-32] Tells the kernel to use the 387 maths
  1608. emulation library even if a 387 maths coprocessor
  1609. is present.
  1610. no_console_suspend
  1611. [HW] Never suspend the console
  1612. Disable suspending of consoles during suspend and
  1613. hibernate operations. Once disabled, debugging
  1614. messages can reach various consoles while the rest
  1615. of the system is being put to sleep (ie, while
  1616. debugging driver suspend/resume hooks). This may
  1617. not work reliably with all consoles, but is known
  1618. to work with serial and VGA consoles.
  1619. To facilitate more flexible debugging, we also add
  1620. console_suspend, a printk module parameter to control
  1621. it. Users could use console_suspend (usually
  1622. /sys/module/printk/parameters/console_suspend) to
  1623. turn on/off it dynamically.
  1624. noaliencache [MM, NUMA, SLAB] Disables the allocation of alien
  1625. caches in the slab allocator. Saves per-node memory,
  1626. but will impact performance.
  1627. noalign [KNL,ARM]
  1628. noapic [SMP,APIC] Tells the kernel to not make use of any
  1629. IOAPICs that may be present in the system.
  1630. noautogroup Disable scheduler automatic task group creation.
  1631. nobats [PPC] Do not use BATs for mapping kernel lowmem
  1632. on "Classic" PPC cores.
  1633. nocache [ARM]
  1634. noclflush [BUGS=X86] Don't use the CLFLUSH instruction
  1635. nodelayacct [KNL] Disable per-task delay accounting
  1636. nodisconnect [HW,SCSI,M68K] Disables SCSI disconnects.
  1637. nodsp [SH] Disable hardware DSP at boot time.
  1638. noefi [X86] Disable EFI runtime services support.
  1639. noexec [IA-64]
  1640. noexec [X86]
  1641. On X86-32 available only on PAE configured kernels.
  1642. noexec=on: enable non-executable mappings (default)
  1643. noexec=off: disable non-executable mappings
  1644. nosmap [X86]
  1645. Disable SMAP (Supervisor Mode Access Prevention)
  1646. even if it is supported by processor.
  1647. nosmep [X86]
  1648. Disable SMEP (Supervisor Mode Execution Prevention)
  1649. even if it is supported by processor.
  1650. noexec32 [X86-64]
  1651. This affects only 32-bit executables.
  1652. noexec32=on: enable non-executable mappings (default)
  1653. read doesn't imply executable mappings
  1654. noexec32=off: disable non-executable mappings
  1655. read implies executable mappings
  1656. nofpu [SH] Disable hardware FPU at boot time.
  1657. nofxsr [BUGS=X86-32] Disables x86 floating point extended
  1658. register save and restore. The kernel will only save
  1659. legacy floating-point registers on task switch.
  1660. noxsave [BUGS=X86] Disables x86 extended register state save
  1661. and restore using xsave. The kernel will fallback to
  1662. enabling legacy floating-point and sse state.
  1663. eagerfpu= [X86]
  1664. on enable eager fpu restore
  1665. off disable eager fpu restore
  1666. auto selects the default scheme, which automatically
  1667. enables eagerfpu restore for xsaveopt.
  1668. nohlt [BUGS=ARM,SH] Tells the kernel that the sleep(SH) or
  1669. wfi(ARM) instruction doesn't work correctly and not to
  1670. use it. This is also useful when using JTAG debugger.
  1671. no_file_caps Tells the kernel not to honor file capabilities. The
  1672. only way then for a file to be executed with privilege
  1673. is to be setuid root or executed by root.
  1674. nohalt [IA-64] Tells the kernel not to use the power saving
  1675. function PAL_HALT_LIGHT when idle. This increases
  1676. power-consumption. On the positive side, it reduces
  1677. interrupt wake-up latency, which may improve performance
  1678. in certain environments such as networked servers or
  1679. real-time systems.
  1680. nohz= [KNL] Boottime enable/disable dynamic ticks
  1681. Valid arguments: on, off
  1682. Default: on
  1683. nohz_full= [KNL,BOOT]
  1684. In kernels built with CONFIG_NO_HZ_FULL=y, set
  1685. the specified list of CPUs whose tick will be stopped
  1686. whenever possible. The boot CPU will be forced outside
  1687. the range to maintain the timekeeping.
  1688. The CPUs in this range must also be included in the
  1689. rcu_nocbs= set.
  1690. noiotrap [SH] Disables trapped I/O port accesses.
  1691. noirqdebug [X86-32] Disables the code which attempts to detect and
  1692. disable unhandled interrupt sources.
  1693. no_timer_check [X86,APIC] Disables the code which tests for
  1694. broken timer IRQ sources.
  1695. noisapnp [ISAPNP] Disables ISA PnP code.
  1696. noinitrd [RAM] Tells the kernel not to load any configured
  1697. initial RAM disk.
  1698. nointremap [X86-64, Intel-IOMMU] Do not enable interrupt
  1699. remapping.
  1700. [Deprecated - use intremap=off]
  1701. nointroute [IA-64]
  1702. nojitter [IA-64] Disables jitter checking for ITC timers.
  1703. no-kvmclock [X86,KVM] Disable paravirtualized KVM clock driver
  1704. no-kvmapf [X86,KVM] Disable paravirtualized asynchronous page
  1705. fault handling.
  1706. no-steal-acc [X86,KVM] Disable paravirtualized steal time accounting.
  1707. steal time is computed, but won't influence scheduler
  1708. behaviour
  1709. nolapic [X86-32,APIC] Do not enable or use the local APIC.
  1710. nolapic_timer [X86-32,APIC] Do not use the local APIC timer.
  1711. noltlbs [PPC] Do not use large page/tlb entries for kernel
  1712. lowmem mapping on PPC40x.
  1713. nomca [IA-64] Disable machine check abort handling
  1714. nomce [X86-32] Machine Check Exception
  1715. nomfgpt [X86-32] Disable Multi-Function General Purpose
  1716. Timer usage (for AMD Geode machines).
  1717. nonmi_ipi [X86] Disable using NMI IPIs during panic/reboot to
  1718. shutdown the other cpus. Instead use the REBOOT_VECTOR
  1719. irq.
  1720. nomodule Disable module load
  1721. nopat [X86] Disable PAT (page attribute table extension of
  1722. pagetables) support.
  1723. norandmaps Don't use address space randomization. Equivalent to
  1724. echo 0 > /proc/sys/kernel/randomize_va_space
  1725. noreplace-paravirt [X86,IA-64,PV_OPS] Don't patch paravirt_ops
  1726. noreplace-smp [X86-32,SMP] Don't replace SMP instructions
  1727. with UP alternatives
  1728. nordrand [X86] Disable the direct use of the RDRAND
  1729. instruction even if it is supported by the
  1730. processor. RDRAND is still available to user
  1731. space applications.
  1732. noresume [SWSUSP] Disables resume and restores original swap
  1733. space.
  1734. no-scroll [VGA] Disables scrollback.
  1735. This is required for the Braillex ib80-piezo Braille
  1736. reader made by F.H. Papenmeier (Germany).
  1737. nosbagart [IA-64]
  1738. nosep [BUGS=X86-32] Disables x86 SYSENTER/SYSEXIT support.
  1739. nosmp [SMP] Tells an SMP kernel to act as a UP kernel,
  1740. and disable the IO APIC. legacy for "maxcpus=0".
  1741. nosoftlockup [KNL] Disable the soft-lockup detector.
  1742. nosync [HW,M68K] Disables sync negotiation for all devices.
  1743. notsc [BUGS=X86-32] Disable Time Stamp Counter
  1744. nousb [USB] Disable the USB subsystem
  1745. nowatchdog [KNL] Disable the lockup detector (NMI watchdog).
  1746. nowb [ARM]
  1747. nox2apic [X86-64,APIC] Do not enable x2APIC mode.
  1748. cpu0_hotplug [X86] Turn on CPU0 hotplug feature when
  1749. CONFIG_BOOTPARAM_HOTPLUG_CPU0 is off.
  1750. Some features depend on CPU0. Known dependencies are:
  1751. 1. Resume from suspend/hibernate depends on CPU0.
  1752. Suspend/hibernate will fail if CPU0 is offline and you
  1753. need to online CPU0 before suspend/hibernate.
  1754. 2. PIC interrupts also depend on CPU0. CPU0 can't be
  1755. removed if a PIC interrupt is detected.
  1756. It's said poweroff/reboot may depend on CPU0 on some
  1757. machines although I haven't seen such issues so far
  1758. after CPU0 is offline on a few tested machines.
  1759. If the dependencies are under your control, you can
  1760. turn on cpu0_hotplug.
  1761. nptcg= [IA-64] Override max number of concurrent global TLB
  1762. purges which is reported from either PAL_VM_SUMMARY or
  1763. SAL PALO.
  1764. nr_cpus= [SMP] Maximum number of processors that an SMP kernel
  1765. could support. nr_cpus=n : n >= 1 limits the kernel to
  1766. supporting 'n' processors. Later in runtime you can not
  1767. use hotplug cpu feature to put more cpu back to online.
  1768. just like you compile the kernel NR_CPUS=n
  1769. nr_uarts= [SERIAL] maximum number of UARTs to be registered.
  1770. numa_balancing= [KNL,X86] Enable or disable automatic NUMA balancing.
  1771. Allowed values are enable and disable
  1772. numa_zonelist_order= [KNL, BOOT] Select zonelist order for NUMA.
  1773. one of ['zone', 'node', 'default'] can be specified
  1774. This can be set from sysctl after boot.
  1775. See Documentation/sysctl/vm.txt for details.
  1776. ohci1394_dma=early [HW] enable debugging via the ohci1394 driver.
  1777. See Documentation/debugging-via-ohci1394.txt for more
  1778. info.
  1779. olpc_ec_timeout= [OLPC] ms delay when issuing EC commands
  1780. Rather than timing out after 20 ms if an EC
  1781. command is not properly ACKed, override the length
  1782. of the timeout. We have interrupts disabled while
  1783. waiting for the ACK, so if this is set too high
  1784. interrupts *may* be lost!
  1785. omap_mux= [OMAP] Override bootloader pin multiplexing.
  1786. Format: <mux_mode0.mode_name=value>...
  1787. For example, to override I2C bus2:
  1788. omap_mux=i2c2_scl.i2c2_scl=0x100,i2c2_sda.i2c2_sda=0x100
  1789. oprofile.timer= [HW]
  1790. Use timer interrupt instead of performance counters
  1791. oprofile.cpu_type= Force an oprofile cpu type
  1792. This might be useful if you have an older oprofile
  1793. userland or if you want common events.
  1794. Format: { arch_perfmon }
  1795. arch_perfmon: [X86] Force use of architectural
  1796. perfmon on Intel CPUs instead of the
  1797. CPU specific event set.
  1798. timer: [X86] Force use of architectural NMI
  1799. timer mode (see also oprofile.timer
  1800. for generic hr timer mode)
  1801. [s390] Force legacy basic mode sampling
  1802. (report cpu_type "timer")
  1803. oops=panic Always panic on oopses. Default is to just kill the
  1804. process, but there is a small probability of
  1805. deadlocking the machine.
  1806. This will also cause panics on machine check exceptions.
  1807. Useful together with panic=30 to trigger a reboot.
  1808. OSS [HW,OSS]
  1809. See Documentation/sound/oss/oss-parameters.txt
  1810. panic= [KNL] Kernel behaviour on panic: delay <timeout>
  1811. timeout > 0: seconds before rebooting
  1812. timeout = 0: wait forever
  1813. timeout < 0: reboot immediately
  1814. Format: <timeout>
  1815. parkbd.port= [HW] Parallel port number the keyboard adapter is
  1816. connected to, default is 0.
  1817. Format: <parport#>
  1818. parkbd.mode= [HW] Parallel port keyboard adapter mode of operation,
  1819. 0 for XT, 1 for AT (default is AT).
  1820. Format: <mode>
  1821. parport= [HW,PPT] Specify parallel ports. 0 disables.
  1822. Format: { 0 | auto | 0xBBB[,IRQ[,DMA]] }
  1823. Use 'auto' to force the driver to use any
  1824. IRQ/DMA settings detected (the default is to
  1825. ignore detected IRQ/DMA settings because of
  1826. possible conflicts). You can specify the base
  1827. address, IRQ, and DMA settings; IRQ and DMA
  1828. should be numbers, or 'auto' (for using detected
  1829. settings on that particular port), or 'nofifo'
  1830. (to avoid using a FIFO even if it is detected).
  1831. Parallel ports are assigned in the order they
  1832. are specified on the command line, starting
  1833. with parport0.
  1834. parport_init_mode= [HW,PPT]
  1835. Configure VIA parallel port to operate in
  1836. a specific mode. This is necessary on Pegasos
  1837. computer where firmware has no options for setting
  1838. up parallel port mode and sets it to spp.
  1839. Currently this function knows 686a and 8231 chips.
  1840. Format: [spp|ps2|epp|ecp|ecpepp]
  1841. pause_on_oops=
  1842. Halt all CPUs after the first oops has been printed for
  1843. the specified number of seconds. This is to be used if
  1844. your oopses keep scrolling off the screen.
  1845. pcbit= [HW,ISDN]
  1846. pcd. [PARIDE]
  1847. See header of drivers/block/paride/pcd.c.
  1848. See also Documentation/blockdev/paride.txt.
  1849. pci=option[,option...] [PCI] various PCI subsystem options:
  1850. earlydump [X86] dump PCI config space before the kernel
  1851. changes anything
  1852. off [X86] don't probe for the PCI bus
  1853. bios [X86-32] force use of PCI BIOS, don't access
  1854. the hardware directly. Use this if your machine
  1855. has a non-standard PCI host bridge.
  1856. nobios [X86-32] disallow use of PCI BIOS, only direct
  1857. hardware access methods are allowed. Use this
  1858. if you experience crashes upon bootup and you
  1859. suspect they are caused by the BIOS.
  1860. conf1 [X86] Force use of PCI Configuration
  1861. Mechanism 1.
  1862. conf2 [X86] Force use of PCI Configuration
  1863. Mechanism 2.
  1864. noaer [PCIE] If the PCIEAER kernel config parameter is
  1865. enabled, this kernel boot option can be used to
  1866. disable the use of PCIE advanced error reporting.
  1867. nodomains [PCI] Disable support for multiple PCI
  1868. root domains (aka PCI segments, in ACPI-speak).
  1869. nommconf [X86] Disable use of MMCONFIG for PCI
  1870. Configuration
  1871. check_enable_amd_mmconf [X86] check for and enable
  1872. properly configured MMIO access to PCI
  1873. config space on AMD family 10h CPU
  1874. nomsi [MSI] If the PCI_MSI kernel config parameter is
  1875. enabled, this kernel boot option can be used to
  1876. disable the use of MSI interrupts system-wide.
  1877. noioapicquirk [APIC] Disable all boot interrupt quirks.
  1878. Safety option to keep boot IRQs enabled. This
  1879. should never be necessary.
  1880. ioapicreroute [APIC] Enable rerouting of boot IRQs to the
  1881. primary IO-APIC for bridges that cannot disable
  1882. boot IRQs. This fixes a source of spurious IRQs
  1883. when the system masks IRQs.
  1884. noioapicreroute [APIC] Disable workaround that uses the
  1885. boot IRQ equivalent of an IRQ that connects to
  1886. a chipset where boot IRQs cannot be disabled.
  1887. The opposite of ioapicreroute.
  1888. biosirq [X86-32] Use PCI BIOS calls to get the interrupt
  1889. routing table. These calls are known to be buggy
  1890. on several machines and they hang the machine
  1891. when used, but on other computers it's the only
  1892. way to get the interrupt routing table. Try
  1893. this option if the kernel is unable to allocate
  1894. IRQs or discover secondary PCI buses on your
  1895. motherboard.
  1896. rom [X86] Assign address space to expansion ROMs.
  1897. Use with caution as certain devices share
  1898. address decoders between ROMs and other
  1899. resources.
  1900. norom [X86] Do not assign address space to
  1901. expansion ROMs that do not already have
  1902. BIOS assigned address ranges.
  1903. nobar [X86] Do not assign address space to the
  1904. BARs that weren't assigned by the BIOS.
  1905. irqmask=0xMMMM [X86] Set a bit mask of IRQs allowed to be
  1906. assigned automatically to PCI devices. You can
  1907. make the kernel exclude IRQs of your ISA cards
  1908. this way.
  1909. pirqaddr=0xAAAAA [X86] Specify the physical address
  1910. of the PIRQ table (normally generated
  1911. by the BIOS) if it is outside the
  1912. F0000h-100000h range.
  1913. lastbus=N [X86] Scan all buses thru bus #N. Can be
  1914. useful if the kernel is unable to find your
  1915. secondary buses and you want to tell it
  1916. explicitly which ones they are.
  1917. assign-busses [X86] Always assign all PCI bus
  1918. numbers ourselves, overriding
  1919. whatever the firmware may have done.
  1920. usepirqmask [X86] Honor the possible IRQ mask stored
  1921. in the BIOS $PIR table. This is needed on
  1922. some systems with broken BIOSes, notably
  1923. some HP Pavilion N5400 and Omnibook XE3
  1924. notebooks. This will have no effect if ACPI
  1925. IRQ routing is enabled.
  1926. noacpi [X86] Do not use ACPI for IRQ routing
  1927. or for PCI scanning.
  1928. use_crs [X86] Use PCI host bridge window information
  1929. from ACPI. On BIOSes from 2008 or later, this
  1930. is enabled by default. If you need to use this,
  1931. please report a bug.
  1932. nocrs [X86] Ignore PCI host bridge windows from ACPI.
  1933. If you need to use this, please report a bug.
  1934. routeirq Do IRQ routing for all PCI devices.
  1935. This is normally done in pci_enable_device(),
  1936. so this option is a temporary workaround
  1937. for broken drivers that don't call it.
  1938. skip_isa_align [X86] do not align io start addr, so can
  1939. handle more pci cards
  1940. firmware [ARM] Do not re-enumerate the bus but instead
  1941. just use the configuration from the
  1942. bootloader. This is currently used on
  1943. IXP2000 systems where the bus has to be
  1944. configured a certain way for adjunct CPUs.
  1945. noearly [X86] Don't do any early type 1 scanning.
  1946. This might help on some broken boards which
  1947. machine check when some devices' config space
  1948. is read. But various workarounds are disabled
  1949. and some IOMMU drivers will not work.
  1950. bfsort Sort PCI devices into breadth-first order.
  1951. This sorting is done to get a device
  1952. order compatible with older (<= 2.4) kernels.
  1953. nobfsort Don't sort PCI devices into breadth-first order.
  1954. pcie_bus_tune_off Disable PCIe MPS (Max Payload Size)
  1955. tuning and use the BIOS-configured MPS defaults.
  1956. pcie_bus_safe Set every device's MPS to the largest value
  1957. supported by all devices below the root complex.
  1958. pcie_bus_perf Set device MPS to the largest allowable MPS
  1959. based on its parent bus. Also set MRRS (Max
  1960. Read Request Size) to the largest supported
  1961. value (no larger than the MPS that the device
  1962. or bus can support) for best performance.
  1963. pcie_bus_peer2peer Set every device's MPS to 128B, which
  1964. every device is guaranteed to support. This
  1965. configuration allows peer-to-peer DMA between
  1966. any pair of devices, possibly at the cost of
  1967. reduced performance. This also guarantees
  1968. that hot-added devices will work.
  1969. cbiosize=nn[KMG] The fixed amount of bus space which is
  1970. reserved for the CardBus bridge's IO window.
  1971. The default value is 256 bytes.
  1972. cbmemsize=nn[KMG] The fixed amount of bus space which is
  1973. reserved for the CardBus bridge's memory
  1974. window. The default value is 64 megabytes.
  1975. resource_alignment=
  1976. Format:
  1977. [<order of align>@][<domain>:]<bus>:<slot>.<func>[; ...]
  1978. Specifies alignment and device to reassign
  1979. aligned memory resources.
  1980. If <order of align> is not specified,
  1981. PAGE_SIZE is used as alignment.
  1982. PCI-PCI bridge can be specified, if resource
  1983. windows need to be expanded.
  1984. ecrc= Enable/disable PCIe ECRC (transaction layer
  1985. end-to-end CRC checking).
  1986. bios: Use BIOS/firmware settings. This is the
  1987. the default.
  1988. off: Turn ECRC off
  1989. on: Turn ECRC on.
  1990. hpiosize=nn[KMG] The fixed amount of bus space which is
  1991. reserved for hotplug bridge's IO window.
  1992. Default size is 256 bytes.
  1993. hpmemsize=nn[KMG] The fixed amount of bus space which is
  1994. reserved for hotplug bridge's memory window.
  1995. Default size is 2 megabytes.
  1996. realloc= Enable/disable reallocating PCI bridge resources
  1997. if allocations done by BIOS are too small to
  1998. accommodate resources required by all child
  1999. devices.
  2000. off: Turn realloc off
  2001. on: Turn realloc on
  2002. realloc same as realloc=on
  2003. noari do not use PCIe ARI.
  2004. pcie_scan_all Scan all possible PCIe devices. Otherwise we
  2005. only look for one device below a PCIe downstream
  2006. port.
  2007. pcie_aspm= [PCIE] Forcibly enable or disable PCIe Active State Power
  2008. Management.
  2009. off Disable ASPM.
  2010. force Enable ASPM even on devices that claim not to support it.
  2011. WARNING: Forcing ASPM on may cause system lockups.
  2012. pcie_hp= [PCIE] PCI Express Hotplug driver options:
  2013. nomsi Do not use MSI for PCI Express Native Hotplug (this
  2014. makes all PCIe ports use INTx for hotplug services).
  2015. pcie_ports= [PCIE] PCIe ports handling:
  2016. auto Ask the BIOS whether or not to use native PCIe services
  2017. associated with PCIe ports (PME, hot-plug, AER). Use
  2018. them only if that is allowed by the BIOS.
  2019. native Use native PCIe services associated with PCIe ports
  2020. unconditionally.
  2021. compat Treat PCIe ports as PCI-to-PCI bridges, disable the PCIe
  2022. ports driver.
  2023. pcie_pme= [PCIE,PM] Native PCIe PME signaling options:
  2024. nomsi Do not use MSI for native PCIe PME signaling (this makes
  2025. all PCIe root ports use INTx for all services).
  2026. pcmv= [HW,PCMCIA] BadgePAD 4
  2027. pd. [PARIDE]
  2028. See Documentation/blockdev/paride.txt.
  2029. pdcchassis= [PARISC,HW] Disable/Enable PDC Chassis Status codes at
  2030. boot time.
  2031. Format: { 0 | 1 }
  2032. See arch/parisc/kernel/pdc_chassis.c
  2033. percpu_alloc= Select which percpu first chunk allocator to use.
  2034. Currently supported values are "embed" and "page".
  2035. Archs may support subset or none of the selections.
  2036. See comments in mm/percpu.c for details on each
  2037. allocator. This parameter is primarily for debugging
  2038. and performance comparison.
  2039. pf. [PARIDE]
  2040. See Documentation/blockdev/paride.txt.
  2041. pg. [PARIDE]
  2042. See Documentation/blockdev/paride.txt.
  2043. pirq= [SMP,APIC] Manual mp-table setup
  2044. See Documentation/x86/i386/IO-APIC.txt.
  2045. plip= [PPT,NET] Parallel port network link
  2046. Format: { parport<nr> | timid | 0 }
  2047. See also Documentation/parport.txt.
  2048. pmtmr= [X86] Manual setup of pmtmr I/O Port.
  2049. Override pmtimer IOPort with a hex value.
  2050. e.g. pmtmr=0x508
  2051. pnp.debug=1 [PNP]
  2052. Enable PNP debug messages (depends on the
  2053. CONFIG_PNP_DEBUG_MESSAGES option). Change at run-time
  2054. via /sys/module/pnp/parameters/debug. We always show
  2055. current resource usage; turning this on also shows
  2056. possible settings and some assignment information.
  2057. pnpacpi= [ACPI]
  2058. { off }
  2059. pnpbios= [ISAPNP]
  2060. { on | off | curr | res | no-curr | no-res }
  2061. pnp_reserve_irq=
  2062. [ISAPNP] Exclude IRQs for the autoconfiguration
  2063. pnp_reserve_dma=
  2064. [ISAPNP] Exclude DMAs for the autoconfiguration
  2065. pnp_reserve_io= [ISAPNP] Exclude I/O ports for the autoconfiguration
  2066. Ranges are in pairs (I/O port base and size).
  2067. pnp_reserve_mem=
  2068. [ISAPNP] Exclude memory regions for the
  2069. autoconfiguration.
  2070. Ranges are in pairs (memory base and size).
  2071. ports= [IP_VS_FTP] IPVS ftp helper module
  2072. Default is 21.
  2073. Up to 8 (IP_VS_APP_MAX_PORTS) ports
  2074. may be specified.
  2075. Format: <port>,<port>....
  2076. print-fatal-signals=
  2077. [KNL] debug: print fatal signals
  2078. If enabled, warn about various signal handling
  2079. related application anomalies: too many signals,
  2080. too many POSIX.1 timers, fatal signals causing a
  2081. coredump - etc.
  2082. If you hit the warning due to signal overflow,
  2083. you might want to try "ulimit -i unlimited".
  2084. default: off.
  2085. printk.always_kmsg_dump=
  2086. Trigger kmsg_dump for cases other than kernel oops or
  2087. panics
  2088. Format: <bool> (1/Y/y=enable, 0/N/n=disable)
  2089. default: disabled
  2090. printk.time= Show timing data prefixed to each printk message line
  2091. Format: <bool> (1/Y/y=enable, 0/N/n=disable)
  2092. processor.max_cstate= [HW,ACPI]
  2093. Limit processor to maximum C-state
  2094. max_cstate=9 overrides any DMI blacklist limit.
  2095. processor.nocst [HW,ACPI]
  2096. Ignore the _CST method to determine C-states,
  2097. instead using the legacy FADT method
  2098. profile= [KNL] Enable kernel profiling via /proc/profile
  2099. Format: [schedule,]<number>
  2100. Param: "schedule" - profile schedule points.
  2101. Param: <number> - step/bucket size as a power of 2 for
  2102. statistical time based profiling.
  2103. Param: "sleep" - profile D-state sleeping (millisecs).
  2104. Requires CONFIG_SCHEDSTATS
  2105. Param: "kvm" - profile VM exits.
  2106. prompt_ramdisk= [RAM] List of RAM disks to prompt for floppy disk
  2107. before loading.
  2108. See Documentation/blockdev/ramdisk.txt.
  2109. psmouse.proto= [HW,MOUSE] Highest PS2 mouse protocol extension to
  2110. probe for; one of (bare|imps|exps|lifebook|any).
  2111. psmouse.rate= [HW,MOUSE] Set desired mouse report rate, in reports
  2112. per second.
  2113. psmouse.resetafter= [HW,MOUSE]
  2114. Try to reset the device after so many bad packets
  2115. (0 = never).
  2116. psmouse.resolution=
  2117. [HW,MOUSE] Set desired mouse resolution, in dpi.
  2118. psmouse.smartscroll=
  2119. [HW,MOUSE] Controls Logitech smartscroll autorepeat.
  2120. 0 = disabled, 1 = enabled (default).
  2121. pstore.backend= Specify the name of the pstore backend to use
  2122. pt. [PARIDE]
  2123. See Documentation/blockdev/paride.txt.
  2124. pty.legacy_count=
  2125. [KNL] Number of legacy pty's. Overwrites compiled-in
  2126. default number.
  2127. quiet [KNL] Disable most log messages
  2128. r128= [HW,DRM]
  2129. raid= [HW,RAID]
  2130. See Documentation/md.txt.
  2131. ramdisk_blocksize= [RAM]
  2132. See Documentation/blockdev/ramdisk.txt.
  2133. ramdisk_size= [RAM] Sizes of RAM disks in kilobytes
  2134. See Documentation/blockdev/ramdisk.txt.
  2135. rcu_nocbs= [KNL,BOOT]
  2136. In kernels built with CONFIG_RCU_NOCB_CPU=y, set
  2137. the specified list of CPUs to be no-callback CPUs.
  2138. Invocation of these CPUs' RCU callbacks will
  2139. be offloaded to "rcuox/N" kthreads created for
  2140. that purpose, where "x" is "b" for RCU-bh, "p"
  2141. for RCU-preempt, and "s" for RCU-sched, and "N"
  2142. is the CPU number. This reduces OS jitter on the
  2143. offloaded CPUs, which can be useful for HPC and
  2144. real-time workloads. It can also improve energy
  2145. efficiency for asymmetric multiprocessors.
  2146. rcu_nocb_poll [KNL,BOOT]
  2147. Rather than requiring that offloaded CPUs
  2148. (specified by rcu_nocbs= above) explicitly
  2149. awaken the corresponding "rcuoN" kthreads,
  2150. make these kthreads poll for callbacks.
  2151. This improves the real-time response for the
  2152. offloaded CPUs by relieving them of the need to
  2153. wake up the corresponding kthread, but degrades
  2154. energy efficiency by requiring that the kthreads
  2155. periodically wake up to do the polling.
  2156. rcutree.blimit= [KNL,BOOT]
  2157. Set maximum number of finished RCU callbacks to process
  2158. in one batch.
  2159. rcutree.fanout_leaf= [KNL,BOOT]
  2160. Increase the number of CPUs assigned to each
  2161. leaf rcu_node structure. Useful for very large
  2162. systems.
  2163. rcutree.jiffies_till_first_fqs= [KNL,BOOT]
  2164. Set delay from grace-period initialization to
  2165. first attempt to force quiescent states.
  2166. Units are jiffies, minimum value is zero,
  2167. and maximum value is HZ.
  2168. rcutree.jiffies_till_next_fqs= [KNL,BOOT]
  2169. Set delay between subsequent attempts to force
  2170. quiescent states. Units are jiffies, minimum
  2171. value is one, and maximum value is HZ.
  2172. rcutree.qhimark= [KNL,BOOT]
  2173. Set threshold of queued
  2174. RCU callbacks over which batch limiting is disabled.
  2175. rcutree.qlowmark= [KNL,BOOT]
  2176. Set threshold of queued RCU callbacks below which
  2177. batch limiting is re-enabled.
  2178. rcutree.rcu_cpu_stall_suppress= [KNL,BOOT]
  2179. Suppress RCU CPU stall warning messages.
  2180. rcutree.rcu_cpu_stall_timeout= [KNL,BOOT]
  2181. Set timeout for RCU CPU stall warning messages.
  2182. rcutree.rcu_idle_gp_delay= [KNL,BOOT]
  2183. Set wakeup interval for idle CPUs that have
  2184. RCU callbacks (RCU_FAST_NO_HZ=y).
  2185. rcutree.rcu_idle_lazy_gp_delay= [KNL,BOOT]
  2186. Set wakeup interval for idle CPUs that have
  2187. only "lazy" RCU callbacks (RCU_FAST_NO_HZ=y).
  2188. Lazy RCU callbacks are those which RCU can
  2189. prove do nothing more than free memory.
  2190. rcutorture.fqs_duration= [KNL,BOOT]
  2191. Set duration of force_quiescent_state bursts.
  2192. rcutorture.fqs_holdoff= [KNL,BOOT]
  2193. Set holdoff time within force_quiescent_state bursts.
  2194. rcutorture.fqs_stutter= [KNL,BOOT]
  2195. Set wait time between force_quiescent_state bursts.
  2196. rcutorture.irqreader= [KNL,BOOT]
  2197. Test RCU readers from irq handlers.
  2198. rcutorture.n_barrier_cbs= [KNL,BOOT]
  2199. Set callbacks/threads for rcu_barrier() testing.
  2200. rcutorture.nfakewriters= [KNL,BOOT]
  2201. Set number of concurrent RCU writers. These just
  2202. stress RCU, they don't participate in the actual
  2203. test, hence the "fake".
  2204. rcutorture.nreaders= [KNL,BOOT]
  2205. Set number of RCU readers.
  2206. rcutorture.onoff_holdoff= [KNL,BOOT]
  2207. Set time (s) after boot for CPU-hotplug testing.
  2208. rcutorture.onoff_interval= [KNL,BOOT]
  2209. Set time (s) between CPU-hotplug operations, or
  2210. zero to disable CPU-hotplug testing.
  2211. rcutorture.shuffle_interval= [KNL,BOOT]
  2212. Set task-shuffle interval (s). Shuffling tasks
  2213. allows some CPUs to go into dyntick-idle mode
  2214. during the rcutorture test.
  2215. rcutorture.shutdown_secs= [KNL,BOOT]
  2216. Set time (s) after boot system shutdown. This
  2217. is useful for hands-off automated testing.
  2218. rcutorture.stall_cpu= [KNL,BOOT]
  2219. Duration of CPU stall (s) to test RCU CPU stall
  2220. warnings, zero to disable.
  2221. rcutorture.stall_cpu_holdoff= [KNL,BOOT]
  2222. Time to wait (s) after boot before inducing stall.
  2223. rcutorture.stat_interval= [KNL,BOOT]
  2224. Time (s) between statistics printk()s.
  2225. rcutorture.stutter= [KNL,BOOT]
  2226. Time (s) to stutter testing, for example, specifying
  2227. five seconds causes the test to run for five seconds,
  2228. wait for five seconds, and so on. This tests RCU's
  2229. ability to transition abruptly to and from idle.
  2230. rcutorture.test_boost= [KNL,BOOT]
  2231. Test RCU priority boosting? 0=no, 1=maybe, 2=yes.
  2232. "Maybe" means test if the RCU implementation
  2233. under test support RCU priority boosting.
  2234. rcutorture.test_boost_duration= [KNL,BOOT]
  2235. Duration (s) of each individual boost test.
  2236. rcutorture.test_boost_interval= [KNL,BOOT]
  2237. Interval (s) between each boost test.
  2238. rcutorture.test_no_idle_hz= [KNL,BOOT]
  2239. Test RCU's dyntick-idle handling. See also the
  2240. rcutorture.shuffle_interval parameter.
  2241. rcutorture.torture_type= [KNL,BOOT]
  2242. Specify the RCU implementation to test.
  2243. rcutorture.verbose= [KNL,BOOT]
  2244. Enable additional printk() statements.
  2245. rdinit= [KNL]
  2246. Format: <full_path>
  2247. Run specified binary instead of /init from the ramdisk,
  2248. used for early userspace startup. See initrd.
  2249. reboot= [KNL]
  2250. Format (x86 or x86_64):
  2251. [w[arm] | c[old] | h[ard] | s[oft] | g[pio]] \
  2252. [[,]s[mp]#### \
  2253. [[,]b[ios] | a[cpi] | k[bd] | t[riple] | e[fi] | p[ci]] \
  2254. [[,]f[orce]
  2255. Where reboot_mode is one of warm (soft) or cold (hard) or gpio,
  2256. reboot_type is one of bios, acpi, kbd, triple, efi, or pci,
  2257. reboot_force is either force or not specified,
  2258. reboot_cpu is s[mp]#### with #### being the processor
  2259. to be used for rebooting.
  2260. relax_domain_level=
  2261. [KNL, SMP] Set scheduler's default relax_domain_level.
  2262. See Documentation/cgroups/cpusets.txt.
  2263. reserve= [KNL,BUGS] Force the kernel to ignore some iomem area
  2264. reservetop= [X86-32]
  2265. Format: nn[KMG]
  2266. Reserves a hole at the top of the kernel virtual
  2267. address space.
  2268. reservelow= [X86]
  2269. Format: nn[K]
  2270. Set the amount of memory to reserve for BIOS at
  2271. the bottom of the address space.
  2272. reset_devices [KNL] Force drivers to reset the underlying device
  2273. during initialization.
  2274. resume= [SWSUSP]
  2275. Specify the partition device for software suspend
  2276. Format:
  2277. {/dev/<dev> | PARTUUID=<uuid> | <int>:<int> | <hex>}
  2278. resume_offset= [SWSUSP]
  2279. Specify the offset from the beginning of the partition
  2280. given by "resume=" at which the swap header is located,
  2281. in <PAGE_SIZE> units (needed only for swap files).
  2282. See Documentation/power/swsusp-and-swap-files.txt
  2283. resumedelay= [HIBERNATION] Delay (in seconds) to pause before attempting to
  2284. read the resume files
  2285. resumewait [HIBERNATION] Wait (indefinitely) for resume device to show up.
  2286. Useful for devices that are detected asynchronously
  2287. (e.g. USB and MMC devices).
  2288. hibernate= [HIBERNATION]
  2289. noresume Don't check if there's a hibernation image
  2290. present during boot.
  2291. nocompress Don't compress/decompress hibernation images.
  2292. retain_initrd [RAM] Keep initrd memory after extraction
  2293. rhash_entries= [KNL,NET]
  2294. Set number of hash buckets for route cache
  2295. riscom8= [HW,SERIAL]
  2296. Format: <io_board1>[,<io_board2>[,...<io_boardN>]]
  2297. ro [KNL] Mount root device read-only on boot
  2298. root= [KNL] Root filesystem
  2299. See name_to_dev_t comment in init/do_mounts.c.
  2300. rootdelay= [KNL] Delay (in seconds) to pause before attempting to
  2301. mount the root filesystem
  2302. rootflags= [KNL] Set root filesystem mount option string
  2303. rootfstype= [KNL] Set root filesystem type
  2304. rootwait [KNL] Wait (indefinitely) for root device to show up.
  2305. Useful for devices that are detected asynchronously
  2306. (e.g. USB and MMC devices).
  2307. rproc_mem=nn[KMG][@address]
  2308. [KNL,ARM,CMA] Remoteproc physical memory block.
  2309. Memory area to be used by remote processor image,
  2310. managed by CMA.
  2311. rw [KNL] Mount root device read-write on boot
  2312. S [KNL] Run init in single mode
  2313. sa1100ir [NET]
  2314. See drivers/net/irda/sa1100_ir.c.
  2315. sbni= [NET] Granch SBNI12 leased line adapter
  2316. sched_debug [KNL] Enables verbose scheduler debug messages.
  2317. skew_tick= [KNL] Offset the periodic timer tick per cpu to mitigate
  2318. xtime_lock contention on larger systems, and/or RCU lock
  2319. contention on all systems with CONFIG_MAXSMP set.
  2320. Format: { "0" | "1" }
  2321. 0 -- disable. (may be 1 via CONFIG_CMDLINE="skew_tick=1"
  2322. 1 -- enable.
  2323. Note: increases power consumption, thus should only be
  2324. enabled if running jitter sensitive (HPC/RT) workloads.
  2325. security= [SECURITY] Choose a security module to enable at boot.
  2326. If this boot parameter is not specified, only the first
  2327. security module asking for security registration will be
  2328. loaded. An invalid security module name will be treated
  2329. as if no module has been chosen.
  2330. selinux= [SELINUX] Disable or enable SELinux at boot time.
  2331. Format: { "0" | "1" }
  2332. See security/selinux/Kconfig help text.
  2333. 0 -- disable.
  2334. 1 -- enable.
  2335. Default value is set via kernel config option.
  2336. If enabled at boot time, /selinux/disable can be used
  2337. later to disable prior to initial policy load.
  2338. apparmor= [APPARMOR] Disable or enable AppArmor at boot time
  2339. Format: { "0" | "1" }
  2340. See security/apparmor/Kconfig help text
  2341. 0 -- disable.
  2342. 1 -- enable.
  2343. Default value is set via kernel config option.
  2344. serialnumber [BUGS=X86-32]
  2345. shapers= [NET]
  2346. Maximal number of shapers.
  2347. show_msr= [x86] show boot-time MSR settings
  2348. Format: { <integer> }
  2349. Show boot-time (BIOS-initialized) MSR settings.
  2350. The parameter means the number of CPUs to show,
  2351. for example 1 means boot CPU only.
  2352. simeth= [IA-64]
  2353. simscsi=
  2354. slram= [HW,MTD]
  2355. slab_max_order= [MM, SLAB]
  2356. Determines the maximum allowed order for slabs.
  2357. A high setting may cause OOMs due to memory
  2358. fragmentation. Defaults to 1 for systems with
  2359. more than 32MB of RAM, 0 otherwise.
  2360. slub_debug[=options[,slabs]] [MM, SLUB]
  2361. Enabling slub_debug allows one to determine the
  2362. culprit if slab objects become corrupted. Enabling
  2363. slub_debug can create guard zones around objects and
  2364. may poison objects when not in use. Also tracks the
  2365. last alloc / free. For more information see
  2366. Documentation/vm/slub.txt.
  2367. slub_max_order= [MM, SLUB]
  2368. Determines the maximum allowed order for slabs.
  2369. A high setting may cause OOMs due to memory
  2370. fragmentation. For more information see
  2371. Documentation/vm/slub.txt.
  2372. slub_min_objects= [MM, SLUB]
  2373. The minimum number of objects per slab. SLUB will
  2374. increase the slab order up to slub_max_order to
  2375. generate a sufficiently large slab able to contain
  2376. the number of objects indicated. The higher the number
  2377. of objects the smaller the overhead of tracking slabs
  2378. and the less frequently locks need to be acquired.
  2379. For more information see Documentation/vm/slub.txt.
  2380. slub_min_order= [MM, SLUB]
  2381. Determines the minimum page order for slabs. Must be
  2382. lower than slub_max_order.
  2383. For more information see Documentation/vm/slub.txt.
  2384. slub_nomerge [MM, SLUB]
  2385. Disable merging of slabs with similar size. May be
  2386. necessary if there is some reason to distinguish
  2387. allocs to different slabs. Debug options disable
  2388. merging on their own.
  2389. For more information see Documentation/vm/slub.txt.
  2390. smart2= [HW]
  2391. Format: <io1>[,<io2>[,...,<io8>]]
  2392. smsc-ircc2.nopnp [HW] Don't use PNP to discover SMC devices
  2393. smsc-ircc2.ircc_cfg= [HW] Device configuration I/O port
  2394. smsc-ircc2.ircc_sir= [HW] SIR base I/O port
  2395. smsc-ircc2.ircc_fir= [HW] FIR base I/O port
  2396. smsc-ircc2.ircc_irq= [HW] IRQ line
  2397. smsc-ircc2.ircc_dma= [HW] DMA channel
  2398. smsc-ircc2.ircc_transceiver= [HW] Transceiver type:
  2399. 0: Toshiba Satellite 1800 (GP data pin select)
  2400. 1: Fast pin select (default)
  2401. 2: ATC IRMode
  2402. softlockup_panic=
  2403. [KNL] Should the soft-lockup detector generate panics.
  2404. Format: <integer>
  2405. sonypi.*= [HW] Sony Programmable I/O Control Device driver
  2406. See Documentation/laptops/sonypi.txt
  2407. specialix= [HW,SERIAL] Specialix multi-serial port adapter
  2408. See Documentation/serial/specialix.txt.
  2409. spia_io_base= [HW,MTD]
  2410. spia_fio_base=
  2411. spia_pedr=
  2412. spia_peddr=
  2413. stacktrace [FTRACE]
  2414. Enabled the stack tracer on boot up.
  2415. stacktrace_filter=[function-list]
  2416. [FTRACE] Limit the functions that the stack tracer
  2417. will trace at boot up. function-list is a comma separated
  2418. list of functions. This list can be changed at run
  2419. time by the stack_trace_filter file in the debugfs
  2420. tracing directory. Note, this enables stack tracing
  2421. and the stacktrace above is not needed.
  2422. sti= [PARISC,HW]
  2423. Format: <num>
  2424. Set the STI (builtin display/keyboard on the HP-PARISC
  2425. machines) console (graphic card) which should be used
  2426. as the initial boot-console.
  2427. See also comment in drivers/video/console/sticore.c.
  2428. sti_font= [HW]
  2429. See comment in drivers/video/console/sticore.c.
  2430. stifb= [HW]
  2431. Format: bpp:<bpp1>[:<bpp2>[:<bpp3>...]]
  2432. sunrpc.min_resvport=
  2433. sunrpc.max_resvport=
  2434. [NFS,SUNRPC]
  2435. SunRPC servers often require that client requests
  2436. originate from a privileged port (i.e. a port in the
  2437. range 0 < portnr < 1024).
  2438. An administrator who wishes to reserve some of these
  2439. ports for other uses may adjust the range that the
  2440. kernel's sunrpc client considers to be privileged
  2441. using these two parameters to set the minimum and
  2442. maximum port values.
  2443. sunrpc.pool_mode=
  2444. [NFS]
  2445. Control how the NFS server code allocates CPUs to
  2446. service thread pools. Depending on how many NICs
  2447. you have and where their interrupts are bound, this
  2448. option will affect which CPUs will do NFS serving.
  2449. Note: this parameter cannot be changed while the
  2450. NFS server is running.
  2451. auto the server chooses an appropriate mode
  2452. automatically using heuristics
  2453. global a single global pool contains all CPUs
  2454. percpu one pool for each CPU
  2455. pernode one pool for each NUMA node (equivalent
  2456. to global on non-NUMA machines)
  2457. sunrpc.tcp_slot_table_entries=
  2458. sunrpc.udp_slot_table_entries=
  2459. [NFS,SUNRPC]
  2460. Sets the upper limit on the number of simultaneous
  2461. RPC calls that can be sent from the client to a
  2462. server. Increasing these values may allow you to
  2463. improve throughput, but will also increase the
  2464. amount of memory reserved for use by the client.
  2465. swapaccount=[0|1]
  2466. [KNL] Enable accounting of swap in memory resource
  2467. controller if no parameter or 1 is given or disable
  2468. it if 0 is given (See Documentation/cgroups/memory.txt)
  2469. swiotlb= [IA-64] Number of I/O TLB slabs
  2470. switches= [HW,M68k]
  2471. sysfs.deprecated=0|1 [KNL]
  2472. Enable/disable old style sysfs layout for old udev
  2473. on older distributions. When this option is enabled
  2474. very new udev will not work anymore. When this option
  2475. is disabled (or CONFIG_SYSFS_DEPRECATED not compiled)
  2476. in older udev will not work anymore.
  2477. Default depends on CONFIG_SYSFS_DEPRECATED_V2 set in
  2478. the kernel configuration.
  2479. sysrq_always_enabled
  2480. [KNL]
  2481. Ignore sysrq setting - this boot parameter will
  2482. neutralize any effect of /proc/sys/kernel/sysrq.
  2483. Useful for debugging.
  2484. tdfx= [HW,DRM]
  2485. test_suspend= [SUSPEND]
  2486. Specify "mem" (for Suspend-to-RAM) or "standby" (for
  2487. standby suspend) as the system sleep state to briefly
  2488. enter during system startup. The system is woken from
  2489. this state using a wakeup-capable RTC alarm.
  2490. thash_entries= [KNL,NET]
  2491. Set number of hash buckets for TCP connection
  2492. thermal.act= [HW,ACPI]
  2493. -1: disable all active trip points in all thermal zones
  2494. <degrees C>: override all lowest active trip points
  2495. thermal.crt= [HW,ACPI]
  2496. -1: disable all critical trip points in all thermal zones
  2497. <degrees C>: override all critical trip points
  2498. thermal.nocrt= [HW,ACPI]
  2499. Set to disable actions on ACPI thermal zone
  2500. critical and hot trip points.
  2501. thermal.off= [HW,ACPI]
  2502. 1: disable ACPI thermal control
  2503. thermal.psv= [HW,ACPI]
  2504. -1: disable all passive trip points
  2505. <degrees C>: override all passive trip points to this
  2506. value
  2507. thermal.tzp= [HW,ACPI]
  2508. Specify global default ACPI thermal zone polling rate
  2509. <deci-seconds>: poll all this frequency
  2510. 0: no polling (default)
  2511. threadirqs [KNL]
  2512. Force threading of all interrupt handlers except those
  2513. marked explicitly IRQF_NO_THREAD.
  2514. tmem [KNL,XEN]
  2515. Enable the Transcendent memory driver if built-in.
  2516. tmem.cleancache=0|1 [KNL, XEN]
  2517. Default is on (1). Disable the usage of the cleancache
  2518. API to send anonymous pages to the hypervisor.
  2519. tmem.frontswap=0|1 [KNL, XEN]
  2520. Default is on (1). Disable the usage of the frontswap
  2521. API to send swap pages to the hypervisor. If disabled
  2522. the selfballooning and selfshrinking are force disabled.
  2523. tmem.selfballooning=0|1 [KNL, XEN]
  2524. Default is on (1). Disable the driving of swap pages
  2525. to the hypervisor.
  2526. tmem.selfshrinking=0|1 [KNL, XEN]
  2527. Default is on (1). Partial swapoff that immediately
  2528. transfers pages from Xen hypervisor back to the
  2529. kernel based on different criteria.
  2530. topology= [S390]
  2531. Format: {off | on}
  2532. Specify if the kernel should make use of the cpu
  2533. topology information if the hardware supports this.
  2534. The scheduler will make use of this information and
  2535. e.g. base its process migration decisions on it.
  2536. Default is on.
  2537. tp720= [HW,PS2]
  2538. tpm_suspend_pcr=[HW,TPM]
  2539. Format: integer pcr id
  2540. Specify that at suspend time, the tpm driver
  2541. should extend the specified pcr with zeros,
  2542. as a workaround for some chips which fail to
  2543. flush the last written pcr on TPM_SaveState.
  2544. This will guarantee that all the other pcrs
  2545. are saved.
  2546. trace_buf_size=nn[KMG]
  2547. [FTRACE] will set tracing buffer size.
  2548. trace_event=[event-list]
  2549. [FTRACE] Set and start specified trace events in order
  2550. to facilitate early boot debugging.
  2551. See also Documentation/trace/events.txt
  2552. trace_options=[option-list]
  2553. [FTRACE] Enable or disable tracer options at boot.
  2554. The option-list is a comma delimited list of options
  2555. that can be enabled or disabled just as if you were
  2556. to echo the option name into
  2557. /sys/kernel/debug/tracing/trace_options
  2558. For example, to enable stacktrace option (to dump the
  2559. stack trace of each event), add to the command line:
  2560. trace_options=stacktrace
  2561. See also Documentation/trace/ftrace.txt "trace options"
  2562. section.
  2563. traceoff_on_warning
  2564. [FTRACE] enable this option to disable tracing when a
  2565. warning is hit. This turns off "tracing_on". Tracing can
  2566. be enabled again by echoing '1' into the "tracing_on"
  2567. file located in /sys/kernel/debug/tracing/
  2568. This option is useful, as it disables the trace before
  2569. the WARNING dump is called, which prevents the trace to
  2570. be filled with content caused by the warning output.
  2571. This option can also be set at run time via the sysctl
  2572. option: kernel/traceoff_on_warning
  2573. transparent_hugepage=
  2574. [KNL]
  2575. Format: [always|madvise|never]
  2576. Can be used to control the default behavior of the system
  2577. with respect to transparent hugepages.
  2578. See Documentation/vm/transhuge.txt for more details.
  2579. tsc= Disable clocksource stability checks for TSC.
  2580. Format: <string>
  2581. [x86] reliable: mark tsc clocksource as reliable, this
  2582. disables clocksource verification at runtime, as well
  2583. as the stability checks done at bootup. Used to enable
  2584. high-resolution timer mode on older hardware, and in
  2585. virtualized environment.
  2586. [x86] noirqtime: Do not use TSC to do irq accounting.
  2587. Used to run time disable IRQ_TIME_ACCOUNTING on any
  2588. platforms where RDTSC is slow and this accounting
  2589. can add overhead.
  2590. turbografx.map[2|3]= [HW,JOY]
  2591. TurboGraFX parallel port interface
  2592. Format:
  2593. <port#>,<js1>,<js2>,<js3>,<js4>,<js5>,<js6>,<js7>
  2594. See also Documentation/input/joystick-parport.txt
  2595. udbg-immortal [PPC] When debugging early kernel crashes that
  2596. happen after console_init() and before a proper
  2597. console driver takes over, this boot options might
  2598. help "seeing" what's going on.
  2599. uhash_entries= [KNL,NET]
  2600. Set number of hash buckets for UDP/UDP-Lite connections
  2601. uhci-hcd.ignore_oc=
  2602. [USB] Ignore overcurrent events (default N).
  2603. Some badly-designed motherboards generate lots of
  2604. bogus events, for ports that aren't wired to
  2605. anything. Set this parameter to avoid log spamming.
  2606. Note that genuine overcurrent events won't be
  2607. reported either.
  2608. unknown_nmi_panic
  2609. [X86] Cause panic on unknown NMI.
  2610. usbcore.authorized_default=
  2611. [USB] Default USB device authorization:
  2612. (default -1 = authorized except for wireless USB,
  2613. 0 = not authorized, 1 = authorized)
  2614. usbcore.autosuspend=
  2615. [USB] The autosuspend time delay (in seconds) used
  2616. for newly-detected USB devices (default 2). This
  2617. is the time required before an idle device will be
  2618. autosuspended. Devices for which the delay is set
  2619. to a negative value won't be autosuspended at all.
  2620. usbcore.usbfs_snoop=
  2621. [USB] Set to log all usbfs traffic (default 0 = off).
  2622. usbcore.blinkenlights=
  2623. [USB] Set to cycle leds on hubs (default 0 = off).
  2624. usbcore.old_scheme_first=
  2625. [USB] Start with the old device initialization
  2626. scheme (default 0 = off).
  2627. usbcore.usbfs_memory_mb=
  2628. [USB] Memory limit (in MB) for buffers allocated by
  2629. usbfs (default = 16, 0 = max = 2047).
  2630. usbcore.use_both_schemes=
  2631. [USB] Try the other device initialization scheme
  2632. if the first one fails (default 1 = enabled).
  2633. usbcore.initial_descriptor_timeout=
  2634. [USB] Specifies timeout for the initial 64-byte
  2635. USB_REQ_GET_DESCRIPTOR request in milliseconds
  2636. (default 5000 = 5.0 seconds).
  2637. usbhid.mousepoll=
  2638. [USBHID] The interval which mice are to be polled at.
  2639. usb-storage.delay_use=
  2640. [UMS] The delay in seconds before a new device is
  2641. scanned for Logical Units (default 5).
  2642. usb-storage.quirks=
  2643. [UMS] A list of quirks entries to supplement or
  2644. override the built-in unusual_devs list. List
  2645. entries are separated by commas. Each entry has
  2646. the form VID:PID:Flags where VID and PID are Vendor
  2647. and Product ID values (4-digit hex numbers) and
  2648. Flags is a set of characters, each corresponding
  2649. to a common usb-storage quirk flag as follows:
  2650. a = SANE_SENSE (collect more than 18 bytes
  2651. of sense data);
  2652. b = BAD_SENSE (don't collect more than 18
  2653. bytes of sense data);
  2654. c = FIX_CAPACITY (decrease the reported
  2655. device capacity by one sector);
  2656. d = NO_READ_DISC_INFO (don't use
  2657. READ_DISC_INFO command);
  2658. e = NO_READ_CAPACITY_16 (don't use
  2659. READ_CAPACITY_16 command);
  2660. h = CAPACITY_HEURISTICS (decrease the
  2661. reported device capacity by one
  2662. sector if the number is odd);
  2663. i = IGNORE_DEVICE (don't bind to this
  2664. device);
  2665. l = NOT_LOCKABLE (don't try to lock and
  2666. unlock ejectable media);
  2667. m = MAX_SECTORS_64 (don't transfer more
  2668. than 64 sectors = 32 KB at a time);
  2669. n = INITIAL_READ10 (force a retry of the
  2670. initial READ(10) command);
  2671. o = CAPACITY_OK (accept the capacity
  2672. reported by the device);
  2673. p = WRITE_CACHE (the device cache is ON
  2674. by default);
  2675. r = IGNORE_RESIDUE (the device reports
  2676. bogus residue values);
  2677. s = SINGLE_LUN (the device has only one
  2678. Logical Unit);
  2679. w = NO_WP_DETECT (don't test whether the
  2680. medium is write-protected).
  2681. Example: quirks=0419:aaf5:rl,0421:0433:rc
  2682. user_debug= [KNL,ARM]
  2683. Format: <int>
  2684. See arch/arm/Kconfig.debug help text.
  2685. 1 - undefined instruction events
  2686. 2 - system calls
  2687. 4 - invalid data aborts
  2688. 8 - SIGSEGV faults
  2689. 16 - SIGBUS faults
  2690. Example: user_debug=31
  2691. userpte=
  2692. [X86] Flags controlling user PTE allocations.
  2693. nohigh = do not allocate PTE pages in
  2694. HIGHMEM regardless of setting
  2695. of CONFIG_HIGHPTE.
  2696. vdso= [X86,SH]
  2697. vdso=2: enable compat VDSO (default with COMPAT_VDSO)
  2698. vdso=1: enable VDSO (default)
  2699. vdso=0: disable VDSO mapping
  2700. vdso32= [X86]
  2701. vdso32=2: enable compat VDSO (default with COMPAT_VDSO)
  2702. vdso32=1: enable 32-bit VDSO (default)
  2703. vdso32=0: disable 32-bit VDSO mapping
  2704. vector= [IA-64,SMP]
  2705. vector=percpu: enable percpu vector domain
  2706. video= [FB] Frame buffer configuration
  2707. See Documentation/fb/modedb.txt.
  2708. video.brightness_switch_enabled= [0,1]
  2709. If set to 1, on receiving an ACPI notify event
  2710. generated by hotkey, video driver will adjust brightness
  2711. level and then send out the event to user space through
  2712. the allocated input device; If set to 0, video driver
  2713. will only send out the event without touching backlight
  2714. brightness level.
  2715. default: 1
  2716. virtio_mmio.device=
  2717. [VMMIO] Memory mapped virtio (platform) device.
  2718. <size>@<baseaddr>:<irq>[:<id>]
  2719. where:
  2720. <size> := size (can use standard suffixes
  2721. like K, M and G)
  2722. <baseaddr> := physical base address
  2723. <irq> := interrupt number (as passed to
  2724. request_irq())
  2725. <id> := (optional) platform device id
  2726. example:
  2727. virtio_mmio.device=1K@0x100b0000:48:7
  2728. Can be used multiple times for multiple devices.
  2729. vga= [BOOT,X86-32] Select a particular video mode
  2730. See Documentation/x86/boot.txt and
  2731. Documentation/svga.txt.
  2732. Use vga=ask for menu.
  2733. This is actually a boot loader parameter; the value is
  2734. passed to the kernel using a special protocol.
  2735. vmalloc=nn[KMG] [KNL,BOOT] Forces the vmalloc area to have an exact
  2736. size of <nn>. This can be used to increase the
  2737. minimum size (128MB on x86). It can also be used to
  2738. decrease the size and leave more room for directly
  2739. mapped kernel RAM.
  2740. vmhalt= [KNL,S390] Perform z/VM CP command after system halt.
  2741. Format: <command>
  2742. vmpanic= [KNL,S390] Perform z/VM CP command after kernel panic.
  2743. Format: <command>
  2744. vmpoff= [KNL,S390] Perform z/VM CP command after power off.
  2745. Format: <command>
  2746. vsyscall= [X86-64]
  2747. Controls the behavior of vsyscalls (i.e. calls to
  2748. fixed addresses of 0xffffffffff600x00 from legacy
  2749. code). Most statically-linked binaries and older
  2750. versions of glibc use these calls. Because these
  2751. functions are at fixed addresses, they make nice
  2752. targets for exploits that can control RIP.
  2753. emulate [default] Vsyscalls turn into traps and are
  2754. emulated reasonably safely.
  2755. native Vsyscalls are native syscall instructions.
  2756. This is a little bit faster than trapping
  2757. and makes a few dynamic recompilers work
  2758. better than they would in emulation mode.
  2759. It also makes exploits much easier to write.
  2760. none Vsyscalls don't work at all. This makes
  2761. them quite hard to use for exploits but
  2762. might break your system.
  2763. vt.color= [VT] Default text color.
  2764. Format: 0xYX, X = foreground, Y = background.
  2765. Default: 0x07 = light gray on black.
  2766. vt.cur_default= [VT] Default cursor shape.
  2767. Format: 0xCCBBAA, where AA, BB, and CC are the same as
  2768. the parameters of the <Esc>[?A;B;Cc escape sequence;
  2769. see VGA-softcursor.txt. Default: 2 = underline.
  2770. vt.default_blu= [VT]
  2771. Format: <blue0>,<blue1>,<blue2>,...,<blue15>
  2772. Change the default blue palette of the console.
  2773. This is a 16-member array composed of values
  2774. ranging from 0-255.
  2775. vt.default_grn= [VT]
  2776. Format: <green0>,<green1>,<green2>,...,<green15>
  2777. Change the default green palette of the console.
  2778. This is a 16-member array composed of values
  2779. ranging from 0-255.
  2780. vt.default_red= [VT]
  2781. Format: <red0>,<red1>,<red2>,...,<red15>
  2782. Change the default red palette of the console.
  2783. This is a 16-member array composed of values
  2784. ranging from 0-255.
  2785. vt.default_utf8=
  2786. [VT]
  2787. Format=<0|1>
  2788. Set system-wide default UTF-8 mode for all tty's.
  2789. Default is 1, i.e. UTF-8 mode is enabled for all
  2790. newly opened terminals.
  2791. vt.global_cursor_default=
  2792. [VT]
  2793. Format=<-1|0|1>
  2794. Set system-wide default for whether a cursor
  2795. is shown on new VTs. Default is -1,
  2796. i.e. cursors will be created by default unless
  2797. overridden by individual drivers. 0 will hide
  2798. cursors, 1 will display them.
  2799. vt.italic= [VT] Default color for italic text; 0-15.
  2800. Default: 2 = green.
  2801. vt.underline= [VT] Default color for underlined text; 0-15.
  2802. Default: 3 = cyan.
  2803. watchdog timers [HW,WDT] For information on watchdog timers,
  2804. see Documentation/watchdog/watchdog-parameters.txt
  2805. or other driver-specific files in the
  2806. Documentation/watchdog/ directory.
  2807. workqueue.disable_numa
  2808. By default, all work items queued to unbound
  2809. workqueues are affine to the NUMA nodes they're
  2810. issued on, which results in better behavior in
  2811. general. If NUMA affinity needs to be disabled for
  2812. whatever reason, this option can be used. Note
  2813. that this also can be controlled per-workqueue for
  2814. workqueues visible under /sys/bus/workqueue/.
  2815. workqueue.power_efficient
  2816. Per-cpu workqueues are generally preferred because
  2817. they show better performance thanks to cache
  2818. locality; unfortunately, per-cpu workqueues tend to
  2819. be more power hungry than unbound workqueues.
  2820. Enabling this makes the per-cpu workqueues which
  2821. were observed to contribute significantly to power
  2822. consumption unbound, leading to measurably lower
  2823. power usage at the cost of small performance
  2824. overhead.
  2825. The default value of this parameter is determined by
  2826. the config option CONFIG_WQ_POWER_EFFICIENT_DEFAULT.
  2827. x2apic_phys [X86-64,APIC] Use x2apic physical mode instead of
  2828. default x2apic cluster mode on platforms
  2829. supporting x2apic.
  2830. x86_mrst_timer= [X86-32,APBT]
  2831. Choose timer option for x86 Moorestown MID platform.
  2832. Two valid options are apbt timer only and lapic timer
  2833. plus one apbt timer for broadcast timer.
  2834. x86_mrst_timer=apbt_only | lapic_and_apbt
  2835. xen_emul_unplug= [HW,X86,XEN]
  2836. Unplug Xen emulated devices
  2837. Format: [unplug0,][unplug1]
  2838. ide-disks -- unplug primary master IDE devices
  2839. aux-ide-disks -- unplug non-primary-master IDE devices
  2840. nics -- unplug network devices
  2841. all -- unplug all emulated devices (NICs and IDE disks)
  2842. unnecessary -- unplugging emulated devices is
  2843. unnecessary even if the host did not respond to
  2844. the unplug protocol
  2845. never -- do not unplug even if version check succeeds
  2846. xen_nopvspin [X86,XEN]
  2847. Disables the ticketlock slowpath using Xen PV
  2848. optimizations.
  2849. xirc2ps_cs= [NET,PCMCIA]
  2850. Format:
  2851. <irq>,<irq_mask>,<io>,<full_duplex>,<do_sound>,<lockup_hack>[,<irq2>[,<irq3>[,<irq4>]]]
  2852. ______________________________________________________________________
  2853. TODO:
  2854. Add more DRM drivers.