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-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 Unsubscri

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: > > http://people.freebsd.org/~matusita/5.0-CURRENT-20011121-JPSNAP_usedevfs /patch>

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: http:/

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

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, : http://people.freebsd.org/~yokota/vuserconfig.tar.gz>. Yes. I was conf

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, http://people.freebsd.org/~yokota/vuserconfig.tar.gz>. -- - Makoto `MAR' Matsushita To Unsubscribe: send mail to [EMAIL PROTECTED] with "un

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 fi

Re: PATCH: sysinstall to remove userconfig code

2001-11-17 Thread Warner Losh
: > Right. There is a forth tool available (authored I think by : > matsushita-san), and now that matsushita-san is a committer, maybe it : > will be done in time for 5.0. :-) : : As a fallback, I've been threatening to do a simple userconfig-style : thing in loader itself as a fall

Re: PATCH: sysinstall to remove userconfig code

2001-11-17 Thread Peter Wemm
w that matsushita-san is a committer, maybe it > will be done in time for 5.0. :-) As a fallback, I've been threatening to do a simple userconfig-style thing in loader itself as a fallback if necessary.. I'd rather not since that would just make loader bigger still, but it's alw

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 .hints at boot t

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 .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: : I don't know -current. what is the feature which replace kget ? : does boot -c (or whatever) still exists ? is it possible to : edit .hints at boot time ? set/unset works. I've removed ISA devices at boot time by unsetting the 'at' hint.

Re: PATCH: sysinstall to remove userconfig code

2001-11-15 Thread Peter Wemm
Jordan Hubbard wrote: > > I don't know -current. what is the feature which replace kget ? > > There is none. kenv(1) > > does boot -c (or whatever) still exists ? is it possible to > > edit .hints at boot time ? > > No. Actually there is, but only if you do *not* use .hints.. If you use devic

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 .hints at boot time ? > > No. Well, you can use set and unset in t

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 .hints at boot time ? No. - Jordan To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the message

Re: PATCH: sysinstall to remove userconfig code

2001-11-13 Thread John Baldwin
On 13-Nov-01 Cyrille Lefevre wrote: > 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 belo

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 > >> a

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.

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) sti

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

Re: userconfig()

2001-07-13 Thread David Malone
On Fri, Jul 13, 2001 at 08:32:18PM +0900, Kazutaka YOKOTA wrote: > "options USERCONFIG", "options VISUAL_USERCONFIG", and "options > INTRO_USERCONFIG" were removed from /sys/conf/options.i386 and > options.pc98 on 12 June. Does this mean we are going to d

userconfig()

2001-07-13 Thread Kazutaka YOKOTA
"options USERCONFIG", "options VISUAL_USERCONFIG", and "options INTRO_USERCONFIG" were removed from /sys/conf/options.i386 and options.pc98 on 12 June. Does this mean we are going to ditch userconfig()? (Or, did I miss announcement on this issue?) Kazu To Un

syscons panic in userconfig mode (with patch)

2001-04-07 Thread Dima Dorfman
[ cc'd to -stable since that's affected, too ] Attempting to switch VTYs in userconfig mode will lead to a null dereference in syscons. I saw some messages about this on -current, -stable, or -bugs recently, but I can't find them now. This is pretty easy to reproduce: simply

Re: Info needed re: new userconfig scripting and PnP

1999-10-27 Thread Nik Clayton
On Tue, Oct 26, 1999 at 06:50:11AM -0500, Conrad Sabatier wrote: > I would be most honored, kind sir. :-) > > Just let me update it first, based on this recently acquired > information re: -current. Then, to whom should I submit it? send-pr, including a URL to the DocBook source is the best wa

Re: Info needed re: new userconfig scripting and PnP

1999-10-26 Thread Conrad Sabatier
On 25-Oct-99 Nik Clayton wrote: > On Sun, Oct 24, 1999 at 02:10:03PM -0500, Conrad Sabatier wrote: >> Someone just mailed me this heads up about my AWE soundcard setup >> tutorial at http://members.home.net/conrads/awepnp-freebsd.html. >> As this is the first I've heard about this, I'd greatly ap

Re: Info needed re: new userconfig scripting and PnP

1999-10-25 Thread Nik Clayton
On Sun, Oct 24, 1999 at 02:10:03PM -0500, Conrad Sabatier wrote: > Someone just mailed me this heads up about my AWE soundcard setup > tutorial at http://members.home.net/conrads/awepnp-freebsd.html. > As this is the first I've heard about this, I'd greatly appreciate it Conrad (and anyone else w

Nevermind! (Re: Info needed re: new userconfig scripting and PnP)

1999-10-25 Thread Conrad Sabatier
OK, I've gotten a few private replies (thanks!), and have also read through several threads in the -current archives. I think I've got the picture now. Can't say I'm all that happy about what I've read (I mean, having to add to my web pages something to the effect of "you can disregard all of th

Info needed re: new userconfig scripting and PnP

1999-10-24 Thread Conrad Sabatier
SB AWE-card how-to is quite helpful, but slightly flawed. You indicate that the procedures listed apply to FreeBSD 3.x and -CURRENT, but this is not so. While the kernel config lines compile fine under 3.x and 4.0, the userconfig script employs the "pnp" keyword to explicitly define which s

new PnP code and pcm and kernel userconfig

1999-10-07 Thread Valentin S. Chopov
k in duplex mode and I have to change drq0=drq1=1 Now I can't do this from the kernel userconfig (boot -c ) - pnp configuration is missing. Any ideas? Thanks, Val __ Do You Yahoo!? Bid and sell for free at http://auctions.yahoo.com To Unsubs

pnp in userconfig

1999-09-15 Thread Reinier Bezuidenhout
Hi ... I've got a -current of about a week ago .. when I boot in user config, pnp is no longer listed as a command. when executing pnp .. it says "Invalid command or syntax. Type `?' for help." Is pnp command no longer in user config in -current ??? Thanx Reinier To Unsubscribe: send mail