diff options
author | Kim Hagen <kim.sidney@gmail.com> | 2016-04-04 02:58:46 -0400 |
---|---|---|
committer | Kim Hagen <kim.sidney@gmail.com> | 2016-04-04 02:58:46 -0400 |
commit | ab71f2f81939ed63c415fc69ae9b35ea90958bc0 (patch) | |
tree | 4b1f3617b636985d355c0e7062403336d78df65d | |
parent | 43b679483cf5f1c92dfb2381f676d5830734a21f (diff) | |
download | live-boot-ab71f2f81939ed63c415fc69ae9b35ea90958bc0.tar.gz live-boot-ab71f2f81939ed63c415fc69ae9b35ea90958bc0.zip |
add live boot support for mmcblk devices
-rwxr-xr-x | components/9990-misc-helpers.sh | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/components/9990-misc-helpers.sh b/components/9990-misc-helpers.sh index 9eff3f1..605ee8a 100755 --- a/components/9990-misc-helpers.sh +++ b/components/9990-misc-helpers.sh @@ -85,6 +85,9 @@ is_nice_device () elif echo ${sysfs_path} | grep -q "^/block/dm-" then return 0 + elif echo ${sysfs_path} | grep -q "^/block/mmcblk" + then + return 0 elif echo ${sysfs_path} | grep -q "^/block/mtdblock" then return 0 |