system.cc (10905:a6ca6831e775) system.cc (11392:5967db4cff04)
1/*
2 * Copyright (c) 2002-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 101 unchanged lines hidden (view full) ---

110 if (!openboot->loadGlobalSymbols(debugSymbolTable))
111 panic("could not load openboot symbols\n");
112
113 if (!hypervisor->loadLocalSymbols(debugSymbolTable))
114 panic("could not load hypervisor symbols\n");
115
116 // Strip off the rom address so when the hypervisor is copied into memory we
117 // have symbols still
1/*
2 * Copyright (c) 2002-2006 The Regents of The University of Michigan
3 * All rights reserved.
4 *
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions are
7 * met: redistributions of source code must retain the above copyright
8 * notice, this list of conditions and the following disclaimer;

--- 101 unchanged lines hidden (view full) ---

110 if (!openboot->loadGlobalSymbols(debugSymbolTable))
111 panic("could not load openboot symbols\n");
112
113 if (!hypervisor->loadLocalSymbols(debugSymbolTable))
114 panic("could not load hypervisor symbols\n");
115
116 // Strip off the rom address so when the hypervisor is copied into memory we
117 // have symbols still
118 if (!hypervisor->loadLocalSymbols(debugSymbolTable, 0xFFFFFF))
118 if (!hypervisor->loadLocalSymbols(debugSymbolTable, 0, 0, 0xFFFFFF))
119 panic("could not load hypervisor symbols\n");
120
121 if (!nvram->loadGlobalSymbols(debugSymbolTable))
122 panic("could not load reset symbols\n");
123
124 if (!hypervisor_desc->loadGlobalSymbols(debugSymbolTable))
125 panic("could not load hypervisor description symbols\n");
126

--- 80 unchanged lines hidden ---
119 panic("could not load hypervisor symbols\n");
120
121 if (!nvram->loadGlobalSymbols(debugSymbolTable))
122 panic("could not load reset symbols\n");
123
124 if (!hypervisor_desc->loadGlobalSymbols(debugSymbolTable))
125 panic("could not load hypervisor description symbols\n");
126

--- 80 unchanged lines hidden ---