diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-15 16:30:29 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2013-12-16 12:13:59 +0000 |
commit | 9daa1de753e58b7f678e68cf307f6028c0c79a6a (patch) | |
tree | 939ac7fc27f41f482928adb4ab2650cb802dbd32 /meta-yocto | |
parent | cd5d65a83f1c1b6458f456b9f76ecfcf91cc325d (diff) | |
download | poky-9daa1de753e58b7f678e68cf307f6028c0c79a6a.tar.gz |
qemu/local.conf.sample: Add sdl PACKAGECONFIG
Currently the SDL configuration option for qemu floats. This is confusing to new users
and makes the build non-determinstic. This patch adds a PACKAGECONFIG option, defaulting
to off and adds documentation to local.conf.sample leaving it on by default since this
is the configuration our quick start assumes.
(From meta-yocto rev: 1ddafa2d5200793f81808d79d1668282d57c2e93)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-yocto')
-rw-r--r-- | meta-yocto/conf/local.conf.sample | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/meta-yocto/conf/local.conf.sample b/meta-yocto/conf/local.conf.sample index 885d4dba47..71856b8563 100644 --- a/meta-yocto/conf/local.conf.sample +++ b/meta-yocto/conf/local.conf.sample | |||
@@ -229,6 +229,17 @@ BB_DISKMON_DIRS = "\ | |||
229 | #file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \ | 229 | #file://.* http://someserver.tld/share/sstate/PATH;downloadfilename=PATH \n \ |
230 | #file://.* file:///some/local/dir/sstate/PATH" | 230 | #file://.* file:///some/local/dir/sstate/PATH" |
231 | 231 | ||
232 | |||
233 | # | ||
234 | # Qemu configuration | ||
235 | # | ||
236 | # By default qemu will build with a builtin VNC server where graphical output can be | ||
237 | # seen. The two lines below enable the SDL backend too. This assumes there is a | ||
238 | # libsdl library available on your build system. | ||
239 | PACKAGECONFIG_pn-qemu-native = "sdl" | ||
240 | ASSUME_PROVIDED += "libsdl-native" | ||
241 | |||
242 | |||
232 | # CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to | 243 | # CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to |
233 | # track the version of this file when it was generated. This can safely be ignored if | 244 | # track the version of this file when it was generated. This can safely be ignored if |
234 | # this doesn't mean anything to you. | 245 | # this doesn't mean anything to you. |