mirror of
https://github.com/ventoy/Ventoy.git
synced 2026-09-09 01:16:40 +00:00
Fix Persistence intermittently fails on Ubuntu 24.04 (#3718)
This commit is contained in:
@@ -0,0 +1,19 @@
|
||||
|
||||
find_cow_device() {
|
||||
tgt_pers_label="${1}"
|
||||
vt_pers_label=""
|
||||
vt_pers_dev=""
|
||||
|
||||
if [ -f /ventoy/ventoy_persistent_label -a -f /ventoy/ventoy_persistent_dev ]; then
|
||||
vt_pers_label=$(cat /ventoy/ventoy_persistent_label)
|
||||
vt_pers_dev=$(cat /ventoy/ventoy_persistent_dev)
|
||||
fi
|
||||
|
||||
if [ "$tgt_pers_label" = "$vt_pers_label" ]; then
|
||||
echo "$vt_pers_dev"
|
||||
else
|
||||
find_cow_device_back "$@"
|
||||
fi
|
||||
}
|
||||
|
||||
find_cow_device_back() {
|
||||
Reference in New Issue
Block a user