projects
/
platform
/
kernel
/
u-boot.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
e1dd6ca
)
sd_fusing.py: Improve parameter write error message
author
Karol Lewandowski
<k.lewandowsk@samsung.com>
Wed, 22 May 2024 10:36:48 +0000
(12:36 +0200)
committer
Jaehoon Chung
<jh80.chung@samsung.com>
Mon, 28 Oct 2024 11:28:45 +0000
(20:28 +0900)
Change-Id: If42e16e310b1454f190b21d6cd5b662e1f17f598
Signed-off-by: Karol Lewandowski <k.lewandowsk@samsung.com>
scripts/tizen/sd_fusing.py
patch
|
blob
|
history
diff --git
a/scripts/tizen/sd_fusing.py
b/scripts/tizen/sd_fusing.py
index e5fbbc75f20bb896c75da3bfd79f2af6b26184f9..ee380ebfc8e5bc2ec100819aa8c5d3e6015b5682 100755
(executable)
--- a/
scripts/tizen/sd_fusing.py
+++ b/
scripts/tizen/sd_fusing.py
@@
-211,7
+211,7
@@
class InitParams:
stdin=subprocess.DEVNULL,
stdout=None, stderr=None)
if proc.returncode != 0:
- logging.error(
"Failed to mount {d} in {mnt}
")
+ logging.error(
f"Failed to mount {d} in {mnt} (Has the device been initialized with --format?)
")
return
for param, value in self.params:
with open(os.path.join(mnt, param), 'w') as f: