Re: MAKEDEV Warning ???

2000-05-13 Thread Manfred Antar
At 09:18 PM 5/13/2000 +0200, Poul-Henning Kamp wrote: In message [EMAIL PROTECTED], Jeroen Ruigrok van der Werv en writes: -On [2513 21:06], Manfred Antar ([EMAIL PROTECTED]) wrote: I get this in boot mesgs and I don't know how to fix it. Device char-major=13 minor=0 opened in block mode,

Re: MAKEDEV Warning ???

2000-05-13 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Jeroen Ruigrok van der Werv en writes: -On [2513 21:06], Manfred Antar ([EMAIL PROTECTED]) wrote: I get this in boot mesgs and I don't know how to fix it. Device char-major=13 minor=0 opened in block mode, convert to char mode with /dev/MAKEDEV before 2000-07-01

MAKEDEV Warning ???

2000-05-13 Thread Manfred Antar
I get this in boot mesgs and I don't know how to fix it. Device char-major=13 minor=0 opened in block mode, convert to char mode with /dev/MAKEDEV before 2000-07-01 I've run MAKEDEV all I have a simple fstab: # DeviceMountpoint FStype Options DumpPass#

Re: MAKEDEV Warning ???

2000-05-13 Thread Jeroen Ruigrok van der Werven
-On [2513 21:06], Manfred Antar ([EMAIL PROTECTED]) wrote: I get this in boot mesgs and I don't know how to fix it. Device char-major=13 minor=0 opened in block mode, convert to char mode with /dev/MAKEDEV before 2000-07-01 There is a bug somewhere in the rootmount code. I just lack the

Re: MAKEDEV Warning ???

2000-05-13 Thread Manfred Antar
At 09:54 PM 5/13/2000 +0200, Assar Westerlund wrote: Jeroen Ruigrok van der Werven [EMAIL PROTECTED] writes: -On [2513 21:06], Manfred Antar ([EMAIL PROTECTED]) wrote: I get this in boot mesgs and I don't know how to fix it. Device char-major=13 minor=0 opened in block mode, convert to

Re: MAKEDEV Warning ???

