* [uml-devel] [PATCH] User-mode Linux: Port driver host system independence strengthened.
@ 2007-05-20 13:52 Jean-Yves Didier
2007-05-21 20:56 ` Jeff Dike
0 siblings, 1 reply; 2+ messages in thread
From: Jean-Yves Didier @ 2007-05-20 13:52 UTC (permalink / raw)
To: Jeff Dike; +Cc: user-mode-linux-devel
Port driver no longer need a telnet daemon and port-helper at fixed
locations on the host system. Fixed locations are still checked. If
detection failed, it will look for links or programs named uml.telnetd
and port-helper in user pathes list.
Signed-off-by: Jean-Yves Didier <jydidier@free.fr>
---
--- linux-2.6.21.1/arch/um/drivers/port_user.c.orig 2007-05-20
13:57:31.000000000 +0200
+++ linux-2.6.21.1/arch/um/drivers/port_user.c 2007-05-20
13:59:23.000000000 +0200
@@ -177,6 +177,12 @@ int port_connection(int fd, int *socket,
"/usr/lib/uml/port-helper", NULL };
struct port_pre_exec_data data;
+ if(os_access(argv[0], OS_ACC_X_OK) < 0)
+ argv[0] = "uml.telnetd";
+
+ if(os_access(argv[2], OS_ACC_X_OK) < 0)
+ argv[2] = "port-helper";
+
new = os_accept_connection(fd);
if(new < 0)
return new;
-------------------------------------------------------------------------
This SF.net email is sponsored by DB2 Express
Download DB2 Express C - the FREE version of DB2 express and take
control of your XML. No limits. Just data. Click to get it now.
http://sourceforge.net/powerbar/db2/
_______________________________________________
User-mode-linux-devel mailing list
User-mode-linux-devel@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/user-mode-linux-devel
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2007-05-21 21:03 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2007-05-20 13:52 [uml-devel] [PATCH] User-mode Linux: Port driver host system independence strengthened Jean-Yves Didier
2007-05-21 20:56 ` Jeff Dike
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.