Re: procfs

2009-12-30 Thread Shakthi Kannan
Hi, --- On Thu, Dec 31, 2009 at 6:19 AM, Anand Rathi wrote: | how to use procfs ? \-- After building procfs code (make in src/) Try: # mkdir /proc # settrans -fgap /proc procfs You can then use ls, cat on /proc. SK -- Shakthi Kannan http://www.shakthimaan.com

Re: hurd/trans/hello.c changes

2009-12-29 Thread Shakthi Kannan
? \-- The hello translator builds, and works fine when built from the Hurd git sources. So, we will leave it at that. SK -- Shakthi Kannan http://www.shakthimaan.com

Re: hurd/trans/hello.c changes

2009-12-23 Thread Shakthi Kannan
nd works fine. I would like to see a working fprintf example in a translator. Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

hurd/trans/hello.c changes

2009-12-23 Thread Shakthi Kannan
inputs in this regard, Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Re: [RFC] git fs translator

2009-12-22 Thread Shakthi Kannan
ent, and simpler to parse (libnxml) them and use it. cgit, for example, uses a html() method to write HTML content. Some web interfaces provide RSS/Atom, but, that is only for the top-level commits. There are some Ruby on Rails git projects that return plain text for diffs, which is good. Regards,

Re: [RFC] git fs translator

2009-12-20 Thread Shakthi Kannan
are you referring to here? Are you referring to using git for-each-ref or git cat-file? SK -- Shakthi Kannan http://www.shakthimaan.com

[RFC] git fs translator

2009-12-20 Thread Shakthi Kannan
gitweb, one can obtain the repo details from the URL. So, is the following flow acceptable? gitfs translator->libcurl (HTTP request)->gitweb->HTTP response Appreciate any inputs in this regard, Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

ssh between host, and qemu GNU Hurd

2009-10-05 Thread Shakthi Kannan
.html and feel free to update the Hurd wiki with the same. Thanks again! SK -- Shakthi Kannan http://www.shakthimaan.com

qemu Hurd tun/tap networking with bridge on Fedora host

2009-10-04 Thread Shakthi Kannan
16.0.1 to 172.16.0.2. What could I be missing here? Appreciate any inputs. Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

debootstrap Hurd

2009-10-04 Thread Shakthi Kannan
Hi, Can someone refer me some documentation on how I could debootstrap Hurd? I am having SATA disks, and using a RPM-based distribution. If I could setup /dev/sda4 for Hurd, I could use Xen on the host system to run it as a guest? Or, do you have any other suggestions? Thanks! SK -- Shakthi

Re: Someone interested in writing a regression test suite for Hurd components?

2009-09-23 Thread Shakthi Kannan
interested in | working on that? \-- Can we use Check (LGPL)? http://check.sourceforge.net/ SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Mercurial vs. git

2009-09-23 Thread Shakthi Kannan
xplicit in 'git', and it helps you to move between working directory and the local repository. Even if you don't remember the git diff options, you can always do 'git status' at any point of time to see your current state of the local repository, and the output is quite

Re: Mercurial vs. git

2009-09-23 Thread Shakthi Kannan
-ally-managing-love-letters.pdf SK -- Shakthi Kannan http://www.shakthimaan.com

Re: [PATCH] Compiler fixes for ipc_mig.c, task.c, memory_object.c, vm_kern.c

2008-11-14 Thread Shakthi Kannan
which uses: void device_deallocate (void *p). So, I have added only device_reference prototype in ds_routines.h. Other changes have been incorporated. --- 2008-11-15 Shakthi Kannan <[EMAIL PROTECTED]> * device/ds_routines.h: Added function prototypes for device_reference. *

[PATCH] Compiler fixes for ipc_mig.c, task.c, memory_object.c, vm_kern.c

2008-11-13 Thread Shakthi Kannan
2008-11-13 Shakthi Kannan <[EMAIL PROTECTED]> * kern/ipc_mig.c: Added function prototypes for device_reference and device_deallocate. * kern/task.c (task_create): Moved unused i variable inside FAST_TAS. * vm/memory_object.c: Added function prototy

Re: [PATCH] Remove warning unused variable ret in kern/eventcount.c