2000-05-13 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Manfred Antar writes: --- vfs_subr.c~ Sat May 6 00:08:38 2000 +++ vfs_subr.c Sat May 13 21:47:08 2000 @@ -1296,7 +1296,7 @@ return (error); } vp = nvp; - vp-v_type = VBLK; + vp-v_type = VCHR; addalias(vp,

Re: MAKEDEV Warning ???

2000-05-13 Thread Manfred Antar
At 10:28 PM 5/13/2000 +0200, Jeroen Ruigrok van der Werven wrote: -On [2513 22:08], Manfred Antar ([EMAIL PROTECTED]) wrote: Which is the correct dev /dev/da0a , /dev/rda0a , or /dev/da0s1a to use rda0a won't work. da0a works fine and I got rid of all the da0s1a,b,e,f,g ones ? The

Re: MAKEDEV Warning ???

2000-05-13 Thread sthaug
The following patch fixed the problem for me. For extra points, rename the function. That fixed the problem for the me too. Thanks! Steinar Haug, Nethelp consulting, [EMAIL PROTECTED] To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the body of the

Re: MAKEDEV Warning ???

2000-05-13 Thread sthaug
Actually I think this is an indication of really old boot blocks. The old bootblocks passed in a Bmajor number for the root device. Could you try to update your bootblocks with the disklabel program and see if that stops the warning Manfred ? I can't speak for this case, but the one I

Re: MAKEDEV Warning ???

2000-05-13 Thread Assar Westerlund
Jeroen Ruigrok van der Werven [EMAIL PROTECTED] writes: -On [2513 21:06], Manfred Antar ([EMAIL PROTECTED]) wrote: I get this in boot mesgs and I don't know how to fix it. Device char-major=13 minor=0 opened in block mode, convert to char mode with /dev/MAKEDEV before 2000-07-01 There

Re: MAKEDEV Warning ???

2000-05-13 Thread Jeroen Ruigrok van der Werven
-On [2513 22:08], Manfred Antar ([EMAIL PROTECTED]) wrote: Which is the correct dev /dev/da0a , /dev/rda0a , or /dev/da0s1a to use rda0a won't work. da0a works fine and I got rid of all the da0s1a,b,e,f,g ones ? The /dev/da0s1a would be the correct one to use, example: # Device

Re: MAKEDEV Warning ???

2000-05-13 Thread sthaug
I get this in boot mesgs and I don't know how to fix it. Device char-major=13 minor=0 opened in block mode, convert to char mode with /dev/MAKEDEV before 2000-07-01 There is a bug somewhere in the rootmount code. It's the following VFS_MOUNT call at line 215 of vfs_mountroot_try()

Re: MAKEDEV warning with sysinstall ?

2000-05-13 Thread sthaug
No, I havn't tracked down the last couple of causes of this, but I will try to reproduce it as you describe it with some debugging added. How hard would it be to print the filename (or the device/inode) that triggers the warning? Not at all (warning: cutpasted patch, tabs are screwed

Re: MAKEDEV warning with sysinstall ?

2000-05-09 Thread Sheldon Hearn
On Mon, 08 May 2000 15:41:55 EST, Erik de Zeeuw wrote: I ran MAKEDEV all, but the message still appear. The messages I found about this on the archives says to do a 'ls -l /dev | grep ^b', and to remake all devices listed, but there's no device listed when I'm doing the 'ls -l /dev | grep

Re: MAKEDEV warning with sysinstall ?

2000-05-09 Thread Chris D. Faulhaber
On Tue, 9 May 2000, Sheldon Hearn wrote: On Mon, 08 May 2000 15:41:55 EST, Erik de Zeeuw wrote: I ran MAKEDEV all, but the message still appear. The messages I found about this on the archives says to do a 'ls -l /dev | grep ^b', and to remake all devices listed, but there's no

MAKEDEV warning with sysinstall ?

2000-05-08 Thread Erik de Zeeuw
I installed FreeBSD 5.0-2506-CURRENT on an AMD K6-2, 64Mb, 4Gb, and when I first launch /stand/sysinstall after the system has start, the following message appears : ... /kernel: WARNING: run /dev/MAKEDEV before 2000-06-01 to get rid of block devices I searched the list archives and find

Re: MAKEDEV warning with sysinstall ?

2000-05-08 Thread Wilko Bulte
On Mon, May 08, 2000 at 03:41:55PM -0500, Erik de Zeeuw wrote: I installed FreeBSD 5.0-2506-CURRENT on an AMD K6-2, 64Mb, 4Gb, and when I first launch /stand/sysinstall after the system has start, the following message appears : ... /kernel: WARNING: run /dev/MAKEDEV before 2000-06-01

Re: MAKEDEV warning with sysinstall ?

2000-05-08 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Erik de Zeeuw writes: I installed FreeBSD 5.0-2506-CURRENT on an AMD K6-2, 64Mb, 4Gb, and when I first launch /stand/sysinstall after the system has start, the following message appears : ... /kernel: WARNING: run /dev/MAKEDEV before 2000-06-01 to get rid of

Re: MAKEDEV warning with sysinstall ?

2000-05-08 Thread Dan Nelson
In the last episode (May 08), Poul-Henning Kamp said: In message [EMAIL PROTECTED], Erik de Zeeuw writes: I installed FreeBSD 5.0-2506-CURRENT on an AMD K6-2, 64Mb, 4Gb, and when I first launch /stand/sysinstall after the system has start, the following message appears : ... /kernel:

Re: MAKEDEV warning with sysinstall ?

2000-05-08 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Dan Nelson writes: In the last episode (May 08), Poul-Henning Kamp said: In message [EMAIL PROTECTED], Erik de Zeeuw writes: I installed FreeBSD 5.0-2506-CURRENT on an AMD K6-2, 64Mb, 4Gb, and when I first launch /stand/sysinstall after the system has start,

Re: MAKEDEV warning

2000-04-23 Thread Brian Somers
Yep, that's the ticket ! Thanks. Yes, that was an oversight on my part. Please let me know if the fix I committed solves this issue. Poul-Henning In message [EMAIL PROTECTED], Brian Somers writes: I've got an mfs /tmp too :-] Hi, On 0, Ted Sikora [EMAIL PROTECTED] wrote:

Re: MAKEDEV warning

