Home
last modified time | relevance | path

Searched refs:mount_point (Results 1 – 5 of 5) sorted by relevance

/openbmc/qemu/trace/
H A Dftrace.c18 static int find_mount(char *mount_point, const char *fstype) in find_mount() argument
30 mount_point, type) == 2) { in find_mount()
58 char mount_point[PATH_MAX]; in ftrace_init()
64 tracefs_found = find_mount(mount_point, "tracefs"); in ftrace_init()
66 tracefs_found = find_mount(mount_point, "debugfs"); in ftrace_init()
71 if (snprintf(path, PATH_MAX, "%s%s/tracing_on", mount_point, subdir) in ftrace_init()
94 if (snprintf(path, PATH_MAX, "%s%s/trace_marker", mount_point, subdir) in ftrace_init()
43 char mount_point[PATH_MAX]; ftrace_init() local
/openbmc/openbmc/meta-phosphor/recipes-phosphor/initrdscripts/phosphor-static-norootfs-init/
H A Dumount-filesystem4 mount_point="/run/mnt-persist"
7 echo "Attempting to unmount $mount_point with $retries retries"
10 if umount --lazy "$mount_point"; then
/openbmc/openbmc/poky/meta/lib/oeqa/runtime/cases/
H A Dstorage.py17 (status, output) = cls.target.run('mkdir -p %s' % cls.mount_point)
18 (status, output) = cls.target.run('mount %s %s' % (cls.device, cls.mount_point))
68 (status, output) = cls.target.run('umount %s' % cls.mount_point)
74 msg = ('Device not unmount %s' % cls.mount_point)
91 self.mount_point = "/media/usb"
94 self.test_dir = os.path.join(self.mount_point, "oeqa")
126 self.mount_point = "/media/mmc"
129 self.test_dir = os.path.join(self.mount_point, "oeqa")
/openbmc/u-boot/test/py/tests/test_fs/
H A Dconftest.py185 def mount_fs(fs_type, device, mount_point): argument
203 % (device, mount_point), shell=True)
210 % (mount_opt, device, mount_point), shell=True)
213 check_call('sudo chmod a+rw %s' % mount_point, shell=True)
217 def umount_fs(mount_point): argument
228 call('guestunmount %s' % mount_point, shell=True)
230 call('sudo umount %s' % mount_point, shell=True)
/openbmc/u-boot/test/py/tests/
H A Dtest_ums.py112 mount_point = u_boot_console.config.env['env__mount_points'][0]
122 mounted_test_fn = mount_point + '/' + mount_subdir + test_f.fn