diff options
Diffstat (limited to 'documentation/ref-manual/ref-variables.xml')
-rw-r--r-- | documentation/ref-manual/ref-variables.xml | 19 |
1 files changed, 13 insertions, 6 deletions
diff --git a/documentation/ref-manual/ref-variables.xml b/documentation/ref-manual/ref-variables.xml index 22b8f2e03e..b869bc91a1 100644 --- a/documentation/ref-manual/ref-variables.xml +++ b/documentation/ref-manual/ref-variables.xml | |||
@@ -5344,8 +5344,9 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
5344 | <glossentry id='var-module_conf'><glossterm>module_conf</glossterm> | 5344 | <glossentry id='var-module_conf'><glossterm>module_conf</glossterm> |
5345 | <glossdef> | 5345 | <glossdef> |
5346 | <para> | 5346 | <para> |
5347 | Specifies <filename>modprobe.d</filename> syntax lines | 5347 | Specifies |
5348 | for inclusion in the | 5348 | <ulink url='http://linux.die.net/man/5/modprobe.d'><filename>modprobe.d</filename></ulink> |
5349 | syntax lines for inclusion in the | ||
5349 | <filename>/etc/modprobe.d/modname.conf</filename> file. | 5350 | <filename>/etc/modprobe.d/modname.conf</filename> file. |
5350 | </para> | 5351 | </para> |
5351 | 5352 | ||
@@ -5355,19 +5356,23 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
5355 | module recipe (e.g. a machine configuration file, a | 5356 | module recipe (e.g. a machine configuration file, a |
5356 | distribution configuration file, an append file for the | 5357 | distribution configuration file, an append file for the |
5357 | recipe, or the recipe itself). | 5358 | recipe, or the recipe itself). |
5359 | If you use this variable, you must also be sure to list | ||
5360 | the module name in the | ||
5361 | <filename>KERNEL_MODULE_PROBECONF</filename> | ||
5362 | variable. | ||
5358 | </para> | 5363 | </para> |
5359 | 5364 | ||
5360 | <para> | 5365 | <para> |
5361 | Here is the general syntax: | 5366 | Here is the general syntax: |
5362 | <literallayout class='monospaced'> | 5367 | <literallayout class='monospaced'> |
5363 | module_conf_<modname> = "modprobe.d-syntax" | 5368 | module_conf_<modname> = "<modprobe.d syntax>" |
5364 | </literallayout> | 5369 | </literallayout> |
5365 | You must use the kernel module name override. | 5370 | You must use the kernel module name override. |
5366 | </para> | 5371 | </para> |
5367 | 5372 | ||
5368 | <para> | 5373 | <para> |
5369 | Run <filename>man modprobe.d</filename> in the shell to | 5374 | Run <filename>man modprobe.d</filename> in the shell to |
5370 | find out more information on the exact syntax for lines | 5375 | find out more information on the exact syntax |
5371 | you want to provide with <filename>module_conf</filename>. | 5376 | you want to provide with <filename>module_conf</filename>. |
5372 | </para> | 5377 | </para> |
5373 | 5378 | ||
@@ -5376,9 +5381,11 @@ recipes-graphics/xorg-font/font-alias_1.0.3.bb:PR = "${INC_PR}.3" | |||
5376 | OpenEmbedded build system to populate the | 5381 | OpenEmbedded build system to populate the |
5377 | <filename>/etc/modprobe.d/modname.conf</filename> | 5382 | <filename>/etc/modprobe.d/modname.conf</filename> |
5378 | file with <filename>modprobe.d</filename> syntax lines. | 5383 | file with <filename>modprobe.d</filename> syntax lines. |
5379 | Here is an example: | 5384 | Here is an example that adds the options |
5385 | <filename>arg1</filename> and <filename>arg2</filename> | ||
5386 | to a module named <filename>mymodule</filename>: | ||
5380 | <literallayout class='monospaced'> | 5387 | <literallayout class='monospaced'> |
5381 | module_conf_<modname> = "options modname arg1=val1 arg2=val2" | 5388 | module_conf_mymodule = "options mymodule arg1=val1 arg2=val2" |
5382 | </literallayout> | 5389 | </literallayout> |
5383 | </para> | 5390 | </para> |
5384 | 5391 | ||