summaryrefslogtreecommitdiffstats
path: root/meta-poky
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-09-01 11:38:44 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2019-09-06 08:25:29 +0100
commit48945dfca39be6e6430b4ba7c7841ab5ba185676 (patch)
tree08f2eb220708109ebcbeb7bb8737467a137b5156 /meta-poky
parent49f24df065c313ec85f4d326387895303f89247b (diff)
downloadpoky-48945dfca39be6e6430b4ba7c7841ab5ba185676.tar.gz
local.conf.sample: add a commented-out option to enable the gtk UI qemu frontend
Gtk is disabled by default as SDL is somewhat quicker to build. (From meta-yocto rev: d48f63bba98c94171db5da826c35c50ff638d2fb) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-poky')
-rw-r--r--meta-poky/conf/local.conf.sample10
1 files changed, 7 insertions, 3 deletions
diff --git a/meta-poky/conf/local.conf.sample b/meta-poky/conf/local.conf.sample
index b36530dd8c..c86eee4560 100644
--- a/meta-poky/conf/local.conf.sample
+++ b/meta-poky/conf/local.conf.sample
@@ -238,12 +238,16 @@ BB_DISKMON_DIRS ??= "\
238# Qemu configuration 238# Qemu configuration
239# 239#
240# By default native qemu will build with a builtin VNC server where graphical output can be 240# By default native qemu will build with a builtin VNC server where graphical output can be
241# seen. The line below enable the SDL backend too. By default libsdl2-native will 241# seen. The line below enables the SDL UI frontend too.
242# be built, if you want to use your host's libSDL instead of the minimal libsdl built
243# by libsdl2-native then uncomment the ASSUME_PROVIDED line below.
244PACKAGECONFIG_append_pn-qemu-system-native = " sdl" 242PACKAGECONFIG_append_pn-qemu-system-native = " sdl"
243# By default libsdl2-native will be built, if you want to use your host's libSDL instead of
244# the minimal libsdl built by libsdl2-native then uncomment the ASSUME_PROVIDED line below.
245#ASSUME_PROVIDED += "libsdl2-native" 245#ASSUME_PROVIDED += "libsdl2-native"
246 246
247# You can also enable the Gtk UI frontend, which takes somewhat longer to build, but adds
248# a handy set of menus for controlling the emulator.
249#PACKAGECONFIG_append_pn-qemu-system-native = " gtk+"
250
247# CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to 251# CONF_VERSION is increased each time build/conf/ changes incompatibly and is used to
248# track the version of this file when it was generated. This can safely be ignored if 252# track the version of this file when it was generated. This can safely be ignored if
249# this doesn't mean anything to you. 253# this doesn't mean anything to you.