[Endpoint-commits] rev 3 - in trunk: . docs
svn-commits at oss.oracle.com
svn-commits at oss.oracle.com
Tue Sep 2 21:38:30 CDT 2003
Author: manish
Date: 2003-09-02 20:38:28 -0500 (Tue, 02 Sep 2003)
New Revision: 3
Added:
trunk/docs/
trunk/docs/sample-endpoint.conf
Modified:
trunk/configure.in
Log:
added sample endpoint.conf file
Modified: trunk/configure.in
===================================================================
--- trunk/configure.in 2003-07-17 19:27:07 UTC (rev 2)
+++ trunk/configure.in 2003-09-03 01:38:28 UTC (rev 3)
@@ -4,6 +4,8 @@
PACKAGE=endpoint
+GLIB_REQUIRED_VERSION=2.2.3
+
ENDPOINT_MAJOR_VERSION=0
ENDPOINT_MINOR_VERSION=1
ENDPOINT_MICRO_VERSION=0
@@ -37,7 +39,7 @@
AC_LIB_RAW1394(0.9.0,,
AC_MSG_ERROR([Could not find libraw1394]))
-PKG_CHECK_MODULES(GLIB, glib-2.0,,
+PKG_CHECK_MODULES(GLIB, glib-2.0 >= $GLIB_REQUIRED_VERSION,,
AC_MSG_ERROR([Could not find GLIB 2.x]))
AC_SUBST(GLIB_CFLAGS)
@@ -49,4 +51,5 @@
librbc/Makefile
libsbp2/Makefile
src/Makefile
+docs/Makefile
])
Added: trunk/docs/sample-endpoint.conf
===================================================================
--- trunk/docs/sample-endpoint.conf 2003-07-17 19:27:07 UTC (rev 2)
+++ trunk/docs/sample-endpoint.conf 2003-09-03 01:38:28 UTC (rev 3)
@@ -0,0 +1,37 @@
+#
+# Sample endpoint.conf
+#
+
+global:
+ max_logins = 12
+ max_logins_per_port = 4
+ honor_exclusive_login = off
+
+disk:
+ type = physical
+ number = 0
+ filename = /path/to/diskimage
+
+# Virtual disks and multiple LUNs not supported yet, but planned
+disk:
+ type = virtual
+ number = 1
+
+partition:
+ disk = 1
+ filename = /path/to/part1
+ order = 1
+
+partition:
+ disk = 1
+ filename = /path/to/part2
+ order = 3
+
+disk:
+ type = virtual
+ number = 4
+
+partition:
+ disk = 4
+ filename = /path/to/big
+ order = 0
More information about the Endpoint-commits
mailing list