diff options
author | Tom Rini <trini@konsulko.com> | 2023-04-28 19:00:01 -0400 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-04-28 19:00:01 -0400 |
commit | 076f13308c6f06e2c4feb8b408e997bc732586e1 (patch) | |
tree | 412d95d550e2e03214f48c89db608c57886e0995 /tools/binman/cmdline.py | |
parent | c9c2c95d4cd27fe0cd41fe13a863899d268f973c (diff) | |
parent | f43fc16812487289e98389f0f643d20c444f9c9c (diff) |
Merge tag 'dm-pull-28apr23' of https://source.denx.de/u-boot/custodians/u-boot-dm
sandbox and fdt bug fixes / tweaks
various other minor fixes
Diffstat (limited to 'tools/binman/cmdline.py')
-rw-r--r-- | tools/binman/cmdline.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/binman/cmdline.py b/tools/binman/cmdline.py index 4b875a9dcda..9632ec115e5 100644 --- a/tools/binman/cmdline.py +++ b/tools/binman/cmdline.py @@ -95,7 +95,7 @@ controlled by a description in the board device tree.''' parser.add_argument('-H', '--full-help', action='store_true', default=False, help='Display the README file') parser.add_argument('--tooldir', type=str, - default=os.path.join(os.getenv('HOME'), '.binman-tools'), + default=os.path.join(os.path.expanduser('~/.binman-tools')), help='Set the directory to store tools') parser.add_argument('--toolpath', type=str, action='append', help='Add a path to the list of directories containing tools') |