diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-03 22:02:43 +0000 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2011-11-04 17:05:53 +0000 |
commit | 426ad821065c50fc008a140e5b2334d2c97511c3 (patch) | |
tree | c0c5fc0c6a22e9c12dbbb20307328132ef2bf4ca /meta | |
parent | 9d1f10ed012de6976141a29ba483e0b96781fe28 (diff) | |
download | poky-426ad821065c50fc008a140e5b2334d2c97511c3.tar.gz |
bitbake.conf: Drop remaining TERMCMD pieces and document OE_TERMINAL usage instead
(From OE-Core rev: ddb825c87dd3e59d50841a993080a00d1459b1e7)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
[Yes, this one is against meta-yocto, I'll fix it to apply the same
change to OE-Core's local.conf.sample in the final version]
Diffstat (limited to 'meta')
-rw-r--r-- | meta/classes/sanity.bbclass | 13 | ||||
-rw-r--r-- | meta/conf/bitbake.conf | 20 |
2 files changed, 0 insertions, 33 deletions
diff --git a/meta/classes/sanity.bbclass b/meta/classes/sanity.bbclass index 406740819c..3f42b4f7cd 100644 --- a/meta/classes/sanity.bbclass +++ b/meta/classes/sanity.bbclass | |||
@@ -331,19 +331,6 @@ def check_sanity(e): | |||
331 | if not data.getVar( 'DISPLAY', e.data, True ) and data.getVar( 'IMAGETEST', e.data, True ) == 'qemu': | 331 | if not data.getVar( 'DISPLAY', e.data, True ) and data.getVar( 'IMAGETEST', e.data, True ) == 'qemu': |
332 | messages = messages + 'qemuimagetest needs a X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n' | 332 | messages = messages + 'qemuimagetest needs a X desktop to start qemu, please set DISPLAY correctly (e.g. DISPLAY=:1.0)\n' |
333 | 333 | ||
334 | if data.getVar('PATCHRESOLVE', e.data, True) != 'noop': | ||
335 | # Ensure we have the binary for TERMCMD, as when patch application fails the error is fairly intimidating | ||
336 | termcmd = data.getVar("TERMCMD", e.data, True) | ||
337 | term = termcmd.split()[0] | ||
338 | if not check_app_exists(term, e.data): | ||
339 | messages = messages + "The console for use in patch error resolution is not available, please install %s or set TERMCMD and TERMCMDRUN (as documented in local.conf).\n" % term | ||
340 | elif "konsole" in term: | ||
341 | import oe.terminal | ||
342 | vernum = oe.terminal.check_konsole_version(term) | ||
343 | if vernum: | ||
344 | if vernum.split('.')[0] == '2': | ||
345 | messages = messages + 'Konsole from KDE 4.x will not work as TERMCMD/TERMCMDRUN, please specify a different terminal or set PATCHRESOLVE = "noop" to disable interactive patch resolution.\n' | ||
346 | |||
347 | if os.path.basename(os.readlink('/bin/sh')) == 'dash': | 334 | if os.path.basename(os.readlink('/bin/sh')) == 'dash': |
348 | messages = messages + "Using dash as /bin/sh causes various subtle build problems, please use bash instead (e.g. 'dpkg-reconfigure dash' on an Ubuntu system.\n" | 335 | messages = messages + "Using dash as /bin/sh causes various subtle build problems, please use bash instead (e.g. 'dpkg-reconfigure dash' on an Ubuntu system.\n" |
349 | 336 | ||
diff --git a/meta/conf/bitbake.conf b/meta/conf/bitbake.conf index 9938a676a5..d405b6a7ff 100644 --- a/meta/conf/bitbake.conf +++ b/meta/conf/bitbake.conf | |||
@@ -589,26 +589,6 @@ FAKEROOTENV = "PSEUDO_PREFIX=${STAGING_DIR_NATIVE}${prefix_native} PSEUDO_LOCALS | |||
589 | FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}" | 589 | FAKEROOTDIRS = "${PSEUDO_LOCALSTATEDIR}" |
590 | PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" | 590 | PREFERRED_PROVIDER_virtual/fakeroot-native ?= "pseudo-native" |
591 | 591 | ||
592 | |||
593 | ################################################################## | ||
594 | # UI/Interaction Configuration | ||
595 | ################################################################## | ||
596 | |||
597 | export SHELLCMDS = "bash" | ||
598 | # Some common terminal programs to choose from | ||
599 | GNOME_TERMCMD = 'gnome-terminal --disable-factory -t "$TERMWINDOWTITLE"' | ||
600 | GNOME_TERMCMDRUN = '${GNOME_TERMCMD} -x $SHELLCMDS' | ||
601 | SCREEN_TERMCMD = 'screen -D -m -t "$TERMWINDOWTITLE"' | ||
602 | SCREEN_TERMCMDRUN = '${SCREEN_TERMCMD} $SHELLCMDS' | ||
603 | XTERM_TERMCMD = 'xterm -T "$TERMWINDOWTITLE"' | ||
604 | XTERM_TERMCMDRUN = '${XTERM_TERMCMD} -e $SHELLCMDS' | ||
605 | KONSOLE_TERMCMD = 'konsole -T "$TERMWINDOWTITLE"' | ||
606 | KONSOLE_TERMCMDRUN = '${KONSOLE_TERMCMD} -e $SHELLCMDS' | ||
607 | |||
608 | # Set a default | ||
609 | TERMCMD ?= "${XTERM_TERMCMD}" | ||
610 | TERMCMDRUN ?= "${XTERM_TERMCMDRUN}" | ||
611 | |||
612 | ################################################################## | 592 | ################################################################## |
613 | # Miscellaneous utilities. | 593 | # Miscellaneous utilities. |
614 | ################################################################## | 594 | ################################################################## |