diff options
author | Olivier Blin <oblin@mandriva.com> | 2007-07-05 14:52:42 +0000 |
---|---|---|
committer | Olivier Blin <oblin@mandriva.com> | 2007-07-05 14:52:42 +0000 |
commit | d9f8977050f484daa3e14187c7692a273dc855b4 (patch) | |
tree | 548db5b2346751f6e1015275ab59f1f3d30ad6ff /rescue | |
parent | a4fcd7c7353cbf03bd6d5304314bfcdfeca5c03c (diff) | |
download | drakx-d9f8977050f484daa3e14187c7692a273dc855b4.tar drakx-d9f8977050f484daa3e14187c7692a273dc855b4.tar.gz drakx-d9f8977050f484daa3e14187c7692a273dc855b4.tar.bz2 drakx-d9f8977050f484daa3e14187c7692a273dc855b4.tar.xz drakx-d9f8977050f484daa3e14187c7692a273dc855b4.zip |
detect Flash v2.0
Diffstat (limited to 'rescue')
-rw-r--r-- | rescue/Flash/scripts/rescue_common | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/rescue/Flash/scripts/rescue_common b/rescue/Flash/scripts/rescue_common index 676a955da..97f25385d 100644 --- a/rescue/Flash/scripts/rescue_common +++ b/rescue/Flash/scripts/rescue_common @@ -3,8 +3,10 @@ function detect_version() { if has_label Share; then version="1.0" - else + elif has_label MDVUSBROOT; then version="1.05" + elif has_label MDV_FLASH; then + version="2.0" fi } |