2000-04-22 Thread Brian Somers
I've got an mfs /tmp too :-] Hi, On 0, Ted Sikora [EMAIL PROTECTED] wrote: After building a new kernel yesterday after a cvsup the following appeared. Apr 17 23:07:42 telecast /kernel: WARNING: run /dev/MAKEDEV before 2000-06-01 to get rid of block devices I did a MAKEDEV all

Re: MAKEDEV warning

2000-04-22 Thread Poul-Henning Kamp
Yes, that was an oversight on my part. Please let me know if the fix I committed solves this issue. Poul-Henning In message [EMAIL PROTECTED], Brian Somers writes: I've got an mfs /tmp too :-] Hi, On 0, Ted Sikora [EMAIL PROTECTED] wrote: After building a new kernel yesterday after a

Re: MAKEDEV warning

2000-04-22 Thread John Polstra
The warning mentions the date 2000-06-01. What are you planning to happen on that date? Whatever it is, please make it tolerant. I don't care whether I can _use_ the old block devices, but I would like to be able to ls them, dump them, restore them, etc., without terrible consequences. (I

Re: MAKEDEV warning

2000-04-22 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], John Polstra writes: The warning mentions the date 2000-06-01. What are you planning to happen on that date? Whatever it is, please make it tolerant. My intention is to make the system whine even louder starting around 2000-05-01 and then I lean towards a sysctl

Re: MAKEDEV warning

2000-04-21 Thread Scott Flatman
On Thu, 20 Apr 2000, Dirk Roehrdanz wrote: [ snippage ] I get this message too whenever I mount a mfs filesystem. The line in /etc/fstab is: /dev/da0s1b /tmp mfs rw,async,-s327680 0 The output of "ls -l /dev/*da0s1b" is: crw-r- 1 root operator 13,

Re: MAKEDEV warning

2000-04-19 Thread Peter Wemm
Warner Losh wrote: In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : Almost none. I don't actually mount nfs partitions until I type mount : foo:/bar /bar. There's no network card active at that time anyway... : : But does the nfs filesystems you mount have any bdevs on them ?

Re: MAKEDEV warning

2000-04-19 Thread Alexander Leidinger
On 19 Apr, Peter Wemm wrote: I've not mounted any filesystems when I get the message. I get it when nfsd starts up in the boot process. Just a thought.. I got this message even though I thought I'd gotten rid of all bdevs.. It turned out there were some hidden in sub directories. Do a

Re: MAKEDEV warning

2000-04-19 Thread Brian Somers
Warner Losh wrote: In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : Almost none. I don't actually mount nfs partitions until I type mount : foo:/bar /bar. There's no network card active at that time anyway... : : But does the nfs filesystems you mount have any bdevs on them

Re: MAKEDEV warning

2000-04-19 Thread 梅本 肇
Hi, On Wed, 19 Apr 2000 12:33:44 +0100 Brian Somers [EMAIL PROTECTED] said: brian I did the find, removed the bdevs in /compat/linux/dev and rebooted - brian no luck, the message is still there. brian thinks brian I wonder if whatever's done on 2000-06-01 will leave the emulators brian

Re: MAKEDEV warning

2000-04-19 Thread Dirk Roehrdanz
Hi, On 0, Ted Sikora [EMAIL PROTECTED] wrote: After building a new kernel yesterday after a cvsup the following appeared. Apr 17 23:07:42 telecast /kernel: WARNING: run /dev/MAKEDEV before 2000-06-01 to get rid of block devices I did a MAKEDEV all and the message still persists. I get

MAKEDEV warning

