| /OK3568_Linux_fs/kernel/arch/x86/boot/ |
| H A D | genimage.sh | 84 tmp_dir=`dirname $FIMAGE`/isoimage 85 rm -rf $tmp_dir 86 mkdir $tmp_dir 110 cp $isolinux $tmp_dir 111 cp $ldlinux $tmp_dir 112 cp $FBZIMAGE $tmp_dir/linux 113 echo "$KCMDLINE" > $tmp_dir/isolinux.cfg 115 cp "$FDINITRD" $tmp_dir/initrd.img 119 -boot-info-table $tmp_dir 121 rm -rf $tmp_dir
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-4.19/scripts/ |
| H A D | depmod.sh | 29 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX) 30 mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE" 31 if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; then 32 if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \ 33 -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then 37 rm -rf "$tmp_dir"
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-4.19/scripts/ |
| H A D | depmod.sh | 29 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX) 30 mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE" 31 if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; then 32 if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \ 33 -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then 37 rm -rf "$tmp_dir"
|
| /OK3568_Linux_fs/kernel/scripts/ |
| H A D | depmod.sh | 30 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX) 31 mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE" 32 if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; then 33 if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \ 34 -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then 38 rm -rf "$tmp_dir"
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-5.10/scripts/ |
| H A D | depmod.sh | 30 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX) 31 mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE" 32 if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; then 33 if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \ 34 -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then 38 rm -rf "$tmp_dir"
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-5.10/scripts/ |
| H A D | depmod.sh | 30 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX) 31 mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE" 32 if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; then 33 if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \ 34 -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then 38 rm -rf "$tmp_dir"
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/armhf/linux-kbuild-4.4/scripts/ |
| H A D | depmod.sh | 44 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX) 45 mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE" 46 if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; then 47 if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \ 48 -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then 52 rm -rf "$tmp_dir"
|
| /OK3568_Linux_fs/device/rockchip/common/linux-kbuild/aarch64/linux-kbuild-4.4/scripts/ |
| H A D | depmod.sh | 44 tmp_dir=$(mktemp -d ${TMPDIR:-/tmp}/depmod.XXXXXX) 45 mkdir -p "$tmp_dir/lib/modules/$KERNELRELEASE" 46 if "$DEPMOD" -b "$tmp_dir" $KERNELRELEASE 2>/dev/null; then 47 if test -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep" -o \ 48 -e "$tmp_dir/lib/modules/$KERNELRELEASE/modules.dep.bin"; then 52 rm -rf "$tmp_dir"
|
| /OK3568_Linux_fs/yocto/meta-clang/dynamic-layers/selinux/android-tools/android-tools/core-debian/ |
| H A D | move-log-file-to-proper-dir.patch | 16 const char* tmp_dir = getenv("TMPDIR"); 17 if (tmp_dir == nullptr) tmp_dir = "/tmp"; 18 return android::base::StringPrintf("%s/adb.%u.log", tmp_dir, getuid());
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/selftest/cases/ |
| H A D | liboe.py | 15 cls.tmp_dir = get_bb_var('TMPDIR') 25 testloc = oe.path.join(self.tmp_dir, 'liboetests') 50 testloc = oe.path.join(self.tmp_dir, 'liboetests') 83 testloc = oe.path.join(self.tmp_dir, 'liboetests')
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/ipk/ |
| H A D | __init__.py | 131 tmp_dir = tempfile.mkdtemp() 133 os.chdir(tmp_dir) 142 bb.utils.remove(tmp_dir, recurse=True) 146 bb.utils.remove(tmp_dir, recurse=True) 150 bb.note("Extracted %s to %s" % (pkg_path, tmp_dir)) 151 bb.utils.remove(os.path.join(tmp_dir, "debian-binary")) 152 bb.utils.remove(os.path.join(tmp_dir, "control.tar.gz")) 155 return tmp_dir 503 tmp_dir = super(OpkgPM, self).extract(pkg, pkg_info) 504 bb.utils.remove(os.path.join(tmp_dir, "data.tar.xz")) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/deb/ |
| H A D | __init__.py | 150 tmp_dir = tempfile.mkdtemp() 152 os.chdir(tmp_dir) 161 bb.utils.remove(tmp_dir, recurse=True) 165 bb.utils.remove(tmp_dir, recurse=True) 169 bb.note("Extracted %s to %s" % (pkg_path, tmp_dir)) 170 bb.utils.remove(os.path.join(tmp_dir, "debian-binary")) 171 bb.utils.remove(os.path.join(tmp_dir, "control.tar.gz")) 174 return tmp_dir 513 tmp_dir = super(DpkgPM, self).extract(pkg, pkg_info) 514 bb.utils.remove(os.path.join(tmp_dir, "data.tar.xz")) [all …]
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/buildperf/ |
| H A D | test_basic.py | 47 postfile = os.path.join(self.tmp_dir, 'postfile.conf') 103 tmp_dir = self.bb_vars['TMPDIR'] 111 deploy_dir = os.path.join(tmp_dir, 'esdk-deploy')
|
| H A D | base.py | 267 def tmp_dir(self): member in BuildPerfTestCase 275 if not os.path.isdir(self.tmp_dir): 276 os.mkdir(self.tmp_dir) 282 if os.path.isdir(self.tmp_dir): 283 shutil.rmtree(self.tmp_dir)
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oe/package_manager/rpm/ |
| H A D | __init__.py | 400 tmp_dir = tempfile.mkdtemp() 402 os.chdir(tmp_dir) 408 bb.utils.remove(tmp_dir, recurse=True) 412 bb.utils.remove(tmp_dir, recurse=True) 416 bb.note("Extracted %s to %s" % (pkg_path, tmp_dir)) 419 return tmp_dir
|
| /OK3568_Linux_fs/yocto/poky/scripts/lib/wic/plugins/source/ |
| H A D | bootimg-efi.py | 305 with tempfile.TemporaryDirectory() as tmp_dir: 312 cmdline = open("%s/cmdline" % tmp_dir, "w") 317 initrd = open("%s/initrd" % tmp_dir, "wb")
|
| /OK3568_Linux_fs/yocto/poky/meta/lib/oeqa/utils/ |
| H A D | sshcontrol.py | 170 tmp_dir = os.path.join(root, d).replace(localpath, "") 171 new_dir = os.path.join(remotepath, tmp_dir.lstrip("/"))
|
| /OK3568_Linux_fs/kernel/drivers/crypto/hisilicon/zip/ |
| H A D | zip_main.c | 550 struct dentry *tmp_dir; in hisi_zip_dfx_debug_init() local 554 tmp_dir = debugfs_create_dir("zip_dfx", qm->debug.debug_root); in hisi_zip_dfx_debug_init() 558 0644, tmp_dir, data, in hisi_zip_dfx_debug_init()
|
| /OK3568_Linux_fs/kernel/fs/btrfs/ |
| H A D | send.c | 1814 u64 tmp_dir; in is_first_ref() local 1820 ret = get_first_ref(root, ino, &tmp_dir, NULL, tmp_name); in is_first_ref() 1824 if (dir != tmp_dir || name_len != fs_path_len(tmp_name)) { in is_first_ref()
|
| /OK3568_Linux_fs/yocto/poky/bitbake/lib/bb/ui/ |
| H A D | buildinfohelper.py | 904 self.tmp_dir = self.server.runCommand(["getVariable", "TMPDIR"])[0]
|