Home
last modified time | relevance | path

Searched refs:osversion (Results 1 – 8 of 8) sorted by relevance

/openbmc/qemu/linux-user/
H A Duname.c131 static int osversion; in get_osversion() local
135 if (osversion) in get_osversion()
136 return osversion; in get_osversion()
144 osversion = relstr_to_int(s); in get_osversion()
145 return osversion; in get_osversion()
/openbmc/openbmc/poky/meta/recipes-core/glibc/ldconfig-native-2.12.1/
H A D32and64bit.patch19 unsigned int *osversion, char **soname, void *file_contents,
40 *osversion = 0;
104 + if (!*osversion && segment->p_filesz >= 32 && segment->p_align >= 4)
131 + *osversion = (abi_note [4] << 24) |
220 + unsigned int *osversion, char **soname, void *file_contents,
236 + *osversion = 0;
261 if (!*osversion && segment->p_filesz >= 32 && segment->p_align >= 4)
305 + unsigned int *osversion, char **soname, void *file_contents,
321 + *osversion = 0;
324 + return process_elf_file32(file_name, lib,flag, osversion, soname, file_contents, file_length);
[all …]
H A Dendian-ness_handling.patch45 *osversion = 0;
102 - if (!*osversion && segment->p_filesz >= 32 && segment->p_align >= 4)
103 + if (!*osversion && read32(segment->p_filesz, be) >= 32 && segment->p_align >= 4)
132 - *osversion = (abi_note [4] << 24) |
136 + *osversion = (read32(abi_note [4], be) << 24) |
191 *osversion = 0;
248 - if (!*osversion && segment->p_filesz >= 32 && segment->p_align >= 4)
249 + if (!*osversion && read32(segment->p_filesz, be) >= 32 && read32(segment->p_align, be) >= 4)
277 - *osversion = (abi_note [4] << 24) |
281 + *osversion = (read32(abi_note [4], be) << 24) |
[all …]
H A Dendian-ness_handling_fix.patch38 - if (!*osversion && read32(segment->p_filesz, be) >= 32 && read32(segment->p_align, be) >= 4)
39 + if (!*osversion && read64(segment->p_filesz, be) >= 32 && read64(segment->p_align, be) >= 4)
H A Dadd-riscv-support.patch23 @@ -125,6 +125,12 @@ print_entry (const char *lib, int flag, unsigned int osversion,
H A Dadd-64-bit-flag-for-ELF64-entries.patch25 @@ -121,6 +121,10 @@ print_entry (const char *lib, int flag, unsigned int osversion,
H A Dldconfig.patch286 - if (GLRO(dl_osversion) && lib->osversion > GLRO(dl_osversion)) \
/openbmc/linux/tools/power/pm-graph/
H A Dsleepgraph.py118 osversion = '' variable in SystemValues
447 if self.osversion:
448 self.sysstamp += ' | os:%s' % self.osversion
455 if self.osversion:
456 print(fmt % ('os-version', self.osversion))
482 self.osversion = line[12:].strip().replace('"', '')