Re: add ext2fs to the module list in modules/Makefile

2003-01-29 Thread Enache Adrian
On Tue, Jan 28, 2003 at 09:54:30PM -0800, David O'Brien wrote:
 On Mon, Jan 27, 2003 at 11:14:41PM +0200, Enache Adrian wrote:
  please add ext2fs to the modules list in src/sys/modules/Makefile.
 
 It is already there.  :-)
 
 Just wrapped by WANT_EXT2FS_MODULE.  So you need to add that to your
 /etc/make.conf.

Oh, really thank you for the answer. And sorry for posting without
carefully checking before.

Regards
Adi

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-28 Thread David O'Brien
On Mon, Jan 27, 2003 at 11:14:41PM +0200, Enache Adrian wrote:
 please add ext2fs to the modules list in src/sys/modules/Makefile.

It is already there.  :-)

Just wrapped by WANT_EXT2FS_MODULE.  So you need to add that to your
/etc/make.conf.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-28 Thread leafy
On Tue, Jan 28, 2003 at 09:54:30PM -0800, David O'Brien wrote:
 It is already there.  :-)
 
 Just wrapped by WANT_EXT2FS_MODULE.  So you need to add that to your
 /etc/make.conf.
 
It's not the make.conf man page, where can we find these options?

Jiawei Ye

-- 
Without the userland, the kernel is useless.
 --inspired by The Tao of Programming

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-28 Thread David O'Brien
On Wed, Jan 29, 2003 at 02:06:11PM +0800, leafy wrote:
 On Tue, Jan 28, 2003 at 09:54:30PM -0800, David O'Brien wrote:
  It is already there.  :-)
  
  Just wrapped by WANT_EXT2FS_MODULE.  So you need to add that to your
  /etc/make.conf.
  
 It's not the make.conf man page, where can we find these options?

documented now.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



add ext2fs to the module list in modules/Makefile

2003-01-27 Thread Enache Adrian
please add ext2fs to the modules list in src/sys/modules/Makefile.

my /usr/src tree resides on an ext2fs partition and the fact that
ext2fs.ko isn't built causes me trouble when making installworld
just after rebooting the new kernel.

Thanks  Regards
Adi

--- /arc/freebsd/src/sys/modules/Makefile   2003-01-22 01:31:50.0 +0200
+++ sys/modules/Makefile2003-01-27 21:36:45.0 +0200
@@ -34,6 +34,7 @@
de \
digi \
dummynet \
+   ext2fs \
fdc \
fdescfs \
firewire \

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-27 Thread Steve Kargl
On Mon, Jan 27, 2003 at 11:14:41PM +0200, Enache Adrian wrote:
 please add ext2fs to the modules list in src/sys/modules/Makefile.
 
 my /usr/src tree resides on an ext2fs partition and the fact that
 ext2fs.ko isn't built causes me trouble when making installworld
 just after rebooting the new kernel.
 

Portions of the ext2fs source are covered by the GPL.  You
need to rebuild the kernel with option EXT2FS.  The
FreeBSD cannot create a ext2fs.ko and comply with the GPL.

-- 
Steve

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-27 Thread Steve Kargl
On Tue, Jan 28, 2003 at 12:40:12AM +0200, Enache Adrian wrote:
 On Mon, Jan 27, 2003 at 01:36:35PM -0800, Steve Kargl wrote:
  Portions of the ext2fs source are covered by the GPL.  You
  need to rebuild the kernel with option EXT2FS.  The
  FreeBSD cannot create a ext2fs.ko and comply with the GPL.
 
 This is weird.
 Builting it as part of kernel is ok, but separate, as a module
 isn't.

There a linking clausing in the GPL, which one can interpret
to mean that loading ext2fs.ko into the kernel would cause
the entire kernel to be tainted by the GPL.

 
 However, FreeBSD builds by default (as modules) the maestro3
 sound driver and the gnu fpu emulator which are GPL too.
 

gnu fpu appears to be dual licensed software, and
covered by a BSD type license for FreeBSD's use.
Don't know about maestro3.

-- 
Steve

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-27 Thread Max Khon
hi, there!

On Tue, Jan 28, 2003 at 12:40:12AM +0200, Enache Adrian wrote:

 On Mon, Jan 27, 2003 at 01:36:35PM -0800, Steve Kargl wrote:
  Portions of the ext2fs source are covered by the GPL.  You
  need to rebuild the kernel with option EXT2FS.  The
  FreeBSD cannot create a ext2fs.ko and comply with the GPL.
 
 This is weird.
 Builting it as part of kernel is ok, but separate, as a module
 isn't.

