Searched defs:os (Results 1 - 2 of 2) sorted by relevance

/pdk/build/
H A Dprepare_pdk_tree.py22 import os namespace
81 os.system("rm -rf " + dest_full)
82 os.system("ln -s " + src_full + " " + dest_full)
115 sourceDir = os.path.abspath('.')
116 targetDir = os.path.abspath(targetDir)
127 if os.path.exists(targetDir + '/' + UMOUNT_FILE):
135 os.system("mkdir -p " + targetDir)
141 os.system("mkdir -p " + targetDir + '/' + subdir)
149 os.system("chmod 700 " + targetDir + '/' + MOUNT_FILE)
150 os
[all...]
H A Dpdk_utils.py20 import os, string, sys, shutil, zipfile namespace
28 if not os.path.isdir(dest_full_path):
29 os.makedirs(dest_full_path)
31 os.system("cp -a " + " " + cp_option + " " + src_full_path + " " + dest_full_path)
38 if not os.path.isdir(dest_full_path):
39 os.makedirs(dest_full_path)
40 children = os.listdir(src_full_path)
43 if os.path.isfile(child_full_name):
45 os.system("cp -a " + child_full_name + " " + dest_full_path)
56 if not os
[all...]

Completed in 696 milliseconds