2008-11-11 Thread Shakthi Kannan
e in a single e-mail, so it is easy to review it and also useful for follow-up discussions, or for any clarifications. If you would like me to send a group of patches, then I will do so in future. SK -- Shakthi Kannan http://www.shakthimaan.com

[PATCH] Remove warning unused variable ret in kern/eventcount.c

2008-11-11 Thread Shakthi Kannan
Hi, This removes the warning for unused variable ret in kern/eventcount.c: 2008-11-11 Shakthi Kannan <[EMAIL PROTECTED]> * kern/eventcount.c (evc_wait_clear): Remove unused variable 'ret'. --- diff --git a/kern/eventcount.c b/kern/eventcount.c index 1b68ec2..6fcebff 1

[PATCH] Fix conflicting types for log function kern/debug.c

2008-11-11 Thread Shakthi Kannan
Hi, This fixes the warning for conflicting types for built-in log function in kern/debug.c. 2008-11-11 Shakthi Kannan <[EMAIL PROTECTED]> * Makefile.am: Add -fno-builtin-log to AM_CFLAGS. --- diff --git a/Makefile.am b/Makefile.am index 31cf857..188ecd7 100644 --- a/Makefile.am

[PATCH] Fixed compiler warning for kern/bootstrap.c

2008-11-10 Thread Shakthi Kannan
Hi, Fixed compiler warnings for kern/bootstrap.c. Is it advisable to replace #if 0...#endif construct with #ifndef NDEBUG...#endif? This way, you can add -D NDEBUG to compiler options to prevent debug code being compiled? Current patch uses #if 0...#endif. 2008-11-10 Shakthi Kannan <[EM

Re: [PATCH] ipc/mach_port.c compiler warning fix.

2008-11-05 Thread Shakthi Kannan
Hi, Sorry, sent wrong second patch (still trying to get working on git). Take this one: 2008-11-05 Shakthi Kannan <[EMAIL PROTECTED]> ipc/mach_port.c (mach_port_insert_right): Fix 'ipc_object_copyout_name' type compiler warning. --- diff --git a/ipc/m

[PATCH] ipc/mach_port.c compiler warning fix.

2008-11-04 Thread Shakthi Kannan
2008-11-05 Shakthi Kannan <[EMAIL PROTECTED]> ipc/mach_port.c (mach_port_insert_right): Fix 'ipc_object_copyout_name' type compiler warning. --- diff --git a/ipc/mach_port.c b/ipc/mach_port.c index 0d78714..ea863f4 100644 --- a/ipc/mach_port.c +++ b

[PATCH] ipc/mach_port.c compiler warning fix.

2008-11-04 Thread Shakthi Kannan
Fix ipc/mach_port.c compiler warning. --- ipc/mach_port.c |3 ++- 1 files changed, 2 insertions(+), 1 deletions(-) diff --git a/ipc/mach_port.c b/ipc/mach_port.c index 63c25dc..0d78714 100644 --- a/ipc/mach_port.c +++ b/ipc/mach_port.c @@ -1290,7 +1290,8 @@ mach_port_insert_right( if

Re: kvm with hurd-k16.img

2008-11-02 Thread Shakthi Kannan
Hi, --- On Sun, Nov 2, 2008 at 7:37 PM, Shakthi Kannan <[EMAIL PROTECTED]> wrote: | kvm -boot a -hda hurd-k16.img -fda grub-0.97-i386-pc.ext2fs -m 512 \-- It was reported here: http://paste.lisp.org/display/67296 Had to use it with -no-kvm-irqchip or -no-kvm-pit. For setting up kvm on

kvm with hurd-k16.img

2008-11-02 Thread Shakthi Kannan
kvm? SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Hurd

2008-10-31 Thread Shakthi Kannan
u need to checkout the gnumach-1-branch: http://www.bddebian.com/~wiki/microkernel/mach/gnumach/building/ Regards, SK -- Shakthi Kannan http://www.shakthimaan.com

Regarding ddekit

2008-10-24 Thread Shakthi Kannan
, we need to replace gnumach/glue with a new glue for DDEKit. But, eventually we would like them to be run in user-space? Appreciate any suggestions in this regard. Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

gnumach dde.o not linked in gnumach

2008-10-20 Thread Shakthi Kannan
ule needs to be added to some loader variable? Appreciate any help, SK -- Shakthi Kannan http://www.shakthimaan.com

Viengoos build documentation

2008-10-08 Thread Shakthi Kannan
Hi, I have documented the Viengoos build process here: http://www.bddebian.com/~wiki/microkernel/building/ Please feel free to add/delete/update the same, SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Xen networking setup

2008-09-26 Thread Shakthi Kannan
Hi, --- On Wed, Sep 24, 2008 at 6:37 PM, Shakthi Kannan <[EMAIL PROTECTED]> wrote: | I need some clarification on Xen networking bridged setup. \-- Fixed! I have uploaded the configuration files for reference: http://www.bddebian.com/~wiki/microkernel/mach/gnumach/por

Xen networking setup

2008-09-24 Thread Shakthi Kannan
regex (eth|vif).* noregex address 192.168.10.60 netmask 255.255.255.0 enable access to the Internet through eth1?. 2. Should we add anything to 'vif' in /etc/xen/hurd? Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Xen - exec hanging

2008-09-22 Thread Shakthi Kannan
Hi, --- On Mon, Sep 22, 2008 at 8:31 PM, Michael Banck <[EMAIL PROTECTED]> wrote: | Please edit/adjust the official Xen page on the official wiki \-- Updated: http://www.bddebian.com/~wiki/microkernel/mach/gnumach/ports/xen SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Xen - exec hanging

2008-09-22 Thread Shakthi Kannan
n.html Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Xen - exec hanging

2008-09-22 Thread Shakthi Kannan
try in /etc/xen/hurd was a ramdisk entry that had everything for the user to boot to. --- | Yes: `You need an already installed GNU/Hurd system.' \-- Will do that. Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Xen - exec hanging

2008-09-21 Thread Shakthi Kannan
numach/ports/xen/ What should be done next to get the console prompt? Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Xen - filesystem not mounted cleanly

2008-09-21 Thread Shakthi Kannan
=== END === "sudo xm list" displays both domain-0 and hurd in the list. I have also fscked /dev/sda4. I don't get the console prompt. What am I missing? Appreciate any feedback, Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Xen Hurd: Error: Device 768 (vbd) could not be connected

2008-09-02 Thread Shakthi Kannan
Hi, --- On Tue, Sep 2, 2008 at 10:40 PM, Samuel Thibault <[EMAIL PROTECTED]> wrote: | Err, I don't understand. Are you meaning that /dev/sda1 contains the / | of dom0? \-- Yes. --- | If yes then no you shouldn't use \-- Ok. Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Xen Hurd: Error: Device 768 (vbd) could not be connected

2008-09-01 Thread Shakthi Kannan
output? On running "sudo xm create -c hurd", are we expecting some output? 2. If there is no SCSI support in GNU Mach, but, host system uses sdaX, what parameters do we need to use for 'disk'? Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Xen Hurd: Error: Device 768 (vbd) could not be connected

2008-09-01 Thread Shakthi Kannan
d? SK -- Shakthi Kannan http://www.shakthimaan.com

Xen Hurd: Error: Device 768 (vbd) could not be connected

2008-08-31 Thread Shakthi Kannan
the value of disk in /etc/xen/hurd file correct? I have / in /dev/sda1, /home in /dev/sda2, swap in /dev/sda3. Appreciate any help in this regard, Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Re: git clone wiki error

2008-07-11 Thread Shakthi Kannan
Hi, --- On Wed, Jul 9, 2008 at 10:17 AM, Shakthi Kannan <[EMAIL PROTECTED]> wrote: | git clone http://www.bddebian.com/git/wiki wiki \-- Works now. Thanks! Using git-core 1.5.6-1 on Debian Lenny. SK -- Shakthi Kannan http://www.shakthimaan.com

git clone wiki error

2008-07-08 Thread Shakthi Kannan
under http://www.bddebian.com/git/wiki Cannot obtain needed object === END === Any suggestions? SK -- Shakthi Kannan http://www.shakthimaan.com

Re: hurd internet through qemu

2008-04-30 Thread Shakthi Kannan
eed to specify -net nic,model? I have never passed any -net parameters when used with qemu. --- | I have 10.0.2.3 in my /etc/resolve.conf file. \-- /etc/resolv.conf. Regards, SK -- Shakthi Kannan http://www.shakthimaan.com

Re: K16, keyboard layout/mapping changes

2008-04-06 Thread Shakthi Kannan
\-- I just call it "experiences" :) Regards, SK -- Shakthi Kannan http://www.shakthimaan.com

Re: K16, keyboard layout/mapping changes

2008-04-05 Thread Shakthi Kannan
code found for keysym 0 Anyways, documentation is here: http://www.shakthimaan.com/installs/hurd-k16-x86.html SK -- Shakthi Kannan http://www.shakthimaan.com

Re: K16, keyboard layout/mapping changes

2008-04-05 Thread Shakthi Kannan
Hi, --- On Fri, Apr 4, 2008 at 7:28 PM, Samuel Thibault <[EMAIL PROTECTED]> wrote: | -k needs to be given the layout of _your_ keyboard, not the emulated | one. \-- I used: setxkbmap us on the host , and it worked. Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

K16, keyboard layout/mapping changes

2008-04-04 Thread Shakthi Kannan
ut, the "/" doesn't work. I need to have both the keys working to be able to do: hurd# export TERM=mach hurd#./native-installer How can this be resolved? Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com

Re: qemu with Debian K14

2008-03-31 Thread Shakthi Kannan
Hi Thomas, --- On Mon, Mar 31, 2008 at 9:43 PM, Thomas Schwinge <[EMAIL PROTECTED]> wrote: | The documentation is available here: | http://free-opensource.qvantel.net/mediawiki/index.php/Hurd_K14_Qemu \-- It is temporarily offline. Will bring it back soon. SK -- Shakthi Kanna

Who's who and which domain in Hurd

2008-03-30 Thread Shakthi Kannan
TED] /procB[EMAIL PROTECTED] GNU MachC[EMAIL PROTECTED] This will help us know whom to contact w.r.t. the domains. Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Built toolchain available

2008-03-29 Thread Shakthi Kannan
to upload both the toolchains to bddebian.com/~wiki and provide the link to it from here: http://www.bddebian.com/~wiki/hurd/building/cross-compiling/index.html Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Developer Blog

2008-03-19 Thread Shakthi Kannan
the news section. Regards, SK -- Shakthi Kannan http://www.shakthimaan.com

Re: GSoC application deadline passed

2008-03-18 Thread Shakthi Kannan
re any documentation on this procedure on how to build the images? Appreciate any inputs. Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Build failing with gcc-4.2 and glibc2-7

2008-02-10 Thread Shakthi Kannan
create different build toolchains for different versions of gcc, glibc, et. al. with required patches. SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Build failing with gcc-4.2 and glibc2-7

2008-02-09 Thread Shakthi Kannan
Hi, --- On Feb 8, 2008 11:08 PM, Sudharshan S <[EMAIL PROTECTED]> wrote: | with the relevant | patches applied. \-- Which ones did you use? SK -- Shakthi Kannan http://www.shakthimaan.com

Re: Hurd Toolchain Scripts (hutos)

2008-01-29 Thread Shakthi Kannan
It is still valid. Scripts were written to be able to run repeated regression tests, and for building different source toolchains. Regards, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.

Hurd Toolchain Scripts (hutos)

2008-01-16 Thread Shakthi Kannan
gcc-4.1-glibc-2.7.sh builds fine (offline). Please try the scripts to see if it builds fine on i386 systems, and report any errors/bugs. Feedback welcome, as always. What are the required patches for gcc-4.2-glibc-2.7.sh? We can test them through these scripts. SK -- Shakthi Kannan http

Re: [EMAIL PROTECTED]: compiling hurd/mig ?]

2008-01-10 Thread Shakthi Kannan
om/~wiki/hurd/building/cross-compiling/Makefile Just do "make" to build the toolchain. This is how you compile/build sources: http://free-opensource.qvantel.net/mediawiki/index.php/Hurd_Toolchain#Autotools_method SK -- Shakthi Kannan http://www.shakthimaan.com ___

Re: What after cross_gnu?

2007-12-25 Thread Shakthi Kannan
Hi, - On Dec 24, 2007 9:21 PM, Ashish Gokhale <[EMAIL PROTECTED]> wrote: | Does cross-gnu script build gnumach | kernel and hurd system as well? \-- AFAIK, it only uses the header files? - | or I it needs to be | built manually? \-- Need to be built manually. SK -- Shakthi

qemu with Debian K14

2007-12-22 Thread Shakthi Kannan
? http://eyeside.net/hurd/Hurd-on-QEMU.html It doesn't include 'export TERM=mach' steps. Should we update the following qemu documentation? http://www.bddebian.com/~wiki/hurd/running/qemu/index.html Regards, SK -- Shakthi Kannan http://www.

Re: gcc/toolchain Hurd maintenance

2007-12-22 Thread Shakthi Kannan
e Hurd to | the Savannah group it'd probably have exploded by now. We'll add you as | soon as you make substantial contributions. \-- Thanks for your prompt response. SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd maili

Re: cross-gnu toolchain GCC 4.2

2007-12-20 Thread Shakthi Kannan
Hi, - On 12/20/07, Shakthi Kannan <[EMAIL PROTECTED]> wrote: | I enter into root/src/gcc and do svn diff and it doesn't return | anything. \-- Yes, the patch is not getting applied. "apply_gcc_patches" doesn't work in the Makefile. Anyways, I wrote the Makefile

Re: cross-gnu toolchain GCC 4.2

2007-12-19 Thread Shakthi Kannan
using Debian Etch on x86. SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Testing /hurd/tmpfs

2007-12-18 Thread Shakthi Kannan
sage correct? I can remove the translator using: # settrans -g /tmp Appreciate any pointers, Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: Library/function documentation

2007-12-18 Thread Shakthi Kannan
rowser. Thanks for all your inputs, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

cross-gnu toolchain GCC 4.2

2007-12-18 Thread Shakthi Kannan
j' + rm -f /home/foo/root/bin/i586-pc-gnu-gcc + exit 100 make: *** [build_all] Error 100 === END === Is it missing some header file inclusion? SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://list

Re: Library/function documentation

2007-12-17 Thread Shakthi Kannan
Hi, - On Dec 17, 2007 5:37 PM, Samuel Thibault <[EMAIL PROTECTED]> wrote: | I guess there is some texinfo2html tool somewhere. \-- The following works: texi2html hurd.texi Regards, SK -- Shakthi Kannan http://www.shakthimaan.com _

Re: Library/function documentation

2007-12-17 Thread Shakthi Kannan
ve web documentation is my preference. I shall work on it and revert back. Thanks for your help and replies. SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: Library/function documentation

2007-12-16 Thread Shakthi Kannan
ew the documentation comments written before each function, if patches are sent for each file? Thanks for your reply, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Library/function documentation

2007-12-15 Thread Shakthi Kannan
ul to skim through a particular library with this documentation, and then look at each function in detail? Or, do you prefer doxygen over gtk-doc style? Or do you recommend to use cross-referencing with GLOBAL? http://www.htu.tugraz.at/~past/hurd/global/ Appreciate any inputs, Thanks, SK -- Sh

gcc/toolchain Hurd maintenance

2007-12-13 Thread Shakthi Kannan
Hi, I would like to hear some pointers to get started on how binutils, GCC, glibc, Hurd servers, etc. are collaborating in a Hurd system? ('toolchain maintenance') Note: Can you add "shakthik" to the Hurd project at savannah.gnu.org? My request has been pending. Thanks, SK

Re: System architecture view

2007-12-07 Thread Shakthi Kannan
Hi, Thanks for your explanation. Is this little better? (have updated the image again): http://shakthimaan.com/downloads/hurd/gnu-hurd-mach-system-architecture.png The .dia image is available at: http://shakthimaan.com/downloads/hurd/gnu-hurd-mach-system-architecture.dia SK -- Shakthi Kannan

Re: System architecture view

2007-12-07 Thread Shakthi Kannan
Hi, Replying to my own post: - On Dec 8, 2007 12:32 AM, Shakthi Kannan <[EMAIL PROTECTED]> wrote: | I would like get a big picture on how servers, ports, message queues, | libraries, system calls, IPC, gnumach, drivers, hardware et. al. are | layered. \-- Is this something close

System architecture view

2007-12-07 Thread Shakthi Kannan
Hi, Can anyone provide a overall system architecture view of all the components/layers of GNU Hurd, GNU Mach? I would like get a big picture on how servers, ports, message queues, libraries, system calls, IPC, gnumach, drivers, hardware et. al. are layered. Thanks, SK -- Shakthi Kannan http

Re: cross-gnu : mawk syntax error

2007-12-06 Thread Shakthi Kannan
Hi, - On Dec 6, 2007 11:25 PM, Ashish Gokhale <[EMAIL PROTECTED]> wrote: | I am trying to compile the Hurd system for some time \-- 1. How? 2. On which system? SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bu

Re: Using the cross built toolchain

2007-12-05 Thread Shakthi Kannan
ly, but for testing executables (etc.) that is | enough. And it is much easier than loop-mounting the file systems | images. (Also you don't need `root' rights.) \-- This is very helpful. Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com

Hurd savannah projects

2007-11-27 Thread Shakthi Kannan
g SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: cross-gnu

2007-11-26 Thread Shakthi Kannan
, what you | suggest may indeed be possible. Someone could have a look at this. The | GCC installation manual should be the place to find this documented. \-- It should be --sysroot=$PREFIX/sysroot. A useful thread: http://sourceware.org/ml/crossgcc/2006-06/msg00155.html SK -- Shakthi Kanna

Using the cross built toolchain

2007-11-26 Thread Shakthi Kannan
unt debian-hurd-qemu.img /test -o loop,offset=14966784 After transfering the files, just unmount the partition and test with qemu: qemu debian-hurd-qemu.img Regards, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hu

Re: Wiki (was: cross-gnu)

2007-11-25 Thread Shakthi Kannan
clarification request with | ikiwiki's upstream, Joey Hess. You did read this page, right? \-- Same as (1). Thanks for your updates. Regards, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: cross-gnu

2007-11-25 Thread Shakthi Kannan
e. - | from the built toolchain, mig and hurd can be compiled? | | Obviously. Why do you think it wouldn't work? \-- Just have to see as to what toolchain parameters to pass to configure script for hurd/mig to be built. Regards, SK -- Shakthi K

Re: cross-gnu

2007-11-24 Thread Shakthi Kannan
Feedback welcome. Regards, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: cross-gnu

2007-11-23 Thread Shakthi Kannan
-version-of-resolv_res_send.c.patch.patch have to be used with -p0 to patch inside glibc-2_7-branch, as follows: patch -p0 < /file/to/patch The others can be patched with -p1. The rest of the steps worked like a charm! The total space occupied including .../build/root/src/*.obj is 1.5 GB. Thanks! SK -- Shakt

Re: Build Hurd toolchain

2007-10-30 Thread Shakthi Kannan
iving it to the core developers for testing or to people who have Hurd machines to test on. Thanks for your continued help and support, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: Build Hurd toolchain

2007-10-30 Thread Shakthi Kannan
oss-gnu \-- Sorry, what needs to be done in the above? Thanks again, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: Build Hurd toolchain

2007-10-30 Thread Shakthi Kannan
developer header files? If yes, from where? Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: Build Hurd toolchain

2007-10-29 Thread Shakthi Kannan
or oskit version >= 19991121... no, too old! configure: error: version in less than required 19991121 make: *** [build] Error 1 === END === Probably need to try an older version from cvs. Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bu

Re: Build Hurd toolchain

2007-10-29 Thread Shakthi Kannan
stall-sh or install.sh in build-aux "/home/foo/projects/hurd/working/build/src/gnumach"/build-aux make: *** [build] Error 1 === END === How do I fix this --host option? SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailin

Re: Build Hurd toolchain

2007-10-20 Thread Shakthi Kannan
ion... bad configure: error: Hurd headers not installed or too old make: *** [build] Error 1" === END === What Hurd header files do I need to install on Debian Etch? >From where can I find the same? Thanks, SK -- Shakthi Kannan http://w

Hurd install with crosshurd (Debian Etch)

2007-10-20 Thread Shakthi Kannan
h device or address I tried using, "root=/dev/hd0s4" and it halted at: start (hd0,3)/hurd/ext2fs.static: (hd0,3)/hurd/ext2fs.static root=/dev/hd0s4: Gratuitous error Is this because of no SATA support for gnumach or am I missing something? Thanks, SK -- Shakthi Kannan http://www.shak

Unable to detect keyboard, Compaq nx7400

2007-10-06 Thread Shakthi Kannan
s? Thanks! SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: Build Hurd toolchain

2007-10-03 Thread Shakthi Kannan
lowing link is for those who are following this thread here: http://lists.gnu.org/archive/html/help-hurd/2007-10/msg0.html Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/m

Build Hurd toolchain

2007-09-28 Thread Shakthi Kannan
Hi, I am interested in building a toolchain for compiling Hurd, Mig on x86 Debian Etch GNU/Linux. 1. Is the following document the latest? http://www.bddebian.com/~wiki/unsorted/BuildingTheHurd/ OR Are these documentation relevant? http://www.nongnu.org/thug/cross.html http://lists.debian.org/d

Re: Hurd library HOWTO: RFC

2006-12-09 Thread Shakthi Kannan
, if there are no other > library dependancies? I'm not sure I understand this question. Sorry for not being clear. I meant building external libraries, which you have answered. Regards, SK -- Shakthi Kannan http://www.shakthimaan.com ___

Hurd library HOWTO: RFC

2006-11-30 Thread Shakthi Kannan
ile a library with the Hurd include header files alone without having to build the Hurd sources, if there are no other library dependancies? Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com ___ Bug-hurd mailing list Bug-hurd@gnu.org

Re: Cross-compiling GNU Mach, GNU Hurd

2006-10-28 Thread Shakthi Kannan
Hi, --- Shakthi Kannan <[EMAIL PROTECTED]> wrote: > I need info on cross-compiling GNU Mach and GNU Hurd > on on GNU/Linux (x86). Not needed anymore. I have compiled GNU Hurd on GNU Hurd K10 itself (Pentium III, 128 MB, 7 GB for Hurd). Thanks to tschwinge and azeem at #hurd. I

Cross-compiling GNU Mach, GNU Hurd

2006-10-28 Thread Shakthi Kannan
/thug/cross.html Is the documentation still applicable or is there a more recent update on how to cross-compile? Appreciate any feedback. Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the

Recent TODO list

2006-10-27 Thread Shakthi Kannan
Hi, Where can I find the latest TODO list for GNU Hurd? Thanks, SK -- Shakthi Kannan http://www.shakthimaan.com __ Do You Yahoo!? Tired of spam? Yahoo! Mail has the best spam protection around http://mail.yahoo.com

Re: device_read example

2005-09-19 Thread Shakthi Kannan
rd, and its value gets assigned in lprread in gnumach-1-branch and returned? Thanks for your help, SK Shakthi Kannan, MS Software Engineer, Specsoft (Hexaware Technologies) [E]: [EM

device_read example

2005-09-18 Thread Shakthi Kannan
ram, it does call the device_open in gnumach driver, but, for device_read it exits with the device_read_inband error message. Am I missing something here? Any help is appreciated. Thanks, SK -------- Shakthi Kannan, MS Software Engineer, Specsof

Re: user-space device drivers - hurd

2005-09-15 Thread Shakthi Kannan
for writing drivers? I'd appreciate any thoughts on the above, Thanks again, SK -------- Shakthi Kannan, MS Software Engineer, Specsoft (Hexaware Technologies) [E]: [EMAIL PROTECTED] [M]: (91) 98407-87007 [W]: http://w

user-space device drivers - hurd

2005-09-14 Thread Shakthi Kannan
eciate any feedback in this regard, Thanks, SK -------- Shakthi Kannan, MS Software Engineer, Specsoft (Hexaware Technologies) [E]: [EMAIL PROTECTED] [M]: (91) 98407-87007 [W]: http://www.shakthimaan.com [L]: Chen

  1   2   >