diff options
| -rw-r--r-- | documentation/poky-ref-manual/faq.xml | 68 |
1 files changed, 68 insertions, 0 deletions
diff --git a/documentation/poky-ref-manual/faq.xml b/documentation/poky-ref-manual/faq.xml index 96e32d5192..366db6c412 100644 --- a/documentation/poky-ref-manual/faq.xml +++ b/documentation/poky-ref-manual/faq.xml | |||
| @@ -348,6 +348,74 @@ | |||
| 348 | </para> | 348 | </para> |
| 349 | </answer> | 349 | </answer> |
| 350 | </qandaentry> | 350 | </qandaentry> |
| 351 | |||
| 352 | <qandaentry> | ||
| 353 | <question> | ||
| 354 | <para> | ||
| 355 | How do I disable the cursor on my touchscreen device? | ||
| 356 | </para> | ||
| 357 | </question> | ||
| 358 | <answer> | ||
| 359 | <para> | ||
| 360 | You need to create a form factor file as described in | ||
| 361 | <xref linkend='bsp-filelayout-misc-recipes'>"Miscellaneous Recipe Files"</xref> | ||
| 362 | and set the <filename>HAVE_TOUCHSCREEN</filename> variable equal to one. | ||
| 363 | <literallayout class='monospaced'> | ||
| 364 | HAVE_TOUCHSCREEN=1 | ||
| 365 | </literallayout> | ||
| 366 | </para> | ||
| 367 | </answer> | ||
| 368 | </qandaentry> | ||
| 369 | |||
| 370 | <qandaentry> | ||
| 371 | <question> | ||
| 372 | <para> | ||
| 373 | How do I make sure connected network interfaces are brought up by default? | ||
| 374 | </para> | ||
| 375 | </question> | ||
| 376 | <answer> | ||
| 377 | <para> | ||
| 378 | The default interfaces file provided by the netbase recipe does not | ||
| 379 | automatically bring up network interfaces. | ||
| 380 | Therefore you will need to add a BSP-specific netbase that includes an interfaces | ||
| 381 | file. | ||
| 382 | See <xref linkend='bsp-filelayout-misc-recipes'>"Miscellaneous Recipe Files"</xref> | ||
| 383 | for information on creating these types of miscellaneous recipe files. | ||
| 384 | </para> | ||
| 385 | <para> | ||
| 386 | For example, add the following files to your layer: | ||
| 387 | <literallayout class='monospaced'> | ||
| 388 | meta-MACHINE/recipes-bsp/netbase/netbase/MACHINE/interfaces | ||
| 389 | meta-MACHINE/recipes-bsp/netbase/netbase_4.44.bbappend | ||
| 390 | </literallayout> | ||
| 391 | </para> | ||
| 392 | </answer> | ||
| 393 | </qandaentry> | ||
| 394 | |||
| 395 | <qandaentry> | ||
| 396 | <question> | ||
| 397 | <para> | ||
| 398 | How do I create images with more free space? | ||
| 399 | </para> | ||
| 400 | </question> | ||
| 401 | <answer> | ||
| 402 | <para> | ||
| 403 | Images are created to be 1.2 times the size of the populated root filesystem. | ||
| 404 | To modify this ratio so that there is more free space available you need to | ||
| 405 | set the configuration value <filename>IMAGE_OVERHEAD_FACTOR</filename>. | ||
| 406 | For example, setting <filename>IMAGE_OVERHEAD_FACTOR</filename> to 1.5 sets | ||
| 407 | the image size ratio to one and a half times the size of the populated | ||
| 408 | root filesystem. | ||
| 409 | <literallayout class='monospaced'> | ||
| 410 | IMAGE_OVERHEAD_FACTOR = "1.5" | ||
| 411 | </literallayout> | ||
| 412 | </para> | ||
| 413 | </answer> | ||
| 414 | </qandaentry> | ||
| 415 | |||
| 416 | |||
| 417 | |||
| 418 | |||
| 351 | </qandaset> | 419 | </qandaset> |
| 352 | </appendix> | 420 | </appendix> |
| 353 | <!-- | 421 | <!-- |
