summaryrefslogtreecommitdiffstats
path: root/bitbake
diff options
context:
space:
mode:
authorJoshua Lock <josh@linux.intel.com>2011-09-02 16:02:50 -0700
committerRichard Purdie <richard.purdie@linuxfoundation.org>2011-09-05 20:25:42 +0100
commitc0cb486a3965fca361342adcf9b936fc0ff9263a (patch)
treeb1c4940c3aa12e8fe9418820b48fc8acb4335e50 /bitbake
parent9a6739879191c8b215e4fbce53e2d4c8d278d71a (diff)
downloadpoky-c0cb486a3965fca361342adcf9b936fc0ff9263a.tar.gz
ui/crumbs/hobprefs: disable 'build toolchain with headers'
The generic meta-toolchain-sdk we are currently building when this option is enabled is likely unsuitable for the majority of images built with hob. Remove this option from the Preferences UI until such a time as we can correctly implement this feature to include the library headers for the selected packages. Addresses [YOCTO #1302] (Bitbake rev: 3157967d08266b8d1ac563ba609ac3027b60d040) Signed-off-by: Joshua Lock <josh@linux.intel.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'bitbake')
-rw-r--r--bitbake/lib/bb/ui/crumbs/hobprefs.py12
1 files changed, 6 insertions, 6 deletions
diff --git a/bitbake/lib/bb/ui/crumbs/hobprefs.py b/bitbake/lib/bb/ui/crumbs/hobprefs.py
index 14d6bc7b23..8d148cde1a 100644
--- a/bitbake/lib/bb/ui/crumbs/hobprefs.py
+++ b/bitbake/lib/bb/ui/crumbs/hobprefs.py
@@ -326,9 +326,9 @@ class HobPrefs(gtk.Dialog):
326 self.sdk_machine_combo.set_tooltip_text("Select the host architecture of the external machine") 326 self.sdk_machine_combo.set_tooltip_text("Select the host architecture of the external machine")
327 self.sdk_machine_combo.show() 327 self.sdk_machine_combo.show()
328 hbox.pack_start(self.sdk_machine_combo, expand=False, fill=False, padding=6) 328 hbox.pack_start(self.sdk_machine_combo, expand=False, fill=False, padding=6)
329 headerscheck = gtk.CheckButton("Include development headers with toolchain") 329 # headerscheck = gtk.CheckButton("Include development headers with toolchain")
330 headerscheck.show() 330 # headerscheck.show()
331 headerscheck.set_active(self.build_toolchain_headers) 331 # headerscheck.set_active(self.build_toolchain_headers)
332 headerscheck.connect("toggled", self.toggle_headers_cb) 332 # headerscheck.connect("toggled", self.toggle_headers_cb)
333 hbox.pack_start(headerscheck, expand=False, fill=False, padding=6) 333 # hbox.pack_start(headerscheck, expand=False, fill=False, padding=6)
334 self.connect("response", self.prefs_response_cb) 334 # self.connect("response", self.prefs_response_cb)