2000-04-18 Thread Ted Sikora
After building a new kernel yesterday after a cvsup the following appeared. Apr 17 23:07:42 telecast /kernel: WARNING: run /dev/MAKEDEV before 2000-06-01 to get rid of block devices I did a MAKEDEV all and the message still persists. Regards, -- Ted Sikora Jtl Development Group [EMAIL

Re: MAKEDEV warning

2000-04-18 Thread Jonathan Smith
Did you install an updated MAKEDEV script? I *think* the point is that you need to bet rid of block devices, and to do so, you need a MAKEDEV script that doesn't make them... Just a guess On Tue, 18 Apr 2000, Ted Sikora wrote: After building a new kernel yesterday after a cvsup the

Re: MAKEDEV warning

2000-04-18 Thread Chris D. Faulhaber
On Tue, 18 Apr 2000, Ted Sikora wrote: After building a new kernel yesterday after a cvsup the following appeared. Apr 17 23:07:42 telecast /kernel: WARNING: run /dev/MAKEDEV before 2000-06-01 to get rid of block devices I did a MAKEDEV all and the message still persists. ls -l /dev |

Re: MAKEDEV warning

2000-04-18 Thread Ted Sikora
"Chris D. Faulhaber" wrote: On Tue, 18 Apr 2000, Ted Sikora wrote: After building a new kernel yesterday after a cvsup the following appeared. Apr 17 23:07:42 telecast /kernel: WARNING: run /dev/MAKEDEV before 2000-06-01 to get rid of block devices I did a MAKEDEV all and the

Re: MAKEDEV warning

2000-04-18 Thread Warner Losh
In message [EMAIL PROTECTED] Ted Sikora writes: : Apr 17 23:07:42 telecast /kernel: WARNING: run /dev/MAKEDEV before : 2000-06-01 to get rid of block devices : I did a MAKEDEV all and the message still persists. I get this message when the output of ls -l | egrep ^b is empty. Warner To

Re: MAKEDEV warning

2000-04-18 Thread David O'Brien
On Tue, Apr 18, 2000 at 01:34:11PM -0600, Warner Losh wrote: I get this message when the output of ls -l | egrep ^b is empty. \begin{AOL mode} M To \end{AOL mode} -- -- David([EMAIL PROTECTED]) To Unsubscribe: send mail to [EMAIL PROTECTED] with

Re: MAKEDEV warning

2000-04-18 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], "David O'Brien" writes: On Tue, Apr 18, 2000 at 01:34:11PM -0600, Warner Losh wrote: I get this message when the output of ls -l | egrep ^b is empty. \begin{AOL mode} M To \end{AOL mode} Hmm, that sounds weird... At what time does

Re: MAKEDEV warning

2000-04-18 Thread Warner Losh
In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : At what time does the message come relative to the mounting of the : root filesystem ? Before or after ? I get mine when nfs starts up. Warner To Unsubscribe: send mail to [EMAIL PROTECTED] with "unsubscribe freebsd-current" in the

Re: MAKEDEV warning

2000-04-18 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Warner Losh writes: In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : At what time does the message come relative to the mounting of the : root filesystem ? Before or after ? I get mine when nfs starts up. Any chance you have a bdev on one of the nfs fs's ?

Re: MAKEDEV warning

2000-04-18 Thread Warner Losh
In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : In message [EMAIL PROTECTED], Warner Losh writes: : In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : : At what time does the message come relative to the mounting of the : : root filesystem ? Before or after ? : : I get mine when

Re: MAKEDEV warning

2000-04-18 Thread Poul-Henning Kamp
In message [EMAIL PROTECTED], Warner Losh writes: In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : In message [EMAIL PROTECTED], Warner Losh writes: : In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : : At what time does the message come relative to the mounting of the : : root

Re: MAKEDEV warning

2000-04-18 Thread Warner Losh
In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : Almost none. I don't actually mount nfs partitions until I type mount : foo:/bar /bar. There's no network card active at that time anyway... : : But does the nfs filesystems you mount have any bdevs on them ? I've not mounted any

Re: MAKEDEV warning

2000-04-18 Thread Christopher Nielsen
On Wed, 19 Apr 2000, Poul-Henning Kamp wrote: In message [EMAIL PROTECTED], Warner Losh writes: In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : In message [EMAIL PROTECTED], Warner Losh writes: : In message [EMAIL PROTECTED] Poul-Henning Kamp writes: : : At what time does the

Re: MAKEDEV warning

2000-04-18 Thread Bruce Evans
On Tue, 18 Apr 2000, Warner Losh wrote: In message [EMAIL PROTECTED] Ted Sikora writes: : Apr 17 23:07:42 telecast /kernel: WARNING: run /dev/MAKEDEV before : 2000-06-01 to get rid of block devices : I did a MAKEDEV all and the message still persists. I get this message when the output of