FSConfig.py (13167:258a04d4c20b) FSConfig.py (13532:b1cacf73cd4e)
1# Copyright (c) 2010-2012, 2015-2018 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

325 # SST doesn't use it. Attaching nvmem to iobus solves this issue.
326 # During initialization, system_port -> membus -> iobus -> nvmem.
327 if external_memory:
328 self.realview.setupBootLoader(self.iobus, self, binary)
329 elif ruby:
330 self.realview.setupBootLoader(None, self, binary)
331 else:
332 self.realview.setupBootLoader(self.membus, self, binary)
1# Copyright (c) 2010-2012, 2015-2018 ARM Limited
2# All rights reserved.
3#
4# The license below extends only to copyright in the software and shall
5# not be construed as granting a license to any other intellectual
6# property including but not limited to intellectual property relating
7# to a hardware implementation of the functionality of the software
8# licensed hereunder. You may use the software subject to the license

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

325 # SST doesn't use it. Attaching nvmem to iobus solves this issue.
326 # During initialization, system_port -> membus -> iobus -> nvmem.
327 if external_memory:
328 self.realview.setupBootLoader(self.iobus, self, binary)
329 elif ruby:
330 self.realview.setupBootLoader(None, self, binary)
331 else:
332 self.realview.setupBootLoader(self.membus, self, binary)
333 self.gic_cpu_addr = self.realview.gic.cpu_addr
333
334 if hasattr(self.realview.gic, 'cpu_addr'):
335 self.gic_cpu_addr = self.realview.gic.cpu_addr
336
334 self.flags_addr = self.realview.realview_io.pio_addr + 0x30
335
336 # This check is for users who have previously put 'android' in
337 # the disk image filename to tell the config scripts to
338 # prepare the kernel with android-specific boot options. That
339 # behavior has been replaced with a more explicit option per
340 # the error message below. The disk can have any name now and
341 # doesn't need to include 'android' substring.

--- 397 unchanged lines hidden ---
337 self.flags_addr = self.realview.realview_io.pio_addr + 0x30
338
339 # This check is for users who have previously put 'android' in
340 # the disk image filename to tell the config scripts to
341 # prepare the kernel with android-specific boot options. That
342 # behavior has been replaced with a more explicit option per
343 # the error message below. The disk can have any name now and
344 # doesn't need to include 'android' substring.

--- 397 unchanged lines hidden ---