initial commit

This commit is contained in:
2011-09-07 21:52:54 +04:00
commit a875af6b67
122 changed files with 6256 additions and 0 deletions

View File

@ -0,0 +1,12 @@
--- /tmp/GNS3-0.7-src/src/GNS3/Ui/ConfigurationPages/Page_PreferencesDynamips.py.old 2010-04-09 14:58:40.663821065 +0200
+++ /tmp/GNS3-0.7-src/src/GNS3/Ui/ConfigurationPages/Page_PreferencesDynamips.py 2010-04-09 14:59:24.282849072 +0200
@@ -55,6 +55,8 @@
# Default path to dynamips executable
if self.conf.path == '' and sys.platform.startswith('win'):
self.conf.path = unicode('dynamips-wxp.exe')
+ else:
+ self.conf.path = unicode('/usr/bin/dynamips')
# Default path to working directory
if self.conf.workdir == '':

View File

@ -0,0 +1,12 @@
--- /tmp/GNS3-0.7-src/src/GNS3/Ui/ConfigurationPages/Page_PreferencesQemu.py.old 2010-04-12 11:13:56.594820507 +0200
+++ /tmp/GNS3-0.7-src/src/GNS3/Ui/ConfigurationPages/Page_PreferencesQemu.py 2010-04-12 11:15:02.599822184 +0200
@@ -82,8 +82,7 @@
if sys.platform.startswith('win'):
self.conf.qemuwrapper_path = unicode('qemuwrapper.exe')
else:
- path = os.getcwd() + '/qemuwrapper/qemuwrapper.py'
- self.conf.qemuwrapper_path = unicode(path, errors='replace')
+ self.conf.qemuwrapper_path = unicode('/usr/libexec/gns3/qemuwrapper.py')
# Default path to working directory
if self.conf.qemuwrapper_workdir == '':