OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:boot_dir
(Results
1 - 5
of
5
) sorted by null
/external/autotest/client/bin/
xen.py
106
self.
boot_dir
= os.path.join(prefix, 'boot')
107
if not os.path.isdir(self.
boot_dir
):
108
os.mkdir(self.
boot_dir
)
112
self.xen_image = self.
boot_dir
+ '/xen-' + xen_version + '.gz'
113
self.xen_syms = self.
boot_dir
+ '/xen-syms-' + xen_version
kernel.py
492
self.
boot_dir
= os.path.join(prefix, 'boot')
493
if not os.path.isdir(self.
boot_dir
):
494
os.mkdir(self.
boot_dir
)
504
self.vmlinux = self.
boot_dir
+ '/vmlinux-' + tag
506
self.image = self.
boot_dir
+ '/vmlinuz-' + tag
509
self.system_map = self.
boot_dir
+ '/System.map-' + tag
510
self.config_file = self.
boot_dir
+ '/config-' + tag
525
self.initrd = self.
boot_dir
+ '/initrd-' + tag
base_sysinfo.py
245
boot_dir
= "boot.%d" % (reboot_count - 1)
246
return os.path.join(self.sysinfodir,
boot_dir
)
kernel_unittest.py
544
boot_dir
= os.path.join(prefix, 'boot')
545
os.path.isdir.expect_call(
boot_dir
).and_return(False)
546
os.mkdir.expect_call(
boot_dir
)
561
initrd =
boot_dir
+ '/initrd-' + tag
/external/autotest/client/common_lib/hosts/
base_classes.py
500
def cleanup_kernels(self,
boot_dir
='/boot'):
506
@param
boot_dir
: boot directory path string, default '/boot'
509
vmlinuz_prefix = os.path.join(
boot_dir
, 'vmlinuz-')
521
vmlinux_prefix = os.path.join(
boot_dir
, 'vmlinux-')
528
systemmap_prefix = os.path.join(
boot_dir
, 'System.map-')
Completed in 897 milliseconds