Yocto BSP One-Stop Shop (Documentation Overview, Getting Started, FAQs, and more): Difference between revisions

From Yocto Project
Jump to navigationJump to search
(Everything you need to know about writing Yocto BSPs in one place)
 
Line 8: Line 8:


=== FAQs ===
=== FAQs ===
'''Q: I'm debugging X/sato in my BSP.  How do I stop/start/restart X/sato?'''
'''A:'''
To stop X:
# /etc/init.d/xserver-nodm stop
To start X:
# /etc/init.d/xserver-nodm start
To restart X:
# /etc/init.d/xserver-nodm restart
'''Q: How do I set kernel config options for my BSP?'''
'''A:'''
See the section
[https://wiki.yoctoproject.org/wiki/BKM:_starting_a_new_BSP#Adding_new_options_and.2For_changing_kernel_code Adding new options and changing kernel code] in the [https://wiki.yoctoproject.org/wiki/BKM:_starting_a_new_BSP Starting a new Yocto BSP] article.

Revision as of 22:17, 16 November 2011

This page is meant to be the single-source authority on everything you need to know to create and maintain a Yocto BSP, including how to interact with the community.

I try to make sure everything here is accurate and up-to-date, but if you see something that's not, please do change it directly or send me (tom.zanussi@intel.com) the changes you'd like to see and I'll do my best to fix things up.

Starting Out

Want to know how to start a new Yocto BSP? One way would be to take a look at this document: Starting a new Yocto BSP

FAQs

Q: I'm debugging X/sato in my BSP. How do I stop/start/restart X/sato?

A: To stop X:

# /etc/init.d/xserver-nodm stop

To start X:

# /etc/init.d/xserver-nodm start

To restart X:

# /etc/init.d/xserver-nodm restart

Q: How do I set kernel config options for my BSP?

A: See the section Adding new options and changing kernel code in the Starting a new Yocto BSP article.