summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorP. J. McDermott <pj@pehjota.net>2014-05-26 00:23:26 (EDT)
committer P. J. McDermott <pj@pehjota.net>2014-05-26 00:23:26 (EDT)
commit48b4335689daabdbf4e1ae286b2d4ccbd5ea1c02 (patch)
tree7299c723428ffd296c2de9bf13f53104a8510bcf
parent2ec35cb0a76a5f9aef9ca6eb04d173fe0f78a4ee (diff)
bootstrap-prepare.sh: Add "armhf" interp case.
-rwxr-xr-xbootstrap-prepare.sh3
1 files changed, 3 insertions, 0 deletions
diff --git a/bootstrap-prepare.sh b/bootstrap-prepare.sh
index f8b6f58..1ff85c1 100755
--- a/bootstrap-prepare.sh
+++ b/bootstrap-prepare.sh
@@ -231,6 +231,9 @@ prepare_file_system()
'i386-linux-gnu')
interp='ld-linux.so.2'
;;
+ 'arm-linux-gnueabihf')
+ interp='ld-linux-armhf.so.3'
+ ;;
esac
printf 'Using %s...\n\n' /lib/${ARCH}/${interp:-ld-*.so.*}
printf 'elf_interp = %s\n' /lib/${ARCH}/${interp:-ld-*.so.*} \