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:
f903c85
)
scripts: tizen: call sync before umount
author
Seung-Woo Kim
<sw0312.kim@samsung.com>
Thu, 11 Jan 2018 03:51:51 +0000
(12:51 +0900)
committer
Marek Szyprowski
<m.szyprowski@samsung.com>
Mon, 15 Nov 2021 11:02:48 +0000
(12:02 +0100)
After writing files on mounted directory, umount can fail with busy
state. Call sync before umount to clear the busy state instead of
sleep.
Change-Id: I7985ab3688a64b072c9a992957acdf124f925a34
Signed-off-by: Seung-Woo Kim <sw0312.kim@samsung.com>
scripts/tizen/sd_fusing_rpi3.sh
patch
|
blob
|
history
diff --git
a/scripts/tizen/sd_fusing_rpi3.sh
b/scripts/tizen/sd_fusing_rpi3.sh
index
a999641
..
2f262bf
100755
(executable)
--- a/
scripts/tizen/sd_fusing_rpi3.sh
+++ b/
scripts/tizen/sd_fusing_rpi3.sh
@@
-231,7
+231,7
@@
function mkpart_3 () {
mkdir mnt_tmp
mount -t ext4 ${DISK}9 ./mnt_tmp
touch ./mnt_tmp/reboot-param.bin
- s
leep 1
+ s
ync
umount ./mnt_tmp
rmdir mnt_tmp
}