summaryrefslogtreecommitdiffstats
path: root/meta/conf/templates
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2019-09-01 11:38:44 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-07 10:29:39 +0000
commit72a201a4475ae8fb8127457e620681ce7c4d1630 (patch)
treea1a15b6a58c87636895eec1ef9ca9dad1bbdf81b /meta/conf/templates
parent48209108d793d42c2413f14ddaafd96fe638bdc2 (diff)
downloadopenembedded-core-72a201a4475ae8fb8127457e620681ce7c4d1630.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/conf/templates')
-rw-r--r--meta/conf/templates/default/local.conf.sample10
1 files changed, 7 insertions, 3 deletions
diff --git a/meta/conf/templates/default/local.conf.sample b/meta/conf/templates/default/local.conf.sample
index 16d012080c..50fd574fd3 100644
--- a/meta/conf/templates/default/local.conf.sample
+++ b/meta/conf/templates/default/local.conf.sample
@@ -208,12 +208,16 @@ BB_DISKMON_DIRS ??= "\
# Qemu configuration
#
# By default native qemu will build with a builtin VNC server where graphical output can be
-# seen. The line below enable the SDL backend too. By default libsdl2-native will
-# be built, if you want to use your host's libSDL instead of the minimal libsdl built
-# by libsdl2-native then uncomment the ASSUME_PROVIDED line below.
+# seen. The line below enables the SDL UI frontend too.
PACKAGECONFIG:append:pn-qemu-system-native = " sdl"
+# By default libsdl2-native will be built, if you want to use your host's libSDL instead of
+# the minimal libsdl built by libsdl2-native then uncomment the ASSUME_PROVIDED line below.
#ASSUME_PROVIDED += "libsdl2-native"
+# You can also enable the Gtk UI frontend, which takes somewhat longer to build, but adds
+# a handy set of menus for controlling the emulator.
+#PACKAGECONFIG:append:pn-qemu-system-native = " gtk+"
+
#
# Hash Equivalence
#