This is the mail archive of the ecos-patches@sources.redhat.com mailing list for the eCos project.


Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]
Other format: [Raw text]

ioserial select


Serial select support is on if fileio is included, but it should only be if the select option in fileio is on, that is in kernel configs.

Jani
--- orig/packages/io/serial/current/ChangeLog
+++ mod/packages/io/serial/current/ChangeLog
@@ -1,3 +1,9 @@
+2004-11-30  Jani Monoses <jani@iv.ro>
+
+	 * cdl/io_serial.cdl : CYGPKG_IO_SERIAL_SELECT_SUPPORT requires 
+	 CYGFUN_IO_FILEIO_SELECT specifically not just CYGPKG_FILEIO. The 
+	 latter provides select support only in kernel configurations.
+	 
 2004-04-22  Jani Monoses <jani@iv.ro>
 
 	 * cdl/io_serial.cdl :


--- orig/packages/io/serial/current/cdl/io_serial.cdl
+++ mod/packages/io/serial/current/cdl/io_serial.cdl
@@ -305,7 +305,7 @@
 	display "Enable serial device select support"
 	flavor bool
 	active_if CYGPKG_IO_FILEIO
-	requires  CYGPKG_IO_FILEIO
+	requires  { CYGFUN_IO_FILEIO_SELECT == 1 }
 	default_value 1
 	description "
 	    This option enables support for the select() API function on all




Index Nav: [Date Index] [Subject Index] [Author Index] [Thread Index]
Message Nav: [Date Prev] [Date Next] [Thread Prev] [Thread Next]