Re: Mailing list administration

2006-04-20 Thread James A. Morrison
Please, go ahead and admin the lists. -- Thanks, Jim http://www.csclub.uwaterloo.ca/~ja2morri/ http://phython.blogspot.com http://open.nit.ca/wiki/?page=jim ___ Bug-hurd mailing list Bug-hurd@gnu.org http://lists.gnu.org/mailman/listinfo/bug-hurd

Re: rollover translator

2004-10-30 Thread James A. Morrison
Alfred M. Szmidt [EMAIL PROTECTED] writes: Hey, I got this funky idea today, but I'm not sure what would be the best way to implement it. What it would essentially do is provide a circular file, so when you get to the end of the file you start from position 0. With the nice option that

Re: Gratuitous error with ext2fs on boot

2004-09-20 Thread James A. Morrison
I Juha Nygard [EMAIL PROTECTED] writes: tried to boot GNU/Hurd on my PC (asus a7a266 motherboard, duron and 40GB maxtor hard disk). The Hurd partition size is 1.7GB. I have managed to boot Debian GNU/Hurd with the serverboot.gz thing, which has become obsolete, but not with the new method.

mlock for the Hurd

2003-03-25 Thread James A Morrison
A. Morrison 2003-03-25 James A Morrison [EMAIL PROTECTED] * mlock.c (mlock): Check the memory protections for the regions to be locked and ensure each page is in memory before it is wired by the kernel. Index: mlock.c

Re: Bug#156600: marked as done (FTBFS: hurd should build-depend onautoconf2.13)

2003-03-13 Thread James A. Morrison
]) by rees.math.uwaterloo.ca (8.9.3/8.9.3) id VAA14409; Tue, 13 Aug 2002 21:31:34 -0400 (EDT) Date: Tue, 13 Aug 2002 21:31:34 -0400 (EDT) Message-Id: [EMAIL PROTECTED] X-Authentication-Warning: rees.math: ja2morri set sender to [EMAIL PROTECTED] using -f From: James A Morrison

Re: question about hurd

2003-03-11 Thread James A. Morrison
On Tue, 2003-03-11 at 17:39, Sebastien DI MERCURIO wrote: Hello, I've got a couple of question when looking at Hurd boot sequence. To start the system, Grub (or any other multiboot bootloader) launch 3 modules : the kernel, the exec server and the filesystem server. But, how thoses 3

Re: init patch

2003-01-22 Thread James A Morrison
launch_something () to retry start_child as it needs to and crashes the system if nothing works. James A. Morrison 2003-01-22 James A. Morrison [EMAIL PROTECTED] * init.c (start_child): Return err on error. Index: init.c

init patch

2003-01-20 Thread James A Morrison
This patch allows the computer to reboot if the user does not enter a value for the path to a server. James A. Morrison 2003-01-20 James A. Morrison [EMAIL PROTECTED] * init.c (getstring): Return 0 if the user only presses enter. Index: init.c

simple path search for vga fonts

2003-01-05 Thread James A Morrison
Hi, After discovering I could recover my vga console by specifying a font, I decided I wanted a system font directory, so I made one. Here is the patch. James A. Morrison 2003-01-05 James A. Morrison [EMAIL PROTECTED] * vga.c (DEFAULT_VGA_FONT_PATH): Default path for vga fonts

rpc trace and standard msg lists

2003-01-05 Thread James A Morrison
))) cat $^ $@ to Makefile.in would work, but I keep getting make: *** No rule to make target `device/device.msgids', needed by `mach.msgids' . Stop. James A. Morrison 2002-12-01 James A. Morrison [EMAIL PROTECTED] * rpctrace.c: Add option to use standard rpc list files. Index

Re: Hurd doesn't boot with 1024 Mb RAM

2003-01-04 Thread James A Morrison
, but we don't have enough information so far to tell. --- Gerardo Pirla Diaz James A. Morrison ___ Bug-hurd mailing list [EMAIL PROTECTED] http://mail.gnu.org/mailman/listinfo/bug-hurd

TODO items

2002-11-05 Thread James A Morrison
Hi, While searching for round_page, I started reading the TODO list. I found what seems to be an older reference to switching to libio. Anyway, the actual point of this is to ask where the BFD exec server has been resurected or if it has been excised yet. James A. Morrison

store_typed_open on non-typed names

