Author: dreimer
Date: Sat Oct 20 17:41:55 2007
New Revision: 29709
URL:
http://svn.reactos.org/svn/reactos?rev=29709&view=rev
Log:
Make options.exe startable from cmd window. After exiting rosbe resets to use the new
settings.
Added:
trunk/tools/RosBE-Windows/Root/options.cmd (with props)
Modified:
trunk/tools/RosBE-Windows/Root/Help.cmd
trunk/tools/RosBE-Windows/Root/RosBE.mac
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 Sat Oct 20 17:41:55 2007
@@ -33,6 +33,8 @@
echo the RosBE build logs.
echo help [COMMAND] - Display the available commands or help on a
echo specific command.
+ echo options - Starts options.exe and reboots to make the
+ echo changes effective at the end.
echo raddr2line [OPTIONS] - Translates program addresses into file names and
echo line numbers to assist Developers to find
echo specific Bugs in ReactOS.
@@ -108,6 +110,12 @@
echo Switches back to the ReactOS source directory.
goto :EOF
)
+if "%1" == "options" (
+ echo Usage: options
+ echo Starts RosBE Configurator and reboots RosBE afterwards to make the
+ echo changes effective at the end.
+ goto :EOF
+)
if "%1" == "scut" (
echo Usage: scut [OPTIONS]
echo Defines, Removes, Switches and Defaults to Shortcutted Source Directories.
Modified: trunk/tools/RosBE-Windows/Root/RosBE.mac
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/RosBE.mac…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/RosBE.mac (original)
+++ trunk/tools/RosBE-Windows/Root/RosBE.mac Sat Oct 20 17:41:55 2007
@@ -7,3 +7,4 @@
RADDR2LINE = "%_ROSBE_BASEDIR%\reladdr2line.cmd" $*
SCUT = "%_ROSBE_BASEDIR%\scut.cmd" $*
SSVN = "%_ROSBE_BASEDIR%\sSVN.cmd" $*
+OPTIONS = "%_ROSBE_BASEDIR%\options.cmd" $*
Added: trunk/tools/RosBE-Windows/Root/options.cmd
URL:
http://svn.reactos.org/svn/reactos/trunk/tools/RosBE-Windows/Root/options.c…
==============================================================================
--- trunk/tools/RosBE-Windows/Root/options.cmd (added)
+++ trunk/tools/RosBE-Windows/Root/options.cmd Sat Oct 20 17:41:55 2007
@@ -1,0 +1,14 @@
+::
+:: PROJECT: RosBE - ReactOS Build Environment for Windows
+:: LICENSE: GPL - See LICENSE.txt in the top level directory.
+:: FILE: Root/options.cmd
+:: PURPOSE: Starts options.exe and reboots RosBE at the End.
+:: COPYRIGHT: Copyright 2007 Daniel Reimer <reimer.daniel(a)freenet.de>
+::
+::
+@echo off
+
+title Options
+
+"%_ROSBE_BASEDIR%\options.exe"
+"%_ROSBE_BASEDIR%\RosBE.cmd"
Propchange: trunk/tools/RosBE-Windows/Root/options.cmd
------------------------------------------------------------------------------
svn:eol-style = native