>>>>> "thierry" == Thierry Vignaud <[EMAIL PROTECTED]> writes:
thierry> From: J�rgen Zimmermann <[EMAIL PROTECTED]>
thierry> Subject: How to add a package to kernel/3rdParty?
thierry> To: [EMAIL PROTECTED]
thierry> Date: Wed, 28 Aug 2002 08:37:13 +0200
thierry> Organization: University of Kaiserslautern
thierry> X-Mailer: Mozilla 4.79 [en] (X11; U; SunOS 5.8 sun4u)
thierry> Reply-To: [EMAIL PROTECTED]
thierry> Hello,
thierry> I wonder how I can add a package which consist of several modules
thierry> to the kernel/3rdParty directory.
thierry> I inspected the other packages in 3rdParty, but did not get
thierry> any idea, how I can get a package with several *.o files
thierry> built and included in the kernel-RPM.
thierry> Config.in is in place, Makefile also, but the last one is
thierry> a litte suspicious to me...
Hi
easiest way (for you):
send a link to me for the tarball :)
do yourself:
It depends of what do you need:
If it is a single modules with several c files:
example:
3rdparty/mod_quickam/{Makefile,Config.in}
you need to have the same directory name than the module (without the
.o), and your config option should be CONFIG_<dirname> in uppercase.
If you really need several modules from a single directory, and each
module has several object files, then options are:
a- split the package in directories, one by module, look at the
prism25 module.
b- if you want to have them into that directory look at:
sound/pci/Makefile, and use th esame -obj & link command for each
module.
Later, Juan.
--
In theory, practice and theory are the same, but in practice they
are different -- Larry McVoy