aboutsummaryrefslogtreecommitdiffstats
path: root/recipes-gnome
AgeCommit message (Collapse)Author
2018-03-28gtk+3.bbappend: refresh patchesHongxu Jia
fix: Some of the context lines in patches were ignored. This can lead to incorrectly applied patches. The context lines in the patches can be updated with devtool: devtool modify <recipe> devtool finish --force-patch-refresh <recipe> <layer_path> Then the updated patches and the source tree (in devtool's workspace) should be reviewed to make sure the patches apply in the correct place and don't introduce duplicate lines (which can, and does happen when some of the context is ignored). Further information: http://lists.openembedded.org/pipermail/openembedded-core/2018-March/148675.html https://bugzilla.yoctoproject.org/show_bug.cgi?id=10450 Details: Applying patch workaround-for-anaconda-installer-while-loading-libA.patch patching file gtk/gtkbuilder.c Hunk #1 succeeded at 402 (offset 4 lines). Hunk #2 succeeded at 430 with fuzz 1 (offset 4 lines). Now at patch workaround-for-anaconda-installer-while-loading-libA.patch Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>
2017-11-24meta-anaconda: add gtk+3 bbappendHongxu Jia
Here is easy way to reproduce the failure: ... root@localhost:~# python >>> from gi.repository import Gtk, AnacondaWidgets >>> builder = Gtk.Builder() >>> builder.get_type_from_name("AnacondaStandaloneWindow") <GType invalid (0)> ... Which is expected: ... root@localhost:~# python >>> from gi.repository import Gtk, AnacondaWidgets >>> builder = Gtk.Builder() >>> builder.get_type_from_name("AnacondaStandaloneWindow") <GType AnacondaStandaloneWindow (7297024)> ... The root cause is the issue of 'g_module_open' and 'g_module_symbol' in libgmodule-2.0.so.0: While invoking 'g_module_open("libAnacondaWidgets.so.4.0.0",G_MODULE_BIND_LAZY);', the following invoking 'g_module_open(NULL, G_MODULE_BIND_LAZY);' could not find its symbol by invoking g_module_symbol. So hardcode to load the anaconda module explicitly to workaround failure while anaconda installer loading libAnacondaWidgets. The bbappend works only if DISTRO = "anaconda". Signed-off-by: Hongxu Jia <hongxu.jia@windriver.com>