Home | History | Annotate | Download | only in Scripts

Lines Matching refs:Revision

158                 new_line = "gBUILD_VERSION = \"Developer Build based on Revision: %s\"" % Rev

160 new_line = "gBUILD_VERSION = \"Developer Build based on Revision: %s with Modified Sources\"" % Rev
189 new_line = "#define __BUILD_VERSION \"Developer Build based on Revision: %s\"" % Rev
191 new_line = "#define __BUILD_VERSION \"Developer Build based on Revision: %s with Modified Sources\"" % \
236 """ Get the current revision of the BaseTools/Source tree, and check if any of the files have been modified """
237 Revision = "Unknown"
242 return (Revision, Modified)
258 # Get the repository revision of BaseTools/Source
260 Revision = 0
266 if line.startswith("Revision:"):
267 Revision = line.replace("Revision:", "").strip()
270 return (Revision, Modified)
387 Revision, Modified = GetSvnRevision(options)
389 sys.stdout.write("Revision: %s is Modified: %s\n" % (Revision, Modified))
391 UpdateBuildVersionH(Revision, Modified, options)
392 UpdateBuildVersionPython(Revision, Modified, options)