IIRC NetBSD has BSD-copyrighted ext2fs implementation

/fjoe


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-27 Thread Juli Mallett
* De: Max Khon [EMAIL PROTECTED] [ Data: 2003-01-27 ]
[ Subjecte: Re: add ext2fs to the module list in modules/Makefile ]
 hi, there!
 
 On Tue, Jan 28, 2003 at 12:40:12AM +0200, Enache Adrian wrote:
 
  On Mon, Jan 27, 2003 at 01:36:35PM -0800, Steve Kargl wrote:
   Portions of the ext2fs source are covered by the GPL.  You
   need to rebuild the kernel with option EXT2FS.  The
   FreeBSD cannot create a ext2fs.ko and comply with the GPL.
  
  This is weird.
  Builting it as part of kernel is ok, but separate, as a module
  isn't.
 
 IIRC NetBSD has BSD-copyrighted ext2fs implementation

Closely tied to their VFS implementation, which is different, of course,
last I heard it was a fairly heavy task to port it, but something a lot
of people would like to see.

juli.
-- 
Juli Mallett [EMAIL PROTECTED]
AIM: BSDFlata -- IRC: juli on EFnet.
OpenDarwin, Mono, FreeBSD Developer.
ircd-hybrid Developer, EFnet addict.
FreeBSD on MIPS-Anything on FreeBSD.

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-27 Thread David Schultz
Thus spake Juli Mallett [EMAIL PROTECTED]:
 * De: Max Khon [EMAIL PROTECTED] [ Data: 2003-01-27 ]
   [ Subjecte: Re: add ext2fs to the module list in modules/Makefile ]
  hi, there!
  
  On Tue, Jan 28, 2003 at 12:40:12AM +0200, Enache Adrian wrote:
  
   On Mon, Jan 27, 2003 at 01:36:35PM -0800, Steve Kargl wrote:
Portions of the ext2fs source are covered by the GPL.  You
need to rebuild the kernel with option EXT2FS.  The
FreeBSD cannot create a ext2fs.ko and comply with the GPL.
   
   This is weird.
   Builting it as part of kernel is ok, but separate, as a module
   isn't.
  
  IIRC NetBSD has BSD-copyrighted ext2fs implementation
 
 Closely tied to their VFS implementation, which is different, of course,
 last I heard it was a fairly heavy task to port it, but something a lot
 of people would like to see.

Does it work any better/worse than FreeBSD's implementation?

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-27 Thread Juli Mallett
* De: David Schultz [EMAIL PROTECTED] [ Data: 2003-01-27 ]
[ Subjecte: Re: add ext2fs to the module list in modules/Makefile ]
 Thus spake Juli Mallett [EMAIL PROTECTED]:
  * De: Max Khon [EMAIL PROTECTED] [ Data: 2003-01-27 ]
  [ Subjecte: Re: add ext2fs to the module list in modules/Makefile ]
   IIRC NetBSD has BSD-copyrighted ext2fs implementation
  
  Closely tied to their VFS implementation, which is different, of course,
  last I heard it was a fairly heavy task to port it, but something a lot
  of people would like to see.
 
 Does it work any better/worse than FreeBSD's implementation?

Think about it: people don't have to be bothered by the license when they
work on it, etc.
-- 
Juli Mallett [EMAIL PROTECTED]
AIM: BSDFlata -- IRC: juli on EFnet
OpenDarwin, Mono, FreeBSD Developer
ircd-hybrid Developer, EFnet addict
FreeBSD on MIPS-Anything on FreeBSD

To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message



Re: add ext2fs to the module list in modules/Makefile

2003-01-27 Thread Max Khon
hi, there!

On Mon, Jan 27, 2003 at 07:05:45PM -0800, David Schultz wrote:

 Portions of the ext2fs source are covered by the GPL.  You
 need to rebuild the kernel with option EXT2FS.  The
 FreeBSD cannot create a ext2fs.ko and comply with the GPL.

This is weird.
Builting it as part of kernel is ok, but separate, as a module
isn't.
   
   IIRC NetBSD has BSD-copyrighted ext2fs implementation
  
  Closely tied to their VFS implementation, which is different, of course,
  last I heard it was a fairly heavy task to port it, but something a lot
  of people would like to see.
 
 Does it work any better/worse than FreeBSD's implementation?

I've heard that their implementation is more stable and bug-free.
Just a speculation though. Never had a time to look at it.

/fjoe


To Unsubscribe: send mail to [EMAIL PROTECTED]
with unsubscribe freebsd-current in the body of the message