Lines Matching full:path
61 for line in open(os.path.join(OPTIONS.input_tmp, "META", "imagesizes.txt")):
95 if (not os.access(os.path.join(sourcedir, "RAMDISK"), os.F_OK) or
96 not os.access(os.path.join(sourcedir, "kernel"), os.F_OK)):
102 p1 = Run(["mkbootfs", os.path.join(sourcedir, "RAMDISK")],
112 cmd = ["mkbootimg", "--kernel", os.path.join(sourcedir, "kernel")]
114 fn = os.path.join(sourcedir, "cmdline")
119 fn = os.path.join(sourcedir, "base")
130 os.path.basename(sourcedir),)
142 BuildAndAddBootableImage(os.path.join(OPTIONS.input_tmp, "RECOVERY"),
146 BuildAndAddBootableImage(os.path.join(OPTIONS.input_tmp, "BOOT"),
220 os.path.join(OPTIONS.search_path, "framework", "signapk.jar")]
284 -p (--path) <dir>
289 Path to the python module containing device-specific
321 ["help", "verbose", "path=", "device_specific=", "extra="] +
336 elif o in ("-p", "--path"):
347 os.environ["PATH"] = (os.path.join(OPTIONS.search_path, "bin") +
348 os.pathsep + os.environ["PATH"])
355 if os.path.isdir(i):
480 path = OPTIONS.device_specific
481 if not path: return
483 if os.path.isdir(path):
484 info = imp.find_module("releasetools", [path])
486 d, f = os.path.split(path)
487 b, x = os.path.splitext(f)