From peterw@svn.reactos.org Sun Aug 5 04:05:54 2007 From: peterw@svn.reactos.org To: ros-diffs@reactos.org Subject: [ros-diffs] [peterw] 28168: - A couple of minor changes. Date: Sun, 05 Aug 2007 02:05:41 +0000 Message-ID: <20070805020541.24808FE82@mail.smartxx.ru> MIME-Version: 1.0 Content-Type: multipart/mixed; boundary="===============1615529192219240785==" --===============1615529192219240785== Content-Type: text/plain; charset="utf-8" Content-Transfer-Encoding: quoted-printable Author: peterw Date: Sun Aug 5 06:05:40 2007 New Revision: 28168 URL: http://svn.reactos.org/svn/reactos?rev=3D28168&view=3Drev Log: - A couple of minor changes. Modified: trunk/tools/RosBE-Windows/Documentation/files/howto.html trunk/tools/RosBE-Windows/Tools/buildtime.c trunk/tools/RosBE-Windows/Tools/cpucount.c Modified: trunk/tools/RosBE-Windows/Documentation/files/howto.html URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Documentati= on/files/howto.html?rev=3D28168&r1=3D28167&r2=3D28168&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- trunk/tools/RosBE-Windows/Documentation/files/howto.html (original) +++ trunk/tools/RosBE-Windows/Documentation/files/howto.html Sun Aug 5 06:05= :40 2007 @@ -10,53 +10,54 @@
  • Q: How do I build ReactOS Source?
  • A: Start RosBE and type "make bootcd" or "make livecd" to ge= nerate - ReactOS ISO Files from the Source. + ReactOS ISO files from the source.
  •  
  • =20 =20 =20
  • - Q: I have a Multi Core CPU. Can I speed up the build process= anyhow? + Q: I have a Multi CPU/Core system. Can I speed up the build = process somehow?
  • - A: Yes, you can. Just use makex instead of make Command. mak= ex checks - for the Number of Cores and optimizes the Processes to that = number. + A: Yes, you can. Just use "makex" instead of the "make" Comm= and. "makex" + checks for the number of processors/cores in your system and= optimizes + the build according to that number.
  •  
  • =20 =20 -
  • Q: How/Where can I get the Source Code?
  • +
  • Q: How/Where can I get the ReactOS source cod= e?
  • - A: You could load it via any SVN Client from:=20 + A: You can retrieve it with any SVN client from:=20 svn://svn.reactos.org/reactos/trunk/reactos =20 -  RosBE itself has SVN Command Line Client and a lite V= ariant for newbies called - "ssvn" (SimpleSVN) included. If you want to get the Source T= ree, type - "ssvn create" and it copies all Code to the Default Source F= older you - did set while the Setup. +  RosBE itself has a SVN command line client and a lite = variant for + new users called "ssvn" (SimpleSVN) included. If you want to= get the + source tree, type "ssvn create" and it copies all code to th= e default + source folder you set during installation.
  •  
  • =20 =20 -
  • Q: How can I update the Source Code?
  • +
  • Q: How can I update the ReactOS source code?<= /li>
  • A: Just type "ssvn update".
  •  
  • =20 =20
  • - Q: Can I see somewhere if my Source Tree is up to date? + Q: Can I see somewhere if my source tree is up to date?
  • A: Yes, just type "ssvn status".
  •  
  • =20
  • - Q: My Source Tree seems corrupted / Updating was aborted etc= . etc. and now - I cannot update it anymore... What to do? + Q: My source tree seems corrupted / updating was aborted etc= ... and now + I cannot update it anymore... What can I do?
  • - A: You need to cleanup it. Type "ssvn cleanup" and wait. Aft= er that type + A: You need to clean it up. Type "ssvn cleanup" and wait. Af= ter that type "ssvn update" and it runs again.
  •  
  • Modified: trunk/tools/RosBE-Windows/Tools/buildtime.c URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/build= time.c?rev=3D28168&r1=3D28167&r2=3D28168&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- trunk/tools/RosBE-Windows/Tools/buildtime.c (original) +++ trunk/tools/RosBE-Windows/Tools/buildtime.c Sun Aug 5 06:05:40 2007 @@ -4,6 +4,7 @@ * FILE: Tools/buildtime.c * PURPOSE: Buildtime Counter * COPYRIGHT: Copyright 2007 KJK::Hyperion + * Copyright 2007 Peter Ward * */ =20 @@ -57,7 +58,7 @@ time_t StartTime, FinishTime; double TotalTime; int Hour, Minute, Second; - int ret; + int Status; =20 // // Get the command line to pass on. @@ -94,7 +95,7 @@ // // Run the program (Status is 1 on failure). // - ret =3D system(CommandLineBuffer); + Status =3D system(CommandLineBuffer); =20 // // Grab the finishing timestamp. @@ -124,5 +125,5 @@ // free(CommandLineBuffer); =20 - return ret; + return Status; } Modified: trunk/tools/RosBE-Windows/Tools/cpucount.c URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/cpuco= unt.c?rev=3D28168&r1=3D28167&r2=3D28168&view=3Ddiff =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D=3D= =3D=3D=3D --- trunk/tools/RosBE-Windows/Tools/cpucount.c (original) +++ trunk/tools/RosBE-Windows/Tools/cpucount.c Sun Aug 5 06:05:40 2007 @@ -4,6 +4,7 @@ * FILE: Tools/cpucount.c * PURPOSE: CPU Core Counter * COPYRIGHT: Copyright 2007 Christoph von Wittich + * Copyright 2007 Peter Ward * */ =20 --===============1615529192219240785==--