mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 19:11:53 +00:00
Merge git://git.denx.de/u-boot-dm
This commit is contained in:
commit
ebe621d5fb
71 changed files with 2495 additions and 130 deletions
|
@ -39,11 +39,15 @@ class ConsoleSandbox(ConsoleBase):
|
|||
A u_boot_spawn.Spawn object that is attached to U-Boot.
|
||||
"""
|
||||
|
||||
bcfg = self.config.buildconfig
|
||||
config_spl = bcfg.get('config_spl', 'n') == 'y'
|
||||
fname = '/spl/u-boot-spl' if config_spl else '/u-boot'
|
||||
print fname
|
||||
cmd = []
|
||||
if self.config.gdbserver:
|
||||
cmd += ['gdbserver', self.config.gdbserver]
|
||||
cmd += [
|
||||
self.config.build_dir + '/u-boot',
|
||||
self.config.build_dir + fname,
|
||||
'-v',
|
||||
'-d',
|
||||
self.config.dtb
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue