Changeset 98929 in vbox for trunk/src/VBox/ValidationKit/testboxscript
- Timestamp:
- Mar 13, 2023 11:40:51 AM (2 years ago)
- svn:sync-xref-src-repo-rev:
- 156266
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/ValidationKit/testboxscript/TestBoxHelper.cpp
r98103 r98929 56 56 # include <iprt/x86.h> 57 57 # include <iprt/asm-amd64-x86.h> 58 #elif defined(RT_ARCH_ARM) || defined(RT_ARCH_ARM64) 59 # include <iprt/asm-arm.h> 58 60 #endif 59 61 … … 671 673 return cch > 0 ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE; 672 674 } 675 #elif defined(RT_ARCH_ARM) || defined(RT_ARCH_ARM64) 676 /** @todo There is no way to access MIDR_EL1 from userspace except for parsing the various 677 * OS dependent ways (/proc/cpuinfo, sysctl, ...). Just fake it for now to get it running. */ 678 int cch = RTPrintf("%#x\n", 1); 679 return cch > 0 ? RTEXITCODE_SUCCESS : RTEXITCODE_FAILURE; 673 680 #endif 674 681 return RTEXITCODE_FAILURE;
Note:
See TracChangeset
for help on using the changeset viewer.