Commit c75083d7 by Kevin Cernekee Committed by Daniel Lezcano

Add MIPS as a supported architecture

The issue is similar to what was fixed in commit e7eb632c for ARM: the "configure" script errors out because it is unable to set LINUX_SRCARCH. Fix is to add MIPS to the list. Signed-off-by: 's avatarKevin Cernekee <cernekee@gmail.com> Signed-off-by: 's avatarDaniel Lezcano <dlezcano@fr.ibm.com>
parent ce6ce9d6
......@@ -66,6 +66,7 @@ AC_DEFUN([AC_LINUX_SRCARCH],[
powerpc*-*) LINUX_SRCARCH=powerpc;;
s390*-*) LINUX_SRCARCH=s390;;
arm*-*) LINUX_SRCARCH=arm;;
mips*-*) LINUX_SRCARCH=mips;;
*) AC_MSG_ERROR([architecture ${host} not supported]);;
esac
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment