summaryrefslogtreecommitdiff
path: root/ReleaseNotes.txt
diff options
context:
space:
mode:
authorlhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524>2006-10-18 18:41:52 +0000
committerlhauch <lhauch@6f19259b-4bc3-4df7-8a09-765794883524>2006-10-18 18:41:52 +0000
commit1095e1fc188d9d661ac49ad69a39b1196dd8fdb5 (patch)
treef01cdf848a9d7c00cc172ba67f484125d13fd1dc /ReleaseNotes.txt
parent81dbf46f989c2da28f013254c2c1161873f2adb0 (diff)
downloadedk2-1095e1fc188d9d661ac49ad69a39b1196dd8fdb5.zip
edk2-1095e1fc188d9d661ac49ad69a39b1196dd8fdb5.tar.gz
edk2-1095e1fc188d9d661ac49ad69a39b1196dd8fdb5.tar.bz2
Added notes on Cygwin mount, as well as changing from textmode to binmode
git-svn-id: https://edk2.svn.sourceforge.net/svnroot/edk2/trunk/edk2@1795 6f19259b-4bc3-4df7-8a09-765794883524
Diffstat (limited to 'ReleaseNotes.txt')
-rw-r--r--ReleaseNotes.txt9
1 files changed, 8 insertions, 1 deletions
diff --git a/ReleaseNotes.txt b/ReleaseNotes.txt
index 1b3fd77..bb2c923 100644
--- a/ReleaseNotes.txt
+++ b/ReleaseNotes.txt
@@ -221,6 +221,8 @@ install cygwin it gives you the choice of Unix file mode (recommended) or DOS
file mode. Unix mode will cause all the cygwin directories to be mounted in
binmode, while DOS will mount the dirs in textmode. Here is an example of a
cygwin install where the dirs are (properly) mounted in binmode.
+To view mount information, type:
+ mount
C:\cygwin\bin on /usr/bin type user (binmode)
C:\cygwin\lib on /usr/lib type user (binmode)
@@ -228,7 +230,12 @@ c:\workspace on /workspace type system (binmode)
C:\cygwin on / type user (binmode)
If you use textmode, it is likely that the build will fail in a way that is
-hard to debug.
+hard to debug. Textmode is required to retain or add the DOS ^M characters
+in DOS batch files during file editing sessions.
+
+You can switch from textmode to binmode for compilation by executing the
+following:
+ mount -b --change-cygdrive-prefix cygdrive
Cygwin is pretty slow, so it is not recommended for large builds.