Author: tkreuzer
Date: Sun Dec 23 01:27:58 2007
New Revision: 31406
URL: http://svn.reactos.org/svn/reactos?rev=31406&view=rev
Log:
commit my first translated error messages for kernel32, unused atm, but we can translate it now. There are enough left for everyone ;-)
Added:
trunk/reactos/dll/win32/kernel32/lang/
trunk/reactos/dll/win32/kernel32/lang/de-DE.mc
[This mail would be too long, it was shortened to contain the URLs only.]
Added: trunk/reactos/dll/win32/kernel32/lang/de-DE.mc
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/dll/win32/kernel32/lang/de…
Author: cfinck
Date: Sun Dec 23 00:29:14 2007
New Revision: 31405
URL: http://svn.reactos.org/svn/reactos?rev=31405&view=rev
Log:
Oops, forgot to delete them in my previous commit
Removed:
trunk/tools/VM-Templates/
Author: cfinck
Date: Sun Dec 23 00:18:19 2007
New Revision: 31404
URL: http://svn.reactos.org/svn/reactos?rev=31404&view=rev
Log:
- Create a new directory "Release Engineering" and move the "VM-Templates" directory into it.
- Add a document "Packaging ReactOS Releases.odt" describing how each ReactOS release package is created.
This file also supersedes the "SVN-Readme.txt" files in the "QEMU" and "VMware" subdirectories, so I removed them.
Added:
trunk/tools/Release Engineering/
trunk/tools/Release Engineering/Packaging ReactOS Releases.odt (with props)
trunk/tools/Release Engineering/VM-Templates/
- copied from r31370, trunk/tools/VM-Templates/
Removed:
trunk/tools/Release Engineering/VM-Templates/QEMU/SVN-Readme.txt
trunk/tools/Release Engineering/VM-Templates/VMware/SVN-Readme.txt
Added: trunk/tools/Release Engineering/Packaging ReactOS Releases.odt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/Release%20Engineering/Packag…
==============================================================================
Binary file - no diff available.
Propchange: trunk/tools/Release Engineering/Packaging ReactOS Releases.odt
------------------------------------------------------------------------------
svn:mime-type = application/octet-stream
Removed: trunk/tools/Release Engineering/VM-Templates/QEMU/SVN-Readme.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/VM-Templates/QEMU/SVN-Readme…
==============================================================================
--- trunk/tools/Release Engineering/VM-Templates/QEMU/SVN-Readme.txt (original)
+++ trunk/tools/Release Engineering/VM-Templates/QEMU/SVN-Readme.txt (removed)
@@ -1,18 +1,0 @@
-Packaging the QEMU Preinstallation
------------------------------------
-
-Replace [VERSION] with the version of ReactOS you want to package, e.g. 0.3.1.
-
-- Copy the files in this directory into a directory called
- "ReactOS-[VERSION]-QEMU".
-- Put the QEMU program files in the "files" subdirectory, including its subdirectories.
-- Use the following command to create the virtual hard disk:
-
- qemu-img create -f vmdk ReactOS.vmdk 2G
-
-- Copy the "ReactOS.iso" file into the "files" subdirectory and run "install.bat" to
- install it.
-- Remove the "ReactOS.iso", "install.bat" and this "SVN-Readme.txt" file
-- Create a ZIP file "ReactOS-[VERSION]-REL-qemu.zip" containing this
- directory.
- Do not forget to activate the option to store the relative path names.
Removed: trunk/tools/Release Engineering/VM-Templates/VMware/SVN-Readme.txt
URL: http://svn.reactos.org/svn/reactos/trunk/tools/VM-Templates/VMware/SVN-Read…
==============================================================================
--- trunk/tools/Release Engineering/VM-Templates/VMware/SVN-Readme.txt (original)
+++ trunk/tools/Release Engineering/VM-Templates/VMware/SVN-Readme.txt (removed)
@@ -1,20 +1,0 @@
-Packaging the VMware Preinstallation
--------------------------------------
-
-Replace [VERSION] with the version of ReactOS you want to package, e.g. 0.3.1.
-
-- Copy the files in this directory into a directory called
- "ReactOS-[VERSION]-VMware".
-- Copy the "ReactOS.iso" file into this directory.
-- Open the "ReactOS-Installation.vmx" file in your VMware product, click on
- "Edit virtual machine settings" and on "Add".
-- Add a new hard disk called "ReactOS.vmdk" with 2 GB size and in a growable
- format (deselect "Allocate all disk space now").
-- Remove the created "Hard Disk 2" entry as we already have a "Hard Disk"
- entry, which now uses the created file.
-- Start the virtual machine and install ReactOS on it.
-- Remove all files in this directory except "ReactOS.vmx", "ReactOS.vmdk" and
- "Readme.txt"
-- Create a ZIP file "ReactOS-[VERSION]-REL-vmware.zip" containing the
- "ReactOS-[VERSION]-VMware" directory.
- Do not forget to activate the option to store the relative path names.
Author: cfinck
Date: Sat Dec 22 21:31:04 2007
New Revision: 31401
URL: http://svn.reactos.org/svn/reactos?rev=31401&view=rev
Log:
- Add "make" to the list of updated tools in RosBE-Unix 1.1.
- NASM 2.0 has problems, when it's compiled in a dedicated build directory, so extract the source into one directory and build NASM in the same one.
- Use a better method for expanding variables in pathes.
- Also expand variables in pathes in "createshortcut.sh".
- Add "scut" to the list printed by the "help" command.
Modified:
trunk/tools/RosBE/RosBE-Unix/RosBE-Builder.sh
trunk/tools/RosBE/RosBE-Unix/scripts/createshortcut.sh
trunk/tools/RosBE/RosBE-Unix/scripts/help.sh
Modified: trunk/tools/RosBE/RosBE-Unix/RosBE-Builder.sh
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Unix/RosBE-Build…
==============================================================================
--- trunk/tools/RosBE/RosBE-Unix/RosBE-Builder.sh (original)
+++ trunk/tools/RosBE/RosBE-Unix/RosBE-Builder.sh Sat Dec 22 21:31:04 2007
@@ -186,6 +186,9 @@
if [ "$installdir" = "" ]; then
installdir=$DEFAULT_INSTALL_DIR
fi
+
+ # Make sure we have the absolute path to the installation directory
+ installdir=`eval echo $installdir`
# Check if the installation directory already exists
if [ -f "$installdir" ]; then
@@ -254,10 +257,6 @@
fi
done
-# Make sure we have the absolute path to the installation directory
-cd "$installdir"
-installdir="$PWD"
-
# Ready to start
boldmsg "Ready to start"
@@ -302,6 +301,7 @@
process_w32api=true
process_binutils=true
process_gcc=true
+ process_make=true
process_nasm=true
process_scut=true
;;
@@ -469,16 +469,14 @@
# nasm
if $process_nasm; then
rm -rf "nasm"
- rm -rf "nasm-build"
echo -n "Extracting nasm... "
tar -xjf "nasm.tar.bz2" >& "$SCRIPTDIR/tar.log"
checkrun "tar"
echo -n "Configuring nasm... "
- mkdir "nasm-build"
- cd "nasm-build"
- ../nasm/configure --prefix="$installdir" --target=mingw32 >& "$SCRIPTDIR/configure.log"
+ cd "nasm"
+ ./configure --prefix="$installdir" --target=mingw32 >& "$SCRIPTDIR/configure.log"
checkrun "configure"
echo -n "Building nasm... "
@@ -491,7 +489,6 @@
echo -n "Cleaning up nasm... "
cd "$SOURCEDIR"
- rm -rf "nasm-build"
rm -rf "nasm"
checkrun
fi
Modified: trunk/tools/RosBE/RosBE-Unix/scripts/createshortcut.sh
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Unix/scripts/cre…
==============================================================================
--- trunk/tools/RosBE/RosBE-Unix/scripts/createshortcut.sh (original)
+++ trunk/tools/RosBE/RosBE-Unix/scripts/createshortcut.sh Sat Dec 22 21:31:04 2007
@@ -37,6 +37,9 @@
sourcedir=""
while [ "$sourcedir" = "" ]; do
read -p "Directory: " sourcedir
+
+ # Make sure we have the absolute path to the source directory
+ sourcedir=`eval echo $sourcedir`
if ! [ -d "$sourcedir" ]; then
echo "The entered path is no directory. Please enter the right path to the ReactOS sources."
Modified: trunk/tools/RosBE/RosBE-Unix/scripts/help.sh
URL: http://svn.reactos.org/svn/reactos/trunk/tools/RosBE/RosBE-Unix/scripts/hel…
==============================================================================
--- trunk/tools/RosBE/RosBE-Unix/scripts/help.sh (original)
+++ trunk/tools/RosBE/RosBE-Unix/scripts/help.sh Sat Dec 22 21:31:04 2007
@@ -14,9 +14,12 @@
echo " makex [OPTIONS] - Same as 'make' but automatically determines the"
echo " number of CPUs in the system and uses -j with"
echo " the appropriate number."
+echo " basedir - Switch back to the ReactOS source directory."
echo " clean - Fully clean the ReactOS source directory."
echo " help - Display the available commands."
+echo " scut [OPTIONS] - List, add, edit, remove, switch and default to"
+echo " shortcutted ReactOS source directories."
echo " version - Show information about the tool versions."
-echo " basedir - Switch back to the ReactOS source directory."
+
echo