/* Minix release and version numbers. */
#define OS_RELEASE "3"
-#define OS_VERSION "2.1"
+#define OS_VERSION "3.0"
-/* Keep these in sync with os_version above for temp version check in VFS */
-#define OS_VMAJOR 2
-#define OS_VMINOR 1
/* This file sets configuration parameters for the MINIX kernel, FS, and PM.
* It is divided up into two main sections. The first section contains
* user-settable parameters. In the second section, various internal system
length = (off_t) job_m_in.m2_l1;
if ((int) job_m_in.flength < 0) return(EINVAL);
} else {
-#if OS_VMAJOR == 2 && OS_VMINOR == 1
- length = (off_t) make64(job_m_in.m2_l1, 0); /* Ignore higher bits */
-#else
-#error "Please remove this version check. Recompile dynamic packages first."
length = (off_t) make64(job_m_in.m2_l1, job_m_in.m2_l2);
-#endif
if (length < 0) return(EINVAL);
}
length = (off_t) job_m_in.m2_l1;
if ((int) job_m_in.flength < 0) return(EINVAL);
} else {
-#if OS_VMAJOR == 2 && OS_VMINOR == 1
- length = (off_t) make64(job_m_in.m2_l1, 0); /* Ignore higher bits */
-#else
-#error "Please remove this version check. Recompile dynamic packages first."
length = (off_t) make64(job_m_in.m2_l1, job_m_in.m2_l2);
-#endif
if (length < 0) return(EINVAL);
}