Author: dreimer
Date: Sun Jun 10 23:24:23 2007
New Revision: 27126
URL: http://svn.reactos.org/svn/reactos?rev=27126&view=rev
Log:
- Updated Changelog. (makex readded)
- Updated License to include all new Tools.
- Updated Readme.
Modified:
trunk/tools/RosBE-Windows/Root/ChangeLog.txt
trunk/tools/RosBE-Windows/Root/LICENSE.txt
trunk/tools/RosBE-Windows/Root/README.txt
Modified: trunk/tools/RosBE-Windows/Root/ChangeLog.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/ChangeLog…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/ChangeLog.txt (original)
+++ trunk/tools/RosBE-Windows/Root/ChangeLog.txt Sun Jun 10 23:24:23 2007
@@ -2,6 +2,7 @@
- Added a SVN Client
- Added a Build Configurator.
+- Readded makex. If theres a Bug in Vista, it's a GCC Bug.
*** May 21th, 2007 - RosBE 0.3.6 Released
Modified: trunk/tools/RosBE-Windows/Root/LICENSE.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/LICENSE.t…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/LICENSE.txt (original)
+++ trunk/tools/RosBE-Windows/Root/LICENSE.txt Sun Jun 10 23:24:23 2007
@@ -12,6 +12,16 @@
- tee is licensed under the GPLv2.
- test is licensed under the GPLv2 or later.
+
+- cut is licensed under the GPLv2 or later.
+
+- grep is licensed under the GPLv2 or later.
+
+- sed is licensed under the GPLv2 or later.
+
+- pcre is licensed under the GPLv2 or later.
+
+- svn is licensed under the Apache/BSD-style open source license.
- libiconv is licensed under the LGPLv2.
Modified: trunk/tools/RosBE-Windows/Root/README.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/README.tx…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/README.txt (original)
+++ trunk/tools/RosBE-Windows/Root/README.txt Sun Jun 10 23:24:23 2007
@@ -1,4 +1,4 @@
- ReactOS Build Environment 0.3.7
+ReactOS Build Environment 0.3.7
The ReactOS Build Environment v0.3.7 contains a complete build environment for ReactOS based on GCC 4.1.3/MinGW.
@@ -45,6 +45,9 @@
The GnuWin32 Project (tee/test/sed/cut/grep and their dependencies were obtained here)
http://gnuwin32.sourceforge.net/
-Inspired by blight's ReactOS Build Environment v0.2-3.4.4
+Subversion Client
+http://subversion.tigris.org/
+
+Inspired by blight's ReactOS Build Environment v0.2-3.4.5
Inspired by Dazzle from TinyKRNL (http://www.tinykrnl.org/)
Icon made by ROSFan
Author: dreimer
Date: Sun Jun 10 23:08:35 2007
New Revision: 27125
URL: http://svn.reactos.org/svn/reactos?rev=27125&view=rev
Log:
- Remove the need of a config.rbuild in the RosBE
tree. Just copy the one of ReactOS Tree at first use.
- Update Help to really help on the new commands
- Add cut/grep to info.txt
- Update a Setup Phrase to show that you don't need a
Tree before you install.
Removed:
trunk/tools/RosBE-Windows/Tools/config.rbuild
Modified:
trunk/tools/RosBE-Windows/Root/Config.cmd
trunk/tools/RosBE-Windows/Root/Help.cmd
trunk/tools/RosBE-Windows/RosSourceDir.ini
trunk/tools/RosBE-Windows/Tools/info.txt
Modified: trunk/tools/RosBE-Windows/Root/Config.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Config.cm…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Config.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Config.cmd Sun Jun 10 23:08:35 2007
@@ -6,8 +6,29 @@
title ReactOS Build Configurator
-cd ""
+if not exist "%ROSBEBASEDIR%\Tools\config.rbuild" (
+ copy "%_ROSSOURCEDIR%\config.template.rbuild" "%ROSBEBASEDIR%\Tools\config.rbuild"
+)
+if "%1" == "delete" (
+ del %_ROSSOURCEDIR%\config.rbuild
+ del %ROSBEBASEDIR%\Tools\config.rbuild
+ goto :NOK
+)
+
+echo WARNING:
+echo Non-Default-Configurations are not useable for pasteing Bugs to Bugzilla
+echo or asking quesions about in Forum/Chat!
+echo.
+echo DID YOU UNDERSTAND?
+
+SET /P XY=(yes), (no)
+
+if /I "%XY%"=="yes" goto :OK
+if /I "%XY%"=="no" goto :NOK
+goto :NOK
+
+:OK
echo Architecture to build for. Not Editable.
echo.
echo Right now
@@ -122,5 +143,6 @@
del %ROSBEBASEDIR%\Tools\*.rbuild
copy %ROSBEBASEDIR%\Tools\config.tmp %ROSBEBASEDIR%\Tools\config.rbuild
del %ROSBEBASEDIR%\Tools\*.tmp
-copy %ROSBEBASEDIR%\Tools\config.rbuild _ROSSOURCEDIR\config.rbuild
-cd..
+copy %ROSBEBASEDIR%\Tools\config.rbuild %_ROSSOURCEDIR%\config.rbuild
+
+:NOK
Modified: trunk/tools/RosBE-Windows/Root/Help.cmd
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/Help.cmd?…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/Help.cmd (original)
+++ trunk/tools/RosBE-Windows/Root/Help.cmd Sun Jun 10 23:08:35 2007
@@ -21,15 +21,15 @@
echo specific command.
echo svn [OPTIONS] - Create, Update or clean up your ReactOS Source
echo tree.
- echo config - Configures the way, ReactOS will be built.
- echo
+ echo config [OPTIONS]- Configures the way, ReactOS will be built.
+ echo.
echo basedir - Switch back to the ReactOS source directory.
goto :EOF
)
if "%1" == "make" (
echo Usage: make [OPTIONS]
echo make, without options does a standard build of ReactOS. OPTIONS
- echo are the standard ReactOS build options ie. bootcd.
+ echo are the standard ReactOS build options ie. bootcd, livecd, etc.
goto :EOF
)
if "%1" == "makex" (
@@ -56,6 +56,15 @@
if "%1" == "svn" (
echo Usage: svn [OPTIONS]
echo Creates, Updates or cleans up your ReactOS Source tree.
+ echo update - Updates to HEAD Revision.
+ echo create - Creates a new ReactOS Tree.
+ echo cleanup - Cleans up and fixes errors in Tree.
+ goto :EOF
+)
+if "%1" == "config" (
+ echo Usage: config [OPTIONS]
+ echo Creates a Configuration File, which tells RosBE how to build the Tree.
+ echo delete - Deletes the configuration File and so sets back to default
goto :EOF
)
if "%1" == "basedir" (
Modified: trunk/tools/RosBE-Windows/RosSourceDir.ini
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/RosSourceDir.i…
==============================================================================
--- trunk/tools/RosBE-Windows/RosSourceDir.ini (original)
+++ trunk/tools/RosBE-Windows/RosSourceDir.ini Sun Jun 10 23:08:35 2007
@@ -19,7 +19,7 @@
[Field 3]
Type=Label
-Text=Select the directory where the ReactOS sources are located. This directory is required for the RosBE to work correctly. If you accept the default here then you must modify the shortcut (The 'Start in:' field) in the start menu later to point to the ReactOS source directory.
+Text=Select the directory where the ReactOS sources are located or will be checked out to later. This directory is required for the RosBE to work correctly. If you accept the default here then you must modify the shortcut (The 'Start in:' field) in the start menu later to point to the ReactOS source directory.
Left=0
Right=-1
Top=6
Removed: trunk/tools/RosBE-Windows/Tools/config.rbuild
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/config.r…
==============================================================================
--- trunk/tools/RosBE-Windows/Tools/config.rbuild (original)
+++ trunk/tools/RosBE-Windows/Tools/config.rbuild (removed)
@@ -1,16 +1,0 @@
-<?xml version="1.0"?>
-<rbuild xmlns:xi="http://www.w3.org/2001/XInclude">
-
-<property name="ARCH" value="i386" />
-<property name="SARCH" value="" />
-<property name="OARCH" value="pentium" />
-<property name="OPTIMIZE" value="1" />
-<property name="MP" value="0" />
-<property name="KDBG" value="0" />
-<property name="DBG" value="1" />
-<property name="GDB" value="0" />
-<property name="NSWPAT" value="0" />
-<property name="NTLPC" value="1" />
-<property name="_WINKD_" value="0" />
-
-</rbuild>
Modified: trunk/tools/RosBE-Windows/Tools/info.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Tools/info.txt…
==============================================================================
--- trunk/tools/RosBE-Windows/Tools/info.txt (original)
+++ trunk/tools/RosBE-Windows/Tools/info.txt Sun Jun 10 23:08:35 2007
@@ -1,11 +1,14 @@
Additional Tools needed:
tee: http://gnuwin32.sourceforge.net/packages/coreutils.htm
test: http://gnuwin32.sourceforge.net/packages/coreutils.htm
+cut: http://gnuwin32.sourceforge.net/packages/coreutils.htm
sed: http://gnuwin32.sourceforge.net/packages/sed.htm
+grep: http://gnuwin32.sourceforge.net/packages/grep.htm
svn: http://subversion.tigris.org/servlets/ProjectDocumentList?folderID=91
Additional Libs needed:
LibIntl: http://gnuwin32.sourceforge.net/packages/libintl.htm
LibIconv: http://gnuwin32.sourceforge.net/packages/libiconv.htm
+Pcre: http://gnuwin32.sourceforge.net/packages/pcre.htm
Built Tools and Rest needs to be copied to /Root/Tools/