diff options
author | Waldemar Brodkorb <mail@waldemar-brodkorb.de> | 2017-06-30 00:58:08 +0200 |
---|---|---|
committer | Gogs <gogs@fake.local> | 2017-06-30 00:58:08 +0200 |
commit | 6df169714d0266269b24036e12d8841419da7b79 (patch) | |
tree | 9bb5b6efd60b6e8ea2852afe34d5a8e41e162115 /scripts | |
parent | 0bbfb75bb621678c2657a1bdae4f7bed8839d6b7 (diff) | |
parent | b6f35aea5a1cf351fc78b0a1f679c44c379d901a (diff) |
Merge branch 'master' of ableton-dir/openadk into master
Diffstat (limited to 'scripts')
-rwxr-xr-x | scripts/install.sh | 18 |
1 files changed, 12 insertions, 6 deletions
diff --git a/scripts/install.sh b/scripts/install.sh index dbdcfa6ad..04ae46989 100755 --- a/scripts/install.sh +++ b/scripts/install.sh @@ -192,15 +192,21 @@ case $ostype { ;; (Linux) basedev=$tgt - rootpart=${basedev}1 - datapart=${basedev}2 + partitionsep="" + if [[ $basedev = /dev/loop* ]]; then + (( quiet )) || print "${tgt} is a loop device" + partitionsep=p + fi + + rootpart=${basedev}${partitionsep}1 + datapart=${basedev}${partitionsep}2 if [[ $target = raspberry-pi || $target = raspberry-pi2 || $target = raspberry-pi3 || $target = raspberry-pi3-64 ]]; then - bootpart=${basedev}1 - rootpart=${basedev}2 - datapart=${basedev}3 + bootpart=${basedev}${partitionsep}1 + rootpart=${basedev}${partitionsep}2 + datapart=${basedev}${partitionsep}3 fi - match=\'${basedev}\''+([0-9])' + match=\'${basedev}${partitionsep}\''+([0-9])' function mount_fs { mount -t "$3" "$1" "$2" } |