Author: hbelusca
Date: Thu Jan 29 00:15:35 2015
New Revision: 66108
URL: http://svn.reactos.org/svn/reactos?rev=66108&view=rev
Log:
[ROS***]: Add few more information in the readme's.
Modified:
trunk/rosapps/readme.txt
trunk/rostests/readme.txt
Modified: trunk/rosapps/readme.txt
URL: http://svn.reactos.org/svn/reactos/trunk/rosapps/readme.txt?rev=66108&r1=66…
==============================================================================
--- trunk/rosapps/readme.txt [iso-8859-1] (original)
+++ trunk/rosapps/readme.txt [iso-8859-1] Thu Jan 29 00:15:35 2015
@@ -8,3 +8,17 @@
It is to be placed under "modules" subdirectory of a trunk checkout.
No additional changes to build files are necessary, it'll be picked up
automatically.
+
+To include "rosapps" in your build folder:
+1. Copy the rosapps folder into the reactos\modules folder, or
+2. Link reactos/modules/rosapps to rosapps
+
+# For Windows users
+
+ cd %%_ROSSOURCEDIR%%\reactos\modules
+ mklink /j rosapps %%_ROSSOURCEDIR%%\rosapps
+
+# For UNIX users
+
+ cd \$$_ROSSOURCEDIR/reactos/modules
+ ln -s \$$_ROSSOURCEDIR/rosapps rosapps
Modified: trunk/rostests/readme.txt
URL: http://svn.reactos.org/svn/reactos/trunk/rostests/readme.txt?rev=66108&r1=6…
==============================================================================
--- trunk/rostests/readme.txt [iso-8859-1] (original)
+++ trunk/rostests/readme.txt [iso-8859-1] Thu Jan 29 00:15:35 2015
@@ -8,3 +8,17 @@
It is to be placed under "modules" subdirectory of a trunk checkout.
No additional changes to build files are necessary, it'll be picked up
automatically.
+
+To include "rostests" in your build folder:
+1. Copy the rostests folder into the reactos\modules folder, or
+2. Link reactos/modules/rostests to rostests
+
+# For Windows users
+
+ cd %%_ROSSOURCEDIR%%\reactos\modules
+ mklink /j rostests %%_ROSSOURCEDIR%%\rostests
+
+# For UNIX users
+
+ cd \$$_ROSSOURCEDIR/reactos/modules
+ ln -s \$$_ROSSOURCEDIR/rostests rostests
Author: hbelusca
Date: Wed Jan 28 23:23:48 2015
New Revision: 66106
URL: http://svn.reactos.org/svn/reactos?rev=66106&view=rev
Log:
[FREELDR]: Reset FrldrBootDrive before chainloading in some cases (when the boot drive is going to change), because ChainLoadBiosBootSectorCode uses FrldrBootDrive for the boot drive. An alternative would be to pass this boot drive as a parameter to ChainLoadBiosBootSectorCode... Fixes FreeLdr booting to another drive.
Modified:
trunk/reactos/boot/freeldr/freeldr/arch/i386/miscboot.c
Modified: trunk/reactos/boot/freeldr/freeldr/arch/i386/miscboot.c
URL: http://svn.reactos.org/svn/reactos/trunk/reactos/boot/freeldr/freeldr/arch/…
==============================================================================
--- trunk/reactos/boot/freeldr/freeldr/arch/i386/miscboot.c [iso-8859-1] (original)
+++ trunk/reactos/boot/freeldr/freeldr/arch/i386/miscboot.c [iso-8859-1] Wed Jan 28 23:23:48 2015
@@ -154,6 +154,7 @@
// result in a read error.
//DiskStopFloppyMotor();
//DisableA20();
+ FrldrBootDrive = DriveNumber;
ChainLoadBiosBootSectorCode();
}
@@ -211,5 +212,6 @@
// result in a read error.
//DiskStopFloppyMotor();
//DisableA20();
+ FrldrBootDrive = DriveNumber;
ChainLoadBiosBootSectorCode();
}