| Submitter | Saul Wold |
|---|---|
| Date | April 10, 2012, 10:20 p.m. |
| Message ID | <1334096422-28007-1-git-send-email-sgw@linux.intel.com> |
| Download | mbox | patch |
| Permalink | /patch/25541/ |
| State | New |
| Headers | show |
Comments
On Tue, 2012-04-10 at 15:20 -0700, Saul Wold wrote: > Signed-off-by: Saul Wold <sgw@linux.intel.com> > --- > lib/bb/ui/crumbs/builder.py | 7 ++++--- > lib/bb/ui/crumbs/hig.py | 3 ++- > 2 files changed, 6 insertions(+), 4 deletions(-) > > diff --git a/lib/bb/ui/crumbs/builder.py b/lib/bb/ui/crumbs/builder.py > index a3410d4..e48afde 100755 > --- a/lib/bb/ui/crumbs/builder.py > +++ b/lib/bb/ui/crumbs/builder.py > @@ -37,6 +37,7 @@ from bb.ui.crumbs.hig import CrumbsMessageDialog, ImageSelectionDialog, \ > AdvancedSettingDialog, LayerSelectionDialog, \ > DeployImageDialog > from bb.ui.crumbs.persistenttooltip import PersistentTooltip > +import bb.ui.crumbs.utils > > class Configuration: > '''Represents the data structure of configuration.''' > @@ -946,10 +947,10 @@ class Builder(gtk.Window): > tmp_path = self.parameters.tmpdir > if os.path.exists(image_path) and os.path.exists(kernel_path) \ > and os.path.exists(source_env_path) and os.path.exists(tmp_path): > - cmdline = "/usr/bin/xterm -e " > - cmdline += "\" export OE_TMPDIR=" + tmp_path + "; " > + cmdline = bb.ui.crumbs.utils.which_terminal() > + cmdline += "\' bash -c \"export OE_TMPDIR=" + tmp_path + "; " > cmdline += "source " + source_env_path + " " + os.getcwd() + "; " > - cmdline += "runqemu " + kernel_path + " " + image_path + "; bash\"" > + cmdline += "runqemu " + kernel_path + " " + image_path + "\"\'" This appears to do a bit more than you describe in the change message? You also should check the return value of bb.ui.crumbs.utils.which_terminal(). > subprocess.Popen(shlex.split(cmdline)) > else: > lbl = "<b>Path error</b>\nOne of your paths is wrong," > diff --git a/lib/bb/ui/crumbs/hig.py b/lib/bb/ui/crumbs/hig.py > index 9adb281..508503c 100644 > --- a/lib/bb/ui/crumbs/hig.py > +++ b/lib/bb/ui/crumbs/hig.py > @@ -30,6 +30,7 @@ import shlex > from bb.ui.crumbs.hobcolor import HobColors > from bb.ui.crumbs.hobwidget import hcc, hic, HobViewTable, HobInfoButton, HobButton, HobAltButton, HobIconChecker > from bb.ui.crumbs.progressbar import HobProgressBar > +import bb.ui.crumbs.utils > > """ > The following are convenience classes for implementing GNOME HIG compliant > @@ -737,7 +738,7 @@ class DeployImageDialog (CrumbsDialog): > if response_id == gtk.RESPONSE_YES: > combo_item = self.usb_combo.get_active_text() > if combo_item and combo_item != self.__dummy_usb__: > - cmdline = "/usr/bin/xterm -e " > + cmdline = bb.ui.crumbs.utils.which_terminal() > cmdline += "\"sudo dd if=" + self.image_path + " of=" + combo_item + "; bash\"" > subprocess.Popen(args=shlex.split(cmdline)) So you remove the bash above but not here? Cheers, Richard
Patch
diff --git a/lib/bb/ui/crumbs/builder.py b/lib/bb/ui/crumbs/builder.py index a3410d4..e48afde 100755 --- a/lib/bb/ui/crumbs/builder.py +++ b/lib/bb/ui/crumbs/builder.py @@ -37,6 +37,7 @@ from bb.ui.crumbs.hig import CrumbsMessageDialog, ImageSelectionDialog, \ AdvancedSettingDialog, LayerSelectionDialog, \ DeployImageDialog from bb.ui.crumbs.persistenttooltip import PersistentTooltip +import bb.ui.crumbs.utils class Configuration: '''Represents the data structure of configuration.''' @@ -946,10 +947,10 @@ class Builder(gtk.Window): tmp_path = self.parameters.tmpdir if os.path.exists(image_path) and os.path.exists(kernel_path) \ and os.path.exists(source_env_path) and os.path.exists(tmp_path): - cmdline = "/usr/bin/xterm -e " - cmdline += "\" export OE_TMPDIR=" + tmp_path + "; " + cmdline = bb.ui.crumbs.utils.which_terminal() + cmdline += "\' bash -c \"export OE_TMPDIR=" + tmp_path + "; " cmdline += "source " + source_env_path + " " + os.getcwd() + "; " - cmdline += "runqemu " + kernel_path + " " + image_path + "; bash\"" + cmdline += "runqemu " + kernel_path + " " + image_path + "\"\'" subprocess.Popen(shlex.split(cmdline)) else: lbl = "<b>Path error</b>\nOne of your paths is wrong," diff --git a/lib/bb/ui/crumbs/hig.py b/lib/bb/ui/crumbs/hig.py index 9adb281..508503c 100644 --- a/lib/bb/ui/crumbs/hig.py +++ b/lib/bb/ui/crumbs/hig.py @@ -30,6 +30,7 @@ import shlex from bb.ui.crumbs.hobcolor import HobColors from bb.ui.crumbs.hobwidget import hcc, hic, HobViewTable, HobInfoButton, HobButton, HobAltButton, HobIconChecker from bb.ui.crumbs.progressbar import HobProgressBar +import bb.ui.crumbs.utils """ The following are convenience classes for implementing GNOME HIG compliant @@ -737,7 +738,7 @@ class DeployImageDialog (CrumbsDialog): if response_id == gtk.RESPONSE_YES: combo_item = self.usb_combo.get_active_text() if combo_item and combo_item != self.__dummy_usb__: - cmdline = "/usr/bin/xterm -e " + cmdline = bb.ui.crumbs.utils.which_terminal() cmdline += "\"sudo dd if=" + self.image_path + " of=" + combo_item + "; bash\"" subprocess.Popen(args=shlex.split(cmdline))
Signed-off-by: Saul Wold <sgw@linux.intel.com> --- lib/bb/ui/crumbs/builder.py | 7 ++++--- lib/bb/ui/crumbs/hig.py | 3 ++- 2 files changed, 6 insertions(+), 4 deletions(-)