Skip to content

Commit

Permalink
lisa.target: Switch Target(lazy_platinfo=...) default to True
Browse files Browse the repository at this point in the history
FEATURE

Make lazy_platinfo=True in Target.__init__(). This saves time when
connecting to a target at the expense of some level of extra logged
information by default.
  • Loading branch information
douglas-raillard-arm committed Sep 25, 2024
1 parent 44c6e9a commit 3a98dc4
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lisa/target.py
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ class used under the hood, and avoids messing up with ``devlib``
}

def __init__(self, kind, name='<noname>', tools=[], res_dir=None,
plat_info=None, lazy_platinfo=False, workdir=None, device=None, host=None, port=None,
plat_info=None, lazy_platinfo=True, workdir=None, device=None, host=None, port=None,
username=None, password=None, keyfile=None, strict_host_check=None,
devlib_platform=None, devlib_excluded_modules=[], devlib_file_xfer=None,
wait_boot=True, wait_boot_timeout=10, kernel_src=None, kmod_build_env=None,
Expand Down

0 comments on commit 3a98dc4

Please sign in to comment.