diff options
Diffstat (limited to 'miasm2/os_dep/linux/environment.py')
| -rw-r--r-- | miasm2/os_dep/linux/environment.py | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/miasm2/os_dep/linux/environment.py b/miasm2/os_dep/linux/environment.py index 4f125563..7cafae43 100644 --- a/miasm2/os_dep/linux/environment.py +++ b/miasm2/os_dep/linux/environment.py @@ -322,7 +322,7 @@ class LinuxEnvironment(object): """A LinuxEnvironment regroups information to simulate a Linux-like environment""" - # To be overrided + # To be overridden platform_arch = None # User information @@ -655,13 +655,13 @@ class AuxVec(object): AT_SYSINFO_EHDR = 33 def __init__(self, elf_phdr_vaddr, entry_point, linux_env, **kwargs): - """Instanciate an AuxVec, with required elements: + """Instantiate an AuxVec, with required elements: - elf_phdr_vaddr: virtual address of the ELF's PHDR in memory - entry_point: virtual address of the ELF entry point - linux_env: LinuxEnvironment instance, used to provides some of the option values - Others options can be overrided by named arguments + Others options can be overridden by named arguments """ self.info = { |