Chief Delphi

Chief Delphi (http://www.chiefdelphi.com/forums/index.php)
-   C/C++ (http://www.chiefdelphi.com/forums/forumdisplay.php?f=183)
-   -   Portable Windriver (http://www.chiefdelphi.com/forums/showthread.php?t=76825)

dboisvert 15-04-2009 22:41

Portable Windriver
 
Has anyone made, or know how to make a portable windriver?

The reason being is I want to use it on a portable hard drive and just store the workspace on that for next years season so anyone can take it home and work on it and it can be moved to any computer.

virtuald 16-04-2009 11:19

Re: Portable Windriver
 
I would imagine that due to licensing constraints, this isn't possible. An alternative is to install WindRiver in a virtual machine, and move it around in that. Of course, at that point Windows will complain about its licensing... (unless you have a corporate license for it).

virtuald 16-04-2009 11:21

Re: Portable Windriver
 
But on that thought, if you're just wanting to share the workspace, then using a version control system like SVN would be ideal -- then the members of your team would be able to access the workspace from anywhere in the internet (assuming the server is on the public internet -- doesn't have to be). subclipse integrates nicely into Wind River, and allows you to import/export projects seamlessly. Theres a bit about subclipse in the FRC C++ Programming Guide...

Shinigami2057 20-04-2009 20:19

Re: Portable Windriver
 
Quote:

Originally Posted by virtuald (Post 850908)
I would imagine that due to licensing constraints, this isn't possible. An alternative is to install WindRiver in a virtual machine, and move it around in that. Of course, at that point Windows will complain about its licensing... (unless you have a corporate license for it).

Moving around a VirtualBox virtual machine worked great for our team. It's mostly just drag and drop, and saves massive time for installation of Wind River and LabView, et al.

Plus being able to save machine state is invaluable. I'd highly recommend teams with a technical background to give it a whirl; the first few days were excruciating trying to find a fast way to get the build environment on multiple laptops and workstations. You can't beat transferring an already-configured machine over the network :)

pyr0b0y 20-04-2009 21:01

Re: Portable Windriver
 
Can you post any links on how a team would go about setting up WindRiver for SVN?

byteit101 21-04-2009 20:50

Re: Portable Windriver
 
install subversion (http://subversion.tigris.org/getting.html#windows)
run (in cmd) svnadmin create C:/Documents and Settings/longcomplicatedpath/repository
(yes, you must use / instead of \ for the path)
install subclipse (look in C Programming guide)
open SVN Repository View
Right click in SVN Repository view, New> Location... (or something like that)
enter file:///C:/Documents and Settings/longcomplicatedpath/repository
hit ok (if you get an error, tell me what it says)
with your project, Right click>Team>Add to repository (something like that)

more info at http://svnbook.red-bean.com/en/1.5/svn-book.pdf and in the WRWB help file

pyr0b0y 23-04-2009 00:29

Re: Portable Windriver
 
can you explain the part about creating the repository or point me to a link? i tried typing svnadmin create[...] in cmd but it doesnt recognize it

byteit101 23-04-2009 22:39

Re: Portable Windriver
 
first, did you install subversion?
did it fail or succede?
then open cmd and type svnadmin create C:/dir/.../...
look in http://svnbook.red-bean.com/en/1.5/svn-book.pdf on page 40, the first line of command and page 31 near the bottom about windows paths

pyr0b0y 24-04-2009 02:16

Re: Portable Windriver
 
OK, so i created the repos and have created users and put them into different groups. i tried the url, got the certificate, but i am not able to log into it from remote computers, do i have to set some type of permissions or use the ip address?

I just need to be able to access the repo from different computers.

byteit101 24-04-2009 22:36

Re: Portable Windriver
 
you need to install apache (at least that is how i could only get it to work)
just google apache, download and install 2.2
(fromhttp://www.codeproject.com/KB/winsdk/SubversionApache.aspx)
When the installation is finished, go to the bin directory within the Subversion installation, find two files with extension *.so, and put them into the (Apache)/modules directory. The files are mod_authz_svn.so and mod_dav_svn.so.

Go to the conf sub-directory within the Apache installation directory and open the httpd.conf file in any text editor.

Add the following lines:

LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so

Now assuming your reposotory is at C:\svns\repos1 and you want to redirect localhost/svn to it,
add this to the httpd.conf:




<Location /svn>

DAV svn

SVNListParentPath on

SVNParentPath C:/svns

</Location>



If you get an error, tell me

byteit101 24-04-2009 22:40

Re: Portable Windriver
 
once you do that restart apache( or restart the computer), and if that computer's ip address is 192.168.101, on another computr (same network) type in http://192.168.1.101/svn
your web browser, you should see your repository there, now you can access it from other computers
then from windriver, new, project> from svn, new connection to http://192.168.1.101/svn/yourrepoitory
and finish out the dialog.
read the WR help for more details

pyr0b0y 25-04-2009 01:07

Re: Portable Windriver
 
[EDIT] Actually i followed the directions with editing the httpd file, but when i restart apache i get this error message:

Code:

Invalid command 'DAV', perhaps misspelled or defined by a module not included in the server configuration

byteit101 25-04-2009 20:48

Re: Portable Windriver
 
did you go to the bin directory within the Subversion installation, find two files with extension *.so, and put them into the (Apache)/modules directory. The files are mod_authz_svn.so and mod_dav_svn.so

also make sure all three lines below are in httpd.conf (and restart apache after you modify it)
LoadModule dav_module modules/mod_dav.so
LoadModule dav_svn_module modules/mod_dav_svn.so
LoadModule authz_svn_module modules/mod_authz_svn.so

If that does not work, copy C:\Program Flies\Subversion\libapr-1.dll and libapriconv-1.dll to (apache)\bin and replace the current ones

keehun 25-04-2009 20:52

Re: Portable Windriver
 
I think you need WebDAV not DAV. Not sure though

byteit101 26-04-2009 09:21

Re: Portable Windriver
 
no, you need DAV, but you can have WebDAV if you really want. DAV is part of SVN. DAV is related to WebDAV, but different (I think)
EDIT: I dont have WebDAV on my server, just DAV, and Subversion Works fine


All times are GMT -5. The time now is 14:14.

Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2017, Jelsoft Enterprises Ltd.
Copyright © Chief Delphi