// loop through all the symbols, only loading global ones
for (ii = 0; ii < count; ++ii) {
gelf_getsym(data, ii, &sym);
- if (GELF_ST_BIND(sym.st_info) & binding) {
+ if (GELF_ST_BIND(sym.st_info) == binding) {
symtab->insert(sym.st_value,
elf_strptr(elf, shdr.sh_link, sym.st_name));
}
panic("could not load kernel symbols\n");
debugSymbolTable = kernelSymtab;
+ if (!kernel->loadLocalSymbols(kernelSymtab))
+ panic("could not load kernel local symbols\n");
+
if (!console->loadGlobalSymbols(consoleSymtab))
panic("could not load console symbols\n");
#endif //FS_MEASURE
Addr addr = 0;
+
if (kernelSymtab->findAddress("est_cycle_freq", addr)) {
Addr paddr = vtophys(physmem, addr);
uint8_t *est_cycle_frequency =
*(uint64_t *)est_cycle_frequency = ticksPerSecond;
}
+ if (kernelSymtab->findAddress("aic7xxx_no_reset", addr)) {
+ Addr paddr = vtophys(physmem, addr);
+ uint8_t *aic7xxx_no_reset =
+ physmem->dma_addr(paddr, sizeof(uint32_t));
+
+ if (aic7xxx_no_reset) {
+ *(uint32_t *)aic7xxx_no_reset = 1;
+ }
+ }
+
if (consoleSymtab->findAddress("env_booted_osflags", addr)) {
Addr paddr = vtophys(physmem, addr);
char *osflags = (char *)physmem->dma_addr(paddr, sizeof(uint32_t));