Updating
authorjascui
Mon, 29 Nov 2010 15:37:06 +0800
changeset 708 0757c2976f96
parent 707 ccd52fece6ff (diff)
parent 706 5221386d044b (current diff)
child 709 1ec2202bb75b
Updating
imgtools/imgcheck/group/distribution.policy
imgtools/romtools/rofsbuild/inc/logging/loggingexception.hpp
imgtools/romtools/rofsbuild/inc/logging/logparser.hpp
imgtools/romtools/rofsbuild/rofsbuild.cpp
imgtools/romtools/rofsbuild/src/logging/loggingexception.cpp
imgtools/romtools/rofsbuild/src/logging/logparser.cpp
imgtools/romtools/rofsbuild/symbolgenerator.cpp
imgtools/romtools/rofsbuild/symbolgenerator.h
imgtools/romtools/rofsbuild/symbolprocessunit.cpp
imgtools/romtools/rofsbuild/symbolprocessunit.h
imgtools/romtools/rombuild/symbolgenerator.cpp
imgtools/romtools/rombuild/symbolgenerator.h
srctools/distillsrc/DISTRIBUTION.POLICY
srctools/distillsrc/test/DISTRIBUTION.POLICY
srctools/distillsrc/test/source/DISTRIBUTION.POLICY
srctools/distillsrc/test/source/complete/DISTRIBUTION.POLICY
srctools/distillsrc/test/source/missing/DISTRIBUTION.POLICY
srctools/distillsrc/test/source/shared/DISTRIBUTION.POLICY
srctools/distillsrc/test/source/spacey/DISTRIBUTION.POLICY
srctools/distillsrc/test/source/whole/DISTRIBUTION.POLICY
--- a/imgtools/romtools/rofsbuild/r_obey.cpp	Wed Nov 24 14:12:23 2010 +0800
+++ b/imgtools/romtools/rofsbuild/r_obey.cpp	Mon Nov 29 15:37:06 2010 +0800
@@ -1484,33 +1484,9 @@
 		return EFalse;
 	}
 
-	if (aKeyword!=EKeywordHideV2) {
-
-		// check the PC file exists
-		char* nname = NormaliseFileName(iReader.Word(1)); 
-		if(gIsOBYUTF8 && !UniConv::IsPureASCIITextStream(nname))
-		{
-			char* tempnname = strdup(nname);
-			unsigned int namelen = 0;
-			if(UniConv::UTF82DefaultCodePage(tempnname, strlen(tempnname), &nname, &namelen) < 0)
-			{
-				Print(EError, "Invalid filename encoding: %s\n", tempnname);
-				free(tempnname);
-				delete[] nname;
-				return EFalse;
-			}
-			free(tempnname);
-		}
-		ifstream test(nname);
-		if (!test) {
-			Print(EError,"Cannot open file %s for input.\n",iReader.Word(1));
-			iMissingFiles++;
-		}
-		test.close();
-		delete []nname;
+	if (aKeyword==EKeywordHideV2) {
+		epocPathStart=1;
 	}
-	else
-		epocPathStart=1;
 
 	iNumberOfFiles++;
 
--- a/imgtools/romtools/rofsbuild/rofsbuild.cpp	Wed Nov 24 14:12:23 2010 +0800
+++ b/imgtools/romtools/rofsbuild/rofsbuild.cpp	Mon Nov 29 15:37:06 2010 +0800
@@ -48,7 +48,7 @@
 
 static const TInt RofsbuildMajorVersion=2;
 static const TInt RofsbuildMinorVersion=17;
-static const TInt RofsbuildPatchVersion=1;
+static const TInt RofsbuildPatchVersion=3;
 static TBool SizeSummary=EFalse;
 static TPrintType SizeWhere=EAlways;