system.cc (11359:b0b976a1ceda) system.cc (11392:5967db4cff04)
1/*
2 * Copyright (c) 2010-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

105
106 // Call the initialisation of the super class
107 GenericArmSystem::initState();
108
109 // Load symbols at physical address, we might not want
110 // to do this permanently, for but early bootup work
111 // it is helpful.
112 if (params()->early_kernel_symbols) {
1/*
2 * Copyright (c) 2010-2013 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

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

105
106 // Call the initialisation of the super class
107 GenericArmSystem::initState();
108
109 // Load symbols at physical address, we might not want
110 // to do this permanently, for but early bootup work
111 // it is helpful.
112 if (params()->early_kernel_symbols) {
113 kernel->loadGlobalSymbols(kernelSymtab, loadAddrMask);
114 kernel->loadGlobalSymbols(debugSymbolTable, loadAddrMask);
113 kernel->loadGlobalSymbols(kernelSymtab, 0, 0, loadAddrMask);
114 kernel->loadGlobalSymbols(debugSymbolTable, 0, 0, loadAddrMask);
115 }
116
117 // Setup boot data structure
118 Addr addr = 0;
119 // Check if the kernel image has a symbol that tells us it supports
120 // device trees.
121 bool kernel_has_fdt_support =
122 kernelSymtab->findAddress("unflatten_device_tree", addr);

--- 198 unchanged lines hidden ---
115 }
116
117 // Setup boot data structure
118 Addr addr = 0;
119 // Check if the kernel image has a symbol that tells us it supports
120 // device trees.
121 bool kernel_has_fdt_support =
122 kernelSymtab->findAddress("unflatten_device_tree", addr);

--- 198 unchanged lines hidden ---