Re: New installation CDs and qemu image

2014-02-11 Thread Santi cluke
Thanks Samuel, but I've searched here ( http://ftp.debian-ports.org/debian-cd/hurd-i386/current/) and the arent new versions. Thanks in advance. Diego 2014-02-11 20:42 GMT-03:00 Samuel Thibault : > Santi cluke, le Tue 11 Feb 2014 21:39:58 -0200, a écrit : > > Where i can get the new rebuilded C

Re: New installation CDs and qemu image

2014-02-11 Thread Santi cluke
Where i can get the new rebuilded CDs and QEMU image? 2014-02-11 9:17 GMT-03:00 Samuel Thibault : > Hello, > > I've rebuilt the installation CDs and the preinstalled qemu image. > > Samuel > > > -- > To UNSUBSCRIBE, email to debian-hurd-requ...@lists.debian.org > with a subject of "unsubscribe".

Re: New installation CDs and qemu image

2014-02-11 Thread Samuel Thibault
Samuel Thibault, le Wed 12 Feb 2014 00:13:18 +0100, a écrit : > Samuel Thibault, le Tue 11 Feb 2014 23:37:05 +0100, a écrit : > > Gabriele Giacone, le Tue 11 Feb 2014 18:22:43 +0100, a écrit : > > > 4 GB RAM. > > > > It seems there is an issue with more than 1856M indeed, and it would > > appear o

Re: New installation CDs and qemu image

2014-02-11 Thread Samuel Thibault
Santi cluke, le Tue 11 Feb 2014 22:08:18 -0200, a écrit : > Thanks Samuel, but I've searched here (http://ftp.debian-ports.org/debian-cd/ > hurd-i386/current/) and the arent new versions. Snapshots have never been there. It seems I didn't keep the link to people.d.o on that page, I should have, m

Re: New installation CDs and qemu image

2014-02-11 Thread Samuel Thibault
Santi cluke, le Tue 11 Feb 2014 21:39:58 -0200, a écrit : > Where i can get the new rebuilded CDs and QEMU image? The same place as usual. Samuel

Re: New installation CDs and qemu image

2014-02-11 Thread Samuel Thibault
Samuel Thibault, le Tue 11 Feb 2014 23:37:05 +0100, a écrit : > Gabriele Giacone, le Tue 11 Feb 2014 18:22:43 +0100, a écrit : > > 4 GB RAM. > > It seems there is an issue with more than 1856M indeed, and it would > appear only while using an initrd... Perhaps grub simply puts the initrd > out of

Re: New installation CDs and qemu image

2014-02-11 Thread Samuel Thibault
Gabriele Giacone, le Tue 11 Feb 2014 18:22:43 +0100, a écrit : > 4 GB RAM. It seems there is an issue with more than 1856M indeed, and it would appear only while using an initrd... Perhaps grub simply puts the initrd out of reach from the kernel... Samuel

Re: New installation CDs and qemu image

2014-02-11 Thread Gabriele Giacone
On Tue, Feb 11, 2014 at 1:17 PM, Samuel Thibault wrote: > I've rebuilt the installation CDs and the preinstalled qemu image. CD says "start ext2fs: panic: pmap_remove: null pv_list!" -- G..e

Re: New installation CDs and qemu image

2014-02-11 Thread Gabriele Giacone
On Tue, Feb 11, 2014 at 6:04 PM, Samuel Thibault wrote: > Gabriele Giacone, le Tue 11 Feb 2014 17:18:41 +0100, a écrit : >> CD says "start ext2fs: panic: pmap_remove: null pv_list!" > > Which CD? Which virtual machine startup command line? How much memory > did you give it? Did you check the md5su

Re: New installation CDs and qemu image

2014-02-11 Thread Samuel Thibault
Gabriele Giacone, le Tue 11 Feb 2014 17:18:41 +0100, a écrit : > On Tue, Feb 11, 2014 at 1:17 PM, Samuel Thibault > wrote: > > I've rebuilt the installation CDs and the preinstalled qemu image. > > CD says "start ext2fs: panic: pmap_remove: null pv_list!" Which CD? Which virtual machine startup

[PATCH 1/6] hurd: fix the get-children and get-source procedures

2014-02-11 Thread Justus Winter
* hurd/fs.defs: Add file_get_children and file_get_source. * hurd/fsys.defs: Remove fsys_get_children and fsys_get_source. * libdiskfs/fsys-get-children.c: Rename and adapt accordingly. * libdiskfs/fsys-get-source.c: Likewise. * libnetfs/fsys-get-children.c: Likewise. * libnetfs/fsys-get-source.c:

[PATCH 4/6] tmpfs: set diskfs_disk_name to "none"

2014-02-11 Thread Justus Winter
By default diskfs_disk_name is returned as the source of libdiskfs-based translators. Hurds fstab allows multiple entries with the mnt_fsname being "none". * tmpfs/tmpfs.c (diskfs_disk_name): Set to "none". --- tmpfs/tmpfs.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tmp

[PATCH 3/6] trans/mtab: ignore translators that do not implement file_get_source

2014-02-11 Thread Justus Winter
Previously, the mtab translator would guess the source of a filesystem translator from its last argument. This made all kinds of non-filesystem translators appear in /proc/mounts, causing severe problems due to umount --all removing vital passive translator records. Fix this by ignoring all trans

[PATCH 2/6] nfs: implement netfs_get_source

2014-02-11 Thread Justus Winter
Implement netfs_get_source so that nfs translators show up in /proc/mounts. * nfs/main.c (netfs_get_source): New function. --- nfs/main.c | 14 ++ 1 file changed, 14 insertions(+) diff --git a/nfs/main.c b/nfs/main.c index 3ce75a9..cd1c29a 100644 --- a/nfs/main.c +++ b/nfs/main.c @@

[PATCH 5/6] trans/mtab: do not map unknown source strings to "none"

2014-02-11 Thread Justus Winter
Previously, map_device_to_path mapped unknown device strings to "none". Return a copy of the original source string instead so that e.g. nfs mount point points are properly handled. * trans/mtab.c (map_device_to_path): Do not map unknown source strings to "none". --- trans/mtab.c | 2 +- 1 file

fix the get-children and get-source procedures

2014-02-11 Thread Justus Winter
Hi :) when I implemented the mtab stuff last summer I made quite a blunder. I added fsys_get_{children,source}, but send those messages to ports associated with nodes, not to control ports. So: [PATCH 1/6] hurd: fix the get-children and get-source procedures Removes fsys_get_{children,source}, a

[PATCH 6/6] New RPCs, fix build

2014-02-11 Thread Justus Winter
--- trans/Makefile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/trans/Makefile b/trans/Makefile index c0386d0..90df479 100644 --- a/trans/Makefile +++ b/trans/Makefile @@ -56,7 +56,7 @@ magic: ../libiohelp/libiohelp.a hello: ../libtrivfs/libtrivfs.a ../libfshelp/libfshelp.a

New installation CDs and qemu image

2014-02-11 Thread Samuel Thibault
Hello, I've rebuilt the installation CDs and the preinstalled qemu image. Samuel