Re: PATCH: sysinstall to remove userconfig code

2001-12-01 Thread Makoto Matsushita
Sorry for late reply. jkh Don't you want to try the devfs mount and only copy device files jkh if that returns an error code? Hmm, it seems better to me. I'll try it again... I find that more error handling is required if mounting devfs is failed. -- - Makoto `MAR' Matsushita To

Re: PATCH: sysinstall to remove userconfig code

2001-12-01 Thread Makoto Matsushita
jkh Don't you want to try the devfs mount and only copy device files jkh if that returns an error code? How 'bout this patch (attached below)? I've recreate boot floppies with this patch, then put them to: http://people.FreeBSD.org/~matusita/5.0-CURRENT-20011121-JPSNAP_usedevfs/ -- - Makoto

Re: PATCH: sysinstall to remove userconfig code

2001-11-29 Thread Jordan Hubbard
Looks good to me, I'd say commit it! - Jordan dsyphers DEBUG: kget: error buffer sizing matusita This is because sysinstall still want to get userconfig data matusita and put the result to /boot/kernel.conf. Userconfig was gone in 5-current, so we can safely remove kget() from

Re: PATCH: sysinstall to remove userconfig code

2001-11-29 Thread Makoto Matsushita
jkh Looks good to me, I'd say commit it! Thanks! I'll commit it in this weekend. BTW, how dou you think my other patch (use 'devfs' while mounting filesystems, use fsck_ffs instead of fsck) for sysinstall, which was posted about a week before to [EMAIL PROTECTED]? You can fetch from:

Re: PATCH: sysinstall to remove userconfig code

2001-11-29 Thread Jordan Hubbard
BTW, how dou you think my other patch (use 'devfs' while mounting filesystems, use fsck_ffs instead of fsck) for sysinstall, which was posted about a week before to [EMAIL PROTECTED]? You can fetch from: URL:http://people.freebsd.org/~matusita/5.0-CURRENT-20011121-JPSNAP_usedevfs /patch

Re: PATCH: sysinstall to remove userconfig code

2001-11-18 Thread Makoto Matsushita
imp Right. There is a forth tool available (authored I think by imp matsushita-san), I never do that :-) Maybe the one you mentioned is by yokota-san, URL:http://people.freebsd.org/~yokota/vuserconfig.tar.gz. -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to [EMAIL PROTECTED] with

Re: PATCH: sysinstall to remove userconfig code

2001-11-18 Thread Warner Losh
In message [EMAIL PROTECTED] Makoto Matsushita writes: : : imp Right. There is a forth tool available (authored I think by : imp matsushita-san), : : I never do that :-) Maybe the one you mentioned is by yokota-san, : URL:http://people.freebsd.org/~yokota/vuserconfig.tar.gz. Yes. I was

Re: PATCH: sysinstall to remove userconfig code

2001-11-17 Thread Warner Losh
In message [EMAIL PROTECTED] Cyrille Lefevre writes: : I don't know -current. what is the feature which replace kget ? : does boot -c (or whatever) still exists ? is it possible to : edit KERNEL.hints at boot time ? set/unset works. I've removed ISA devices at boot time by unsetting the 'at'

Re: PATCH: sysinstall to remove userconfig code

2001-11-17 Thread Cyrille Lefevre
Warner Losh wrote: In message [EMAIL PROTECTED] Cyrille Lefevre writes: : I don't know -current. what is the feature which replace kget ? : does boot -c (or whatever) still exists ? is it possible to : edit KERNEL.hints at boot time ? set/unset works. I've removed ISA devices at boot

Re: PATCH: sysinstall to remove userconfig code

2001-11-17 Thread Warner Losh
In message [EMAIL PROTECTED] Cyrille Lefevre writes: : Warner Losh wrote: : In message [EMAIL PROTECTED] Cyrille Lefevre writes: : : I don't know -current. what is the feature which replace kget ? : : does boot -c (or whatever) still exists ? is it possible to : : edit KERNEL.hints at boot

Re: PATCH: sysinstall to remove userconfig code

2001-11-17 Thread Peter Wemm
Warner Losh wrote: In message [EMAIL PROTECTED] Cyrille Lefevre writes : : Warner Losh wrote: : In message [EMAIL PROTECTED] Cyrille Lefevre wr ites: : : I don't know -current. what is the feature which replace kget ? : : does boot -c (or whatever) still exists ? is it possible to

Re: PATCH: sysinstall to remove userconfig code

2001-11-17 Thread Warner Losh
In message [EMAIL PROTECTED] Peter Wemm writes: : Warner Losh wrote: : In message [EMAIL PROTECTED] Cyrille Lefevre writes : : : : Warner Losh wrote: : : In message [EMAIL PROTECTED] Cyrille Lefevre wr : ites: : : : I don't know -current. what is the feature which replace kget ? :

Re: PATCH: sysinstall to remove userconfig code

2001-11-17 Thread Cyrille Lefevre
Warner Losh wrote: [snip] Actually, now that I think about it, the module I saw was in 'C'. So someone needs to learn forth to do this. :-) what are you waiting for ? :P it's still possible to install gforth (don't know if it's compatible w/ loader ?) and to begin to read the gforth info

Re: PATCH: sysinstall to remove userconfig code

2001-11-15 Thread Jordan Hubbard
I don't know -current. what is the feature which replace kget ? There is none. does boot -c (or whatever) still exists ? is it possible to edit KERNEL.hints at boot time ? No. - Jordan To Unsubscribe: send mail to [EMAIL PROTECTED] with unsubscribe freebsd-current in the body of the

Re: PATCH: sysinstall to remove userconfig code

2001-11-15 Thread John Baldwin
On 15-Nov-01 Jordan Hubbard wrote: I don't know -current. what is the feature which replace kget ? There is none. kenv | grep '^hint' kernel.conf does boot -c (or whatever) still exists ? is it possible to edit KERNEL.hints at boot time ? No. Well, you can use set and unset in the

PATCH: sysinstall to remove userconfig code

2001-11-13 Thread Makoto Matsushita
dsyphers DEBUG: kget: error buffer sizing matusita This is because sysinstall still want to get userconfig data matusita and put the result to /boot/kernel.conf. Userconfig was gone in 5-current, so we can safely remove kget() from sysinstall. Attached below is a patch to do (kget.c should be

Re: PATCH: sysinstall to remove userconfig code

2001-11-13 Thread Cyrille Lefevre
Makoto Matsushita wrote: Userconfig was gone in 5-current, so we can safely remove kget() from sysinstall. Attached below is a patch to do (kget.c should be remove also). I don't know -current. what is the feature which replace kget ? does boot -c (or whatever) still exists ? is it

Re: PATCH: sysinstall to remove userconfig code

2001-11-13 Thread John Baldwin
On 13-Nov-01 Cyrille Lefevre wrote: Makoto Matsushita wrote: Userconfig was gone in 5-current, so we can safely remove kget() from sysinstall. Attached below is a patch to do (kget.c should be remove also). I don't know -current. what is the feature which replace kget ? does boot -c

Re: PATCH: sysinstall to remove userconfig code

2001-11-13 Thread Cyrille Lefevre
John Baldwin wrote: On 13-Nov-01 Cyrille Lefevre wrote: Makoto Matsushita wrote: Userconfig was gone in 5-current, so we can safely remove kget() from sysinstall. Attached below is a patch to do (kget.c should be remove also). I don't know -current. what is the feature which