2002-10-07 Thread James A Morrison
is the patch. 2002-10-07 James A Morrison [EMAIL PROTECTED] * typed.c (store_typed_open): Use store_open if NAME does not contain a ':'. Index: typed.c === RCS file: /cvsroot/hurd/hurd/libstore/typed.c,v retrieving

vmstat cleanups

2002-06-16 Thread James A Morrison
Hi, I noticed vmstat wasn't reporting the total amount of memory on my system. I'm not sure if it is the Hurd or Mach that is incorrectly counting memory some where, but I suspect it is Mach. Anyway, here is the patch. James A. Morrison 2002-06-16 James A. Morrison [EMAIL PROTECTED

libps: int to size_t where neccesary.

2002-06-03 Thread James A Morrison
Hi, This is a slight modification from my last patch, same idea though. James A. Morrison 2002-06-04 James A. Morrison [EMAIL PROTECTED] * spec.c (sprint_frac_value): Added case for values between 1000 and 1023. Make VALUE, FRAC size_t's and return a value of type

pfinet, it now compiles (with this patch ;)

2002-05-31 Thread James A Morrison
2002-05-31 James A. Morrison [EMAIL PROTECTED] * Makefile (LINUXSRCS): Removed Search for .S files. (LINUXASMS): New Variable to hold .S files. (arch-lib-asms): New Variable to hold .S filenames. (OBJS): Pattern substitute .S to .o. Index: Makefile

vm_size_t is unsigned, so libps should use unsigned ints.

2002-05-26 Thread James A Morrison
Hi, I had noticed that ps and pptop would show the virtual size of some of my processes to be some large negative number, which seems wrong, so here is the patch I use to get only positive number for the resident size and the virtual size. James A. Morrison 2002-05-26 James A. Morrison

Comments about resident_size and virtual_size

2002-05-26 Thread James A Morrison
Hi, It seems CMU expected task_basic_info.resident_size and task_basic_info.virtual_size to return the number of pages used, but it seems oskit-mach doesn't do that, gnumach probably returns the number of bytes used as well. James A. Morrison 2002-05-26 James A. Morrison [EMAIL PROTECTED

[patch] diskfs_create_protid

2002-04-09 Thread James A Morrison
Hi, I've changed diskfs_create_protid not to duplicate the iouser passed into it. This diskfs_create_protid and netfs_make_protid the same semantics wrt the iouser passed to them. 2002-04-06 James A. Morrison [EMAIL PROTECTED] libdiskfs: * io-restrict-auth.c

libnetfs: protid and peropen return error_t's

2002-04-09 Thread James A Morrison
Hi, This patch should sync the interfaces of libnetfs and libdiskfs wrt the creation of peropens and protids. 2002-04-05 James A. Morrison [EMAIL PROTECTED] libnetfs: netfs_make_peropen, and netfs_make_protid to return an error_t and take an extra parameter to replace

make_node

2002-04-09 Thread James A Morrison
Hi, Although Roland wasn't sure of the usefulness of the this patch. This patch changes both libnetfs and libdiskfs to have make_node return an error_t. 2002-04-06 James A. Morrison [EMAIL PROTECTED] libnetfs: * make-node.c (netfs_make_node): Now returns an error_t and sets

patch: diskfs_make_node returns an error_t

2002-04-02 Thread James A Morrison
I changed the signature of diskfs_make_node to return an error_t like diskfs_make_peropen or diskfs_make_protid. I'm holding back on the libnetfs stuff until I know how make_protid should act wrt it iouser struct. 2002-04-02 James A. Morrison [EMAIL PROTECTED] ext2fs: * inode.c

error checking in libnetfs

2002-03-28 Thread James A Morrison
during the last set of checkins. Just a reminder, there are outstanding documentation patches for hurd.texi. 2002-03-28 James A. Morrison [EMAIL PROTECTED] daemons: * console-run.c: Updated copyright. ftpfs: * fs.c (ftpfs_create): Check return value of netfs_make_node

zealous use of error

2002-03-24 Thread James A Morrison
the number of arguments it has before checking to see if it started as a translator to match the behaviour of other translators. 2002-03-23 James A. Morrison [EMAIL PROTECTED] boot: * boot.c (main): Use error, not perror and exit. console: * main.c (main): Use error, not fprintf

patch: use err, not errno

2002-03-14 Thread James A Morrison
is not assumed to be 0 in the Hurd system. So how does the change log look? 2002-03-14 James A. Morrison [EMAIL PROTECTED] daemons: * console-run.c (open_console): Use err, not errno. fstests: * opendisk.c: Use err, not errno. init: * init.c (reboot_mach): Use err

added an error_t to netfs_startup

2002-03-09 Thread James A Morrison
Hi, This patch is cosmetic, but it helped me debug since I couldn't get gdb to print errno, where it would print error. Is this the better way to return the error? If yes, I will go through the rest of the hurd source looking for similar situations and fix them as well. 2002-03-9 James

hostmux using getaddrinfo

2002-03-09 Thread James A Morrison
Hi, I managed to get this to work manually bootstrapping it to show that these changes work. 2002-03-09 James A. Morrison [EMAIL PROTECTED] * mux.c: Changed lookup behaviour to use the addrinfo struct instead of the hostent struct. Renamed lookup_hostent

firmlink/filemux patch

2002-02-24 Thread James A Morrison
, 1999, 2001, 2002 Free Software Foundation, Inc. Written by Miles Bader [EMAIL PROTECTED] + Extended by James A. Morrison [EMAIL PROTECTED] This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as @@ -26,20 +27,29

patch to remove the use of pathtrans in the Hurd source

2002-02-10 Thread James A Morrison
These should be last references to dir_pathtrans left in the hurd sources. 2002-02-11 James A. Morrison [EMAIL PROTECTED] * fstests/fstests: dir_pathtrans - dir_lookup * hurd/fs.defs: Likewise * hurd/fsys.defs: Likewise * libdiskfs/diskfs.h: Likewise

patch: grub url in hurd.texi

2002-02-10 Thread James A Morrison
2002-02-11 James A. Morrison [EMAIL PROTECTED] * hurd.texi: Updated grub url. Index: hurd.texi === RCS file: /cvsroot/hurd/hurd/doc/hurd.texi,v retrieving revision 1.20 diff -u -r1.20 hurd.texi --- hurd.texi 12 Mar

patch to document dir_* functions

2002-02-10 Thread James A Morrison
2002-02-11 James A. Morrison [EMAIL PROTECTED] * hurd.texi (Modifying Directories): Documented dir_mkfile, dir_mkdir dir_rmdir, dir_unlink, dir_link and dir_rename. Index: hurd.texi === RCS file: /cvsroot

patch to document boot program

2002-02-10 Thread James A Morrison
2002-02-11 James A. Morrison [EMAIL PROTECTED] * hurd.texi: Document boot program, added Invoking boot section Index: hurd.texi === RCS file: /cvsroot/hurd/hurd/doc/hurd.texi,v retrieving revision 1.20 diff -u -r1.20

patch to document showtrans and fsysopts

2002-02-10 Thread James A Morrison
2002-02-11 James A. Morrison [EMAIL PROTECTED] * hurd.texi (Translators): Document the options for showtrans and fsystops. Index: hurd.texi === RCS file: /cvsroot/hurd/hurd/doc/hurd.texi,v retrieving revision

patch to reword part of hurd.texi

2002-02-10 Thread James A Morrison
Hi, I tried to reword this paragraph to make more sense, I hope it does. 2002-02-11 James A. Morrison [EMAIL PROTECTED] * hurd.texi (Translators): Reworded a paragraph that had a reword request on it. Index: hurd.texi

patch to update the copyright date

2002-02-10 Thread James A Morrison
Hi, This patch just updates the copyright information 2002-02-11 James A. Morrison [EMAIL PROTECTED] * hurd.texi: Updated copyright dates, and identified JM in hurd.texi Index: hurd.texi === RCS file: /cvsroot/hurd

Attempt 2 at a documentation patch

2002-01-29 Thread James A Morrison
I've tried to fill in some gaps I found and reword some sections that indicated they needed rewording. Comments? 2002-01-29 James A. Morrison [EMAIL PROTECTED] * hurd.texi (Invoking boot): Added Invoking boot section. (showtrans): Added command line options

Another boot example for hurd.texi

2002-01-23 Thread James A Morrison
Here is a patch for hurd.texi that adds some information on using boot. It also fixes a typo. 2002-01-23 James A. Morrison [EMAIL PROTECTED] * hurd.texi (Boot Program): Added section for program 'boot'. (Recursive Bootstrap): Added a real partition example. Updated

Re: tail -f seg faults

2001-10-31 Thread James A Morrison
Ok, I have screen open but I can't switch screens for some reason. Well, I think I'll enable my telnetd. Thanks for you help James Morrison This is interesting: X-Shopping-List: (1) Tabular samples (2) Fabulous buds (3) Gymnastic acne (4) Historic secret rebellions