Re: enabling the Hurd console by default?

2011-11-11 Thread Samuel Thibault
Samuel Thibault, le Tue 08 Nov 2011 09:48:30 +0100, a écrit : > Arne Babenhauserheide, le Tue 08 Nov 2011 07:42:03 +0100, a écrit : > > > I think it would still work, for the same reason the Mach output now > > > works > > > > IIRC last time I started a conssole, it was named “graphical output”…

Re: Adding and deleting routes in hurd ??

2011-11-11 Thread Samuel Thibault
harish badrinath, le Fri 11 Nov 2011 17:47:50 +0530, a écrit : > error: '_IOT_ortentry' undeclared (first use in this function) See corresponding information in http://www.gnu.org/software/hurd/hurd/porting/guidelines Samuel -- To UNSUBSCRIBE, email to debian-hurd-requ...@lists.debian.org wit

Re: Adding and deleting routes in hurd ??

2011-11-11 Thread Thomas Bushnell, BSG
A hurd ioctl has to also have something which documents the exact structure layout in a way that the library can use to reformat it into a Mach message. That's what the _IOT_foo thing would be. Since it's missing, the _IOW call fails. Some ioctls can't be represented, for various reasons, and requ

Adding and deleting routes in hurd ??

2011-11-11 Thread harish badrinath
Hello, Is it possible to add and delete routing information in hurd .. In i noticed the following snippet #if 0 #define SIOCADDRT _IOW('r', 10, struct ortentry) /* add route */ #define SIOCDELRT _IOW('r', 11, struct ortentry) /* delete route */ #endif So i copied and pasted thes