diff options
author | Steve Capper <steve.capper@linaro.org> | 2013-07-30 14:58:01 +0100 |
---|---|---|
committer | Steve Capper <steve.capper@linaro.org> | 2013-09-10 11:58:52 +0100 |
commit | a35f25f77a2edade7b61d2e01d705181ec1c2ce0 (patch) | |
tree | ca85825764d8b783008713752cbc67dda3075be9 | |
parent | 51a1aa69cc636af6613f45b23d298c75046c9696 (diff) | |
download | libhugetlbfs-a35f25f77a2edade7b61d2e01d705181ec1c2ce0.tar.gz |
Cleanup ARM ld.hugetlbfs HTLB_LINK logicaarch64-tosend
When ld.hugetlbfs is executed with --hugetlbfs-link, there is code
to check for the ARM platform and warn that this is not supported.
There is also code to check for CUSTOM_LDSCRIPTS being false and
give a similar warning.
This patch removes the ARM check as the CUSTOM_LDSCRIPTS check will
catch this.
Signed-off-by: Steve Capper <steve.capper@linaro.org>
-rwxr-xr-x | ld.hugetlbfs | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/ld.hugetlbfs b/ld.hugetlbfs index 5128aa2..ba9e00a 100755 --- a/ld.hugetlbfs +++ b/ld.hugetlbfs @@ -79,11 +79,6 @@ if [ -n "$HTLB_LINK" ]; then HTLB_ALIGN="" # --hugetlbfs-link overrides --hugetlbfs-align LDSCRIPT="$EMU.x$HTLB_LINK" HTLBOPTS="-T${HUGETLB_LDSCRIPT_PATH}/${LDSCRIPT}" - - if [ "$EMU" == "armelf_linux_eabi" ]; then - echo "Please use --hugetlbfs-align when targeting ARM." - exit -1 - fi fi MB=$((1024*1024)) |