endif
ifdef CONFIG_DARWIN
cp check-hax $(EMUL_DIR)/bin
+ cp sdbscript $(EMUL_DIR)/bin
endif
ifdef CONFIG_LINUX
cp -pPr ../distrib/initscript/tizen-kvm $(EMUL_DIR)/etc
--- /dev/null
+#!/bin/sh
+TITLE=$1
+osascript > /dev/null << END
+tell application "Terminal"
+do script "`pwd`/../../sdb -s $TITLE shell"
+set custom title of first window to "$TITLE"
+end tell
+END
procSdb.command("cmd.exe", "/c", "start", sdbPath, "sdb",
"-s", "emulator-" + portSdb, "shell");
} else if (SwtUtil.isMacPlatform()) {
- procSdb.command("/usr/X11/bin/uxterm", "-T", "emulator-" + portSdb, "-e", sdbPath,"shell");
+ procSdb.command("./sdbscript", "emulator-" + portSdb);
+ //procSdb.command("/usr/X11/bin/uxterm", "-T", "emulator-" + portSdb, "-e", sdbPath,"shell");
}
logger.log(Level.INFO, procSdb.command().toString());