Home | History | Annotate | Download | only in releasetools

Lines Matching refs:sourcedir

282 def BuildBootableImage(sourcedir, fs_config_file, info_dict=None):
284 'sourcedir'), and turn them into a boot image. Return the image
285 data, or None if sourcedir does not appear to contains files for
288 if (not os.access(os.path.join(sourcedir, "RAMDISK"), os.F_OK) or
289 not os.access(os.path.join(sourcedir, "kernel"), os.F_OK)):
299 cmd = ["mkbootfs", "-f", fs_config_file, os.path.join(sourcedir, "RAMDISK")]
301 cmd = ["mkbootfs", os.path.join(sourcedir, "RAMDISK")]
314 cmd = [mkbootimg, "--kernel", os.path.join(sourcedir, "kernel")]
316 fn = os.path.join(sourcedir, "second")
321 fn = os.path.join(sourcedir, "cmdline")
326 fn = os.path.join(sourcedir, "base")
331 fn = os.path.join(sourcedir, "pagesize")
346 os.path.basename(sourcedir),)
349 path = "/" + os.path.basename(sourcedir).lower()