blob: 92cfe35e779a5461b2ee58c58b4da0f697aeab30 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
$NetBSD: patch-src_config_param.armv6_nbsd80.h,v 1.1 2017/10/08 02:41:39 sevan Exp $
- Add support for NetBSD 8 on armv6 based on filename but generic in content to be
applicable to other generations of ARM
--- src/config/param.armv6_nbsd80.h.orig 2017-07-15 19:52:25.315668000 +0000
+++ src/config/param.armv6_nbsd80.h
@@ -0,0 +1,19 @@
+#ifndef AFS_PARAM_H
+#define AFS_PARAM_H
+
+#define AFS_ARM32_XBSD_ENV 1
+#define AFSLITTLE_ENDIAN 1
+
+#define SYS_NAME "arm32_nbsd80"
+#define SYS_NAME_ID SYS_NAME_ID_arm32_nbsd80
+
+#ifndef UKERNEL
+/* This section for kernel libafs compiles only */
+
+#else /* !defined(UKERNEL) */
+
+/* This section for user space compiles only */
+
+#endif /* !defined(UKERNEL) */
+
+#endif /* AFS_PARAM_H */
|