mirror of
https://git.FreeBSD.org/src.git
synced 2024-12-18 10:35:55 +00:00
Fix the MACHINE_ARCH for big endian arm to be armeb.
This commit is contained in:
parent
e231bbbaa3
commit
6787a7875a
Notes:
svn2git
2020-12-20 02:59:44 +00:00
svn path=/head/; revision=235072
@ -56,8 +56,12 @@
|
||||
#define MACHINE "arm"
|
||||
#endif
|
||||
#ifndef MACHINE_ARCH
|
||||
#ifdef __ARMEB__
|
||||
#define MACHINE_ARCH "armeb"
|
||||
#else
|
||||
#define MACHINE_ARCH "arm"
|
||||
#endif
|
||||
#endif
|
||||
#define MID_MACHINE MID_ARM6
|
||||
|
||||
#if defined(SMP) || defined(KLD_MODULE)
|
||||
|
Loading…
Reference in New Issue